From 3592b950fc75003077cd4d208553f344bf6d892e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 10 Nov 2017 21:37:27 +1300 Subject: Move wildmenu config into completion.vim --- vim/config/wildmenu.vim | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 vim/config/wildmenu.vim (limited to 'vim/config/wildmenu.vim') diff --git a/vim/config/wildmenu.vim b/vim/config/wildmenu.vim deleted file mode 100644 index 6036c90a..00000000 --- a/vim/config/wildmenu.vim +++ /dev/null @@ -1,23 +0,0 @@ -" Configuration for the command completion feature; rather than merely cycling -" through possible completions with Tab, show them above the command line -if has('wildmenu') - - " Use the wild menu, both completing and showing all possible completions - " with a single Tab press, just as I've configured Bash to do - set wildmenu - set wildmode=longest:list - - " Don't complete certain files that I'm not likely to want to manipulate - " from within Vim: - if has('wildignore') - set wildignore+=*.a,*.o - set wildignore+=*.bmp,*.gif,*.ico,*.jpg,*.png - set wildignore+=.DS_Store,.git,.hg,.svn - set wildignore+=*~,*.swp,*.tmp - endif - - " Complete files without case sensitivity, if the option is available - if exists('&wildignorecase') - set wildignorecase - endif -endif -- cgit v1.2.3