]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - vimrc
vimrc: Improve 'wildmode'.
[config/dotfiles.git] / vimrc
diff --git a/vimrc b/vimrc
index 582797ebc522f035aae17a30cf898a84f5991f6a..77280238d06c7e72a007f8c71fbe31c5275cdb3d 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -39,9 +39,10 @@ set directory-=.
 " securemodelines (Vim script #1876).
 set nomodeline
 
-" When completing paths first use the longest path then display a list of all
-" possible files.
-set wildmode=longest,list
+" Complete to longest common string (list:longest) and then complete all full
+" matches after another (full). Thanks to pbrisbin
+" (http://pbrisbin.com:8080/dotfiles/vimrc).
+set wildmode=list:longest,full
 
 " Use strong encryption if possible, also used for swap/undo files.
 if v:version >= 703
@@ -214,6 +215,11 @@ cnoremap <C-N> <Down>
 nnoremap <Space> <C-F>
 nnoremap - <C-B>
 
+" Behave like 'scrolloff' but only while searching. Thanks to "Benjamin R.
+" Haskell" <vim@benizi.com> from the Vim mailing list (2010-10-26).
+nnoremap n nzv3j3k
+nnoremap N Nzv3k3j
+
 " Go to next and previous buffer. Thanks to elik in #vim on Freenode
 " (2010-05-16 18:38 CEST) for this idea.
 nnoremap <silent> gb :bnext<CR>