From 6abbb3046411b7801e28854c1cb5ad0652d514e1 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Thu, 7 Apr 2016 11:16:51 +0100 Subject: [PATCH] vim: ignore case when completing file names --- vim/vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/vim/vimrc b/vim/vimrc index cb6ecea..22c9cd2 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -247,6 +247,7 @@ set directory=$XDG_CACHE_HOME/vim/swap// set history=5000 " how many command lines are remembered set wildmenu " command-line completion shows a list of matches set wildmode=longest:full,full " specifies how command line completion works +set wildignorecase " ignore case when completing file names set wildignore+=.hg,.git,.svn " Version control set wildignore+=*.aux,*.out,*.toc " LaTeX intermediate files -- 2.48.1