Reputation: 3991
Greetings. I've been using vim for years, and I've recently started toying with XCode. One of the things I really like about XCode is that it will auto complete words without me hitting <TAB>
.
For instance, in this image below I only need to type NSSObj
and the rest is filled in automatically, no special keystroke required.
I'd like to reproduce this effect in vim.
To be clear, this question is not about how to get tab/omni-completion working in vim. I've already got tab/omni completion working just fine and that's not a problem. The question is: does anyone know how to get vim to autocomplete as I am typing ?
Upvotes: 8
Views: 2438
Reputation: 5298
Another option is a vim script called neocomplcache made by Shougo.
Upvotes: 3
Reputation: 619
vimscripts has a plugin called autocomplpop.vim that does what you want.
Upvotes: 15