Vim Tips Wiki
(add some preamble and link to some relevant plugins)
No edit summary
Line 70: Line 70:
 
::::Again, works fine for me, and I've had something similar in my setup since Vim 7.1. Do you use Vim in "easy mode" or with 'insertmode' set? Maybe you have a "tiny" build or similar? I can't really think of any reasons it would not work unless you entered the mapping wrong. Try contacting #vim on Freenode or the vim_use mailing list. See [[Asking questions]] for details. --[[User:Fritzophrenic|Fritzophrenic]] 03:10, March 17, 2011 (UTC)
 
::::Again, works fine for me, and I've had something similar in my setup since Vim 7.1. Do you use Vim in "easy mode" or with 'insertmode' set? Maybe you have a "tiny" build or similar? I can't really think of any reasons it would not work unless you entered the mapping wrong. Try contacting #vim on Freenode or the vim_use mailing list. See [[Asking questions]] for details. --[[User:Fritzophrenic|Fritzophrenic]] 03:10, March 17, 2011 (UTC)
 
::For me everything works until I install "SuperTab continued"; that's when I get the error you describe. Unfortunately, I don't have a solution yet. Will update if/when I do.
 
::For me everything works until I install "SuperTab continued"; that's when I get the error you describe. Unfortunately, I don't have a solution yet. Will update if/when I do.
  +
[[User:M Klein|Mklein]]
  +
::::When using SuperTab w/ these mappings use this to avoid the mentioned troubles:
  +
let g:SuperTabCrMapping = 0
  +
 
----
 
----
 
If you like the part of the tip where <C-n> automatically selects the first entry by simulating <Down>, you can add the same thing for simulating <Up> when searching backwards with <C-p>:
 
If you like the part of the tip where <C-n> automatically selects the first entry by simulating <Down>, you can add the same thing for simulating <Up> when searching backwards with <C-p>:

Revision as of 22:30, 25 January 2012

Tip 1386 Printable Monobook Previous Next

created November 13, 2006 · complexity intermediate · author Matt Zyzik · version n/a


Completion Menu

The completion menu is controlled by completeopt. You can set multiple values to combine behaviours.

Your completion options may be full text from files (see :help 'complete'), Omni completion, or a custom complete function (see :help complete-functions).

Completion Options

In most IDEs, you normally type some code, press <C-Space> for a completion popup menu, type some more characters to select the menu item you want, then hit <Enter> to insert that completion into the code. With Vim's initial popup menu settings, the behavior of the popup menu is a little less pleasant (for some people).

The first step to "improve" the menu behavior is to execute this command:

:set completeopt=longest,menuone

The above command will change the 'completeopt' option so that Vim's popup menu doesn't select the first completion item, but rather just inserts the longest common text of all matches; and the menu will come up even if there's only one match. (The longest setting is responsible for the former effect and the menuone is responsible for the latter.)

The next enhancement is the following mapping:

:inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>"

The above mapping will change the behavior of the <Enter> key when the popup menu is visible. In that case the Enter key will simply select the highlighted menu item, just as <C-Y> does.

These two mappings further improve the completion popup menu:

inoremap <expr> <C-n> pumvisible() ? '<C-n>' :
  \ '<C-n><C-r>=pumvisible() ? "\<lt>Down>" : ""<CR>'

inoremap <expr> <M-,> pumvisible() ? '<C-n>' :
  \ '<C-x><C-o><C-n><C-p><C-r>=pumvisible() ? "\<lt>Down>" : ""<CR>'

In the above mappings, the first will make <C-N> work the way it normally does; however, when the menu appears, the <Down> key will be simulated. What this accomplishes is it keeps a menu item always highlighted. This way you can keep typing characters to narrow the matches, and the nearest match will be selected so that you can hit Enter at any time to insert it. In the above mappings, the second one is a little more exotic: it simulates <C-X><C-O> to bring up the omni completion menu, then it simulates <C-N><C-P> to remove the longest common text, and finally it simulates <Down> again to keep a match highlighted.

Complete as you type

The AutoComplPop plugin automatically opens popup menu for completions as you type.

Completion with Tab

You can map Tab to start completions, but there's also the SuperTab plugin that does some extra context completion and allows you to use Tab to advance through your completion options.

References

Comments

 TO DO 

I don't know. Tip 1228 doesn't explain what their mappings do at all, and there are a lot more of them. This tip tells what's going on, although admittedly it does not tell how it works (which I would like).
--Fritzophrenic 17:12, 19 November 2007 (UTC)
  • Further explanation?
  • Broken mapping?
The <CR> mapping doesn't work - it causes vim to insert

pumvisible() ? "\" : "\
"
into my files each time I press Enter when there's no pop up menu.
Works for me! What version of Vim do you have? It looks like your Vim is ignoring the <expr> tag and using the mapping literally instead of evaluating it as an expression first. :map-expressions are a feature introduced in Vim 7, and I do not see any compile-time option for removing them. --Fritzophrenic 20:05, February 22, 2011 (UTC)
I have the same problem. `vim --version` says: 7.2 (2008 Aug 9, compiled Feb 11 2010 14:27:45), included patches: 1-108. Compile-time options that match "map" include: -keymap -langmap +localmap. --Arthaey
Again, works fine for me, and I've had something similar in my setup since Vim 7.1. Do you use Vim in "easy mode" or with 'insertmode' set? Maybe you have a "tiny" build or similar? I can't really think of any reasons it would not work unless you entered the mapping wrong. Try contacting #vim on Freenode or the vim_use mailing list. See Asking questions for details. --Fritzophrenic 03:10, March 17, 2011 (UTC)
For me everything works until I install "SuperTab continued"; that's when I get the error you describe. Unfortunately, I don't have a solution yet. Will update if/when I do.

Mklein

When using SuperTab w/ these mappings use this to avoid the mentioned troubles:
   let g:SuperTabCrMapping = 0

If you like the part of the tip where <C-n> automatically selects the first entry by simulating <Down>, you can add the same thing for simulating <Up> when searching backwards with <C-p>:

" keep menu item always highlighted by simulating <Up> on pu visible
inoremap <expr> <C-p> pumvisible() ? '<C-p>' :
  \ '<C-p><C-r>=pumvisible() ? "\<lt>Up>" : ""<CR>'