]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
vimrc: Ignore case when completing files/directories.
authorSimon Ruderich <simon@ruderich.org>
Sun, 7 Oct 2012 23:08:42 +0000 (01:08 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sun, 7 Oct 2012 23:08:42 +0000 (01:08 +0200)
vimrc

diff --git a/vimrc b/vimrc
index 491979b73622e1145d87597a652bf6284fae4362..ed6ce3b1f7882d0b345eefc8749deccb879926d6 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -65,6 +65,10 @@ set nomodeline
 " matches after another (full). Thanks to pbrisbin
 " (http://pbrisbin.com:8080/dotfiles/vimrc).
 set wildmode=list:longest,full
+" Ignore case when completing files/directories.
+if exists('+wildignorecase')
+    set wildignorecase
+endif
 
 " Increase history of executed commands (:).
 set history=1000