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?

link|improve this question

67% accept rate
3  
Why don't you use gt and gT ? – Benoit Aug 31 '11 at 15:38
@Vulgrin : it should not be <C-M-j> for Ctrl+Alt+j ? I am not on OSX so the D might be something special ? – Xavier T. Aug 31 '11 at 16:14
@Xavier: Yep. We have control, option (meta), and command in Macs (C, M and D) – sidyll Aug 31 '11 at 16:18
For that kind of issue you can start by looking at the result of :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
verbose map lists it as the mapping I've set up. – Dave Sanders Aug 31 '11 at 17:59
show 3 more comments
feedback

2 Answers

up vote 5 down vote accepted

set macmeta will make your <M-D-j> binding work.

link|improve this answer
Brilliant, this worked. Thanks Josh! – Dave Sanders Sep 4 '11 at 13:20
only available in MacVim GUI – artemave Mar 1 at 16:52
feedback

Do this :

nnoremap <D-M-j> gt To go to the next tab

nnoremap <D-M-k> gT To go to the previous tab

you can extend this by using this to switch buffers as well by replace in gt and gT with :bn<cr> and :bp<cr> respectively

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.