diff options
Diffstat (limited to '')
-rw-r--r-- | .vimrc | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -52,6 +52,18 @@ inoremap <expr> <CR> pumvisible() ? "\<C-y>" : "\<C-g>u\<CR>" let g:pydiction_location = '~/.vim/pydiction/complete-dict' " ======================================================= +" COMPLETION FOR CMDLINE +" ======================================================= + +" enable nice menu +set wildmenu + +" do not use Left and Right for switching between completions, +" but for cursor positioning +cnoremap <Left> <Space><BS><Left> +cnoremap <Right> <Space><BS><Right> + +" ======================================================= " CUSTOM MAPPINGS " ======================================================= |