supertab autocompletion

This commit is contained in:
Loic Nageleisen 2014-10-14 15:19:13 +02:00
parent 4d91357e02
commit d284a3b989
2 changed files with 6 additions and 1 deletions

View file

@ -25,7 +25,8 @@ Bundle 'kien/ctrlp.vim'
"Bundle 'Lokaltog/vim-powerline' "Bundle 'Lokaltog/vim-powerline'
Bundle 'bling/vim-airline' Bundle 'bling/vim-airline'
Bundle 'scrooloose/nerdtree' Bundle 'scrooloose/nerdtree'
"Bundle 'ervandew/supertab' Bundle 'ervandew/supertab'
"Bundle 'Valloric/YouCompleteMe'
Bundle 'scrooloose/syntastic' Bundle 'scrooloose/syntastic'
"Bundle 'majutsushi/tagbar' "Bundle 'majutsushi/tagbar'
"Bundle 'airblade/vim-gitgutter' "Bundle 'airblade/vim-gitgutter'

4
vimrc
View file

@ -171,6 +171,10 @@ nnoremap <leader>a :Ag<SPACE>
"SuperTab options "SuperTab options
let g:SuperTabDefaultCompletionType = "context" let g:SuperTabDefaultCompletionType = "context"
" Complete options (disable preview scratch window)
set completeopt=menu,menuone,longest
" Limit popup menu height
set pumheight=15
"OmniComplete "OmniComplete
let g:rubycomplete_buffer_loading = 1 let g:rubycomplete_buffer_loading = 1