Vim Tips Wiki
No edit summary
No edit summary
Line 15: Line 15:
 
==Overview==
 
==Overview==
 
To turn on omnicompletion in the .vimrc file add the following lines:
 
To turn on omnicompletion in the .vimrc file add the following lines:
filetype plugin on
+
filetype plugin on<p/>
 
set ofu=syntaxcomplete#Complete
 
set ofu=syntaxcomplete#Complete
   

Revision as of 19:24, 20 June 2009

Tip 1591 Printable Monobook Previous Next

created February 16, 2008 · complexity basic · author Metacosm · version 7.0


Omni completion provides smart autocompletion for programs. When invoked, the text before the cursor is inspected to guess what might follow. A popup menu offers word completion choices that may include struct and class members, system functions, and more. A similar feature in Microsoft Visual Studio is known as IntelliSense.

Overview

To turn on omnicompletion in the .vimrc file add the following lines:

filetype plugin on

set ofu=syntaxcomplete#Complete Various languages are supported, including C. Omni completion scripts can be written to support other languages, and to customize behavior. :help new-omni-completion :help compl-omni Windows users need to install a recent version of Exuberant Ctags (Ctags 5.7, released September 2007, is recommended). :help ft-c-omni See C++ code completion for omni completion in C++ programs.

Related tips

 TO DO 

  • This is to be an overview of omnicompletion, with links to more detailed tips as required.
  • Need to make sense of related tips, and probably merge a few.
  • Meanwhile, keep the following list as a useful reference for readers and editors.

Popup menu and mappings

Random thoughts on IDE

Usage with Python

Insenvim

Comments