]> git.rmz.io Git - dotfiles.git/commitdiff
vim: wildmode full after menu
authorSamir Benmendil <samir.benmendil@gmail.com>
Tue, 20 May 2014 08:56:50 +0000 (09:56 +0100)
committerSamir Benmendil <samir.benmendil@gmail.com>
Tue, 20 May 2014 09:09:32 +0000 (10:09 +0100)
vim/vimrc

index 0ef46303667469ae2192731c0b13d1c4b758a38d..71c794b4ff9661186e387c3208b15188fd06b239 100644 (file)
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -57,7 +57,7 @@ map <space> <leader>
 set incsearch           " show match for partly typed search command
 set ignorecase          " ignore case when using a search pattern
 set smartcase           " override 'ignorecase' when pattern has upper case characters
-set hlsearch                    " highlight all matches for the last used search pattern
+set hlsearch            " highlight all matches for the last used search pattern
 
 " use leader-n to unhighlight search
 nmap <silent> <Leader>n :silent nohl<CR>
@@ -272,7 +272,7 @@ set directory=$XDG_CACHE_HOME/vim,.,/var/tmp
 
 " command line editing {{{1
 set history=500                 " how many command lines are remembered
-set wildmode=longest:full       " specifies how command line completion works
+set wildmode=longest:full,full  " specifies how command line completion works
 set wildmenu                    " command-line completion shows a list of matches
 
 " various {{{1