vote up 1 vote down star

I'd like to be able to use Vim omni-completion in Makefiles, so that I can get auto-complete for target dependencies and such. Anybody know how to do this?

flag

1 Answer

vote up 1 vote down

I'm not sure about omni-completion, but you can use normal completion in Vim.

For example if you have a target called 'installdocs', you can type:

ins<C-n>

and Vim will complete the target name for you.

link|flag
2  
<C-n> will search forward for a matching word, <C-p> will search backwards. See also :help ins-completion – blixtor May 27 at 15:10

Your Answer

Get an OpenID
or

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