vote up 3 vote down star

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.

alt text

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 ?

flag

I'm unfamiliar with XCode. If you don't hit tab, what do you do to accept their proposed completion (or reject, if what you really wanted was NSObjib)? – rampion May 28 at 16:53
First of all, you don't really want to do this. Having omnicomplete constantly firing is a brain-rotter they put in modern IDEs because their users don't generally use keyboard commands/shortcuts. Second of all, if you persist with this terrible idea view the help on autocmd to see what event fires every time you enter in text in insert mode. – Whaledawg May 28 at 19:00
Whaledawg, thanks for pointing out autocmd. I've got autocomplpop.vim working and I can feel my brain slowly rotting away. It's a wonderful feeling. – Nate Murray May 28 at 22:37

2 Answers

vote up 5 vote down check

vimscripts has a plugin called autocomplpop.vim that does what you want.

link|flag
1  
Awesome. This plugin totally rocks. Thanks. – Nate Murray May 28 at 22:38
vote up 0 vote down

Vim is a pretty amazing editor, and has many of the benefits of an IDE. I'm sure you could figure out how to do this, even if it's never been done. However... to me it seems you're crossing a line. Why not use use one of the full blown GUI IDEs out there like XCode, Eclipse or Visual Studio if that's what you want? If you're addicted to vi key bindings you can probably get a plug-in to do that for one of those.

link|flag

Your Answer

Get an OpenID
or

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