From: Simon Ruderich Date: Sun, 7 Oct 2012 23:08:42 +0000 (+0200) Subject: vimrc: Ignore case when completing files/directories. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=ae1617edc6d3d33217969a46b8eabb891e4bf1c8;p=config%2Fdotfiles.git vimrc: Ignore case when completing files/directories. --- diff --git a/vimrc b/vimrc index 491979b..ed6ce3b 100644 --- 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