Skip to content

Instantly share code, notes, and snippets.

@thegengen
Created April 6, 2012 15:57
Show Gist options
  • Save thegengen/2320989 to your computer and use it in GitHub Desktop.
Save thegengen/2320989 to your computer and use it in GitHub Desktop.
use Tab instead of Enter for VIM's completion (including acp.vim)
" put this in your .vimrc
inoremap <Tab> <C-R>=pumvisible() ? "\<lt>C-N>" : "\<lt>Tab>"<CR>
inoremap <CR> <C-R>=pumvisible() ? "\<lt>ESC>o" : "\<lt>CR>"<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment