Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've found this git grep vim plugin but I can't figure out how to map my Command-Shift-F to invoke it. I have already disabled the Ack plugin that comes by default.

https://github.com/tjennings/git-grep-vim/

share|improve this question

1 Answer

You only need to create a custom mapping that calls the GitGrep command:

nnoremap <D-S-f> :GitGrep<Space>

After that, hitting <D-S-f> will put

:GitGrep | <-- cursor here

in the command-line, ready to take arguments.

But I'd advise you to choose a better shortcut: <D-S-f> works only in MacVim. Even there, I seem to remember that key combos like this one didn't really work. MacVim didn't complain but <D-S-f> was somehow the same as <D-f>. IIRC, you have to map <D-F> instead of <D-S-f>.

Something like ,f would be more appropriate, I believe, and more portable.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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