I'm new to vim and I'm trying to map a key combo for running the Ack plugin found here: https://github.com/mileszs/ack.vim

I want to map cmd-shift-f to run the Ack command :Ack. I've added the following to ~/.vimrc

nmap <D-F> :Ack<space>

It doesn't work. What am I doing wrong?

I'm using vim 7.3 within iTerm 2 on MacOS X.

link|improve this question
feedback

1 Answer

The problem is that within <...> notation mappings, case is (mostly) insensitive, so you have to explicitly state you want to map with the shift key. Try this:

nmap <D-S-F> :Ack<space>
link|improve this answer
That still doesn't work. It's weird because nmap <C-F> :Ack<space> works for <ctrl><shift>-f. But it doesn't work with <cmd> – jordelver Feb 7 at 22:44
Hmm, interesting. nmap <D-F> :Ack<space> does work in MacVim, but not in the terminal. Looks like cmd is not recognised in a terminal. – jordelver Feb 7 at 22:57
And finally, according to this page: unix.stackexchange.com/questions/29665/… You can only use <cmd> key mappings in a GUI Vim such as MacVim. I've decided to just go with <ctrl>-f for now. – jordelver Feb 7 at 23:17
feedback

Your Answer

 
or
required, but never shown

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