Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

vim omnicomplete vs. vim intellisense

Are Vim OmniComplete and Vim Intellisense mutually exclusive or complementary? I'm a bit confused by conflicting terminology and implementations, such as these C++ OmniComplete and C++ Intellisence plugins.

like image 677
Robert S. Barnes Avatar asked Feb 16 '10 12:02

Robert S. Barnes


2 Answers

Vim Omnicomplete is a feature of Vim version 7, on all platforms. Vim Intellisense is a plugin for vim 6.1 and 6.2 on Windows only.

like image 100
McPherrinM Avatar answered Nov 18 '22 11:11

McPherrinM


OmniComplete and Intellisense are different words for the same thing, a kind of autocompletion system.

Intellisence is a trademark of Microsoft. So the author of vim (Bram Moolenaar) decided to give this feature a new name, OmniComplete.

If you want to have autocompletion for C++ you have either to activate/configure the build-in OmniCompletion or you have to install the plug-in Vim C++ Intellisense.

like image 32
Habi Avatar answered Nov 18 '22 10:11

Habi