vote up 2 vote down star

is there an autocomplete feature for vi. ctrl p looks for keywords already used in the document. but suppose i want a.funcname to automatically show members of object a. is it possible with vi.

flag

76% accept rate

6 Answers

vote up 1 vote down check

I’ve already asked this and although there are some promising answers, the overall prospect is bleak. I haven’t had time to look into all of the possible ways in detail but for the moment my summary is thus:

  • There are different plugins available (see above and in other answers)
  • But none is the “killer” product
  • All require a lot of effort to get working
  • Most are unstable or achieve unsatisfactory results
  • IDEs (Eclipse, IntelliJ, Visual Studio) still have a surprisingly big advantage over Vim here, although the latter has been around much longer and could in principle deliver the same experience.

All in all, highly disappointing.

link|flag
vote up 0 vote down

Maybe this article will help, I haven't tried it to be honest but it looks suitable.

link|flag
vote up 2 vote down

Take a look at supertab: http://www.vim.org/scripts/script.php?script%5Fid=1643

link|flag
trying supertab – iamrohitbanga Nov 5 at 13:22
vote up 3 vote down

I realise this isn't quite answering your question, but have you looked at running vi within an IDE ?

viPlugin works with Eclipse and is a pretty good vi emulation. Since it runs within Eclipse you get all the code completion that Eclipse provides. Eclipse isn't just for Java, btw. It works with a variety of languages and may well cater for what you need.

This is the direction I took when I reluctantly realised that vi by itself wasn't providing as much help as I needed when developing, but I was reluctant to give up the power of the editor.

link|flag
vote up 1 vote down

I use NetBeans with the jVi plugin. It gives me the editing power of vi with the intelligent auto-completion features of NetBeans.

link|flag
netbeans and eclipse are powerful editors themselves. why do you need vi plugins in them. – iamrohitbanga Nov 5 at 13:22
1  
Honestly, its a different type of power. IDE's have powerful capabilities, like scanning a project and providing intelligent auto-completion, syntax highlighting, etc. Vi-style editing provides power at a low-level, pure text editing way. With the jVi plugin, you lose none of the underlying power of the IDE, so you get the best of both worlds. It's a win-win. Vi/vim is still very popular: answers.polldaddy.com/poll/2150554 – steveth45 Nov 5 at 16:48
vote up 1 vote down

It depends on your language. For c++, for example, there is omnicppcomplete.

link|flag

Your Answer

Get an OpenID
or

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