diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2022-03-22 15:09:32 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2022-03-22 15:09:32 +0200 |
| commit | 1c5432caa9729e37379df72342e1b1e34a9b1d9e (patch) | |
| tree | d0ce36657db3523112906dbfa2f879712139d407 | |
| parent | 72e6ff529131e45c270d5fd48678867174a717fb (diff) | |
| download | dotfiles-1c5432caa9729e37379df72342e1b1e34a9b1d9e.tar dotfiles-1c5432caa9729e37379df72342e1b1e34a9b1d9e.tar.gz dotfiles-1c5432caa9729e37379df72342e1b1e34a9b1d9e.zip | |
Updated supertab settings
| -rw-r--r-- | .vimrc | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -168,6 +168,13 @@ " [ The following are disabled, because they conflict with delimitMate's autobracket feature ] " inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>" " inoremap <expr> <C-n> pumvisible() ? '<C-n>' : '<C-n><C-r>=pumvisible() ? "\<lt>Down>" : ""<CR>' + + " "Disables" arrow navigation in completion menu + inoremap <expr> <up> pumvisible() ? '<c-y><up>' : '<up>' + inoremap <expr> <down> pumvisible() ? '<c-y><down>' : '<down>' + + " Pressing tab goes from top to bottom + let g:SuperTabContextDefaultCompletionType = "<c-n>" " }}} " Spell check mode {{{ @@ -244,6 +251,10 @@ let g:tabman_side = 'right' " }}} +" SuperTab {{{ + let g:SuperTabDefaultCompletionType = "context" +" }}} + " Lightline {{{ " Settings {{{ set laststatus=2 |
