I'm having a heck-of-a time with this. I've started using tabs more in MacVim and I'm trying to make a mapping of Cmd+Alt+j and Cmd+Alt+k to move back and forth between tabs. Similar to using Cmd+Alt+Left or Right in Textmate, but without having to leave the home row.
When I try the following, it just simply doesn't work:
nnoremap <D-M-j> :tabprevious<CR>
nnoremap <D-M-k> :tabnext<CR>
Furthermore, if I try to type the actual keystroke into my gvimrc, I get instead a <D-M-(delta symbol)> or a <D-M-(degree symbol)> instead.
Is there some secret I'm missing, or something stupid I'm doing?
<C-M-j>for Ctrl+Alt+j ? I am not on OSX so theDmight be something special ? – Xavier T. Aug 31 '11 at 16:14:verbose map <D-m-j>. If you see something, it means it is correctly defined. If not it has not been taken into account. Potentially you can also find out that one of your plugin is using the same mapping, and thus disabling yours. – Xavier T. Aug 31 '11 at 16:31