From d46c3a34499ad00e6d23cb1ac369523e7369b766 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 27 Nov 2010 14:40:18 +0100 Subject: [PATCH] vimrc: Improve 'wildmode'. --- vimrc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vimrc b/vimrc index 7d1f0ae..7728023 100644 --- 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 -- 2.45.2