How to add Intellisense for language in Gvim?

I am new to GVim and I use GVim on Ubuntu 10.4 OS. I'm learning Ruby right now, and I want to add Intellisense for this. My question is: is it possible to add an API set for GVIM, not just for Ruby, but maybe for Perl, Java, C ++ ... etc.? Thank,

+5
source share
1 answer

Strictly speaking, Intellisense is not available for (g) Vim 7+. This is a Microsoft trademark of Visual Studio.

Automatic, context-sensitive code completion for many languages ​​is a feature of Vim. He called Omni complete. Ruby, Perl, Java, and C ++ have plugins that support full completion.

, , , . Vim :help compl-omni. Ruby omni Vim Ruby.

, , Ctrl-x Ctrl-O. AcpComplPop, . vim.org , .

+9

All Articles