aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-15 19:19:16 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-15 19:19:16 +1200
commitcef341bf75f524d62490e4f47e0d3ab6852b384e (patch)
treea779399f4adafe5cc78ef16ac34b31946869b760
parentTry ternary operator for $MYVIMRUNTIME setting (diff)
downloaddotfiles-cef341bf75f524d62490e4f47e0d3ab6852b384e.tar.gz
dotfiles-cef341bf75f524d62490e4f47e0d3ab6852b384e.zip
Turns out I'm not actually using 'wildmenu'
The 'wildmenu' option specifically means the interactive menu above the completing text, which only shows if 'wildmode' contains the `full` flag. Because I use a value that doesn't, this setting is unneeded.
-rw-r--r--vim/vimrc3
1 files changed, 1 insertions, 2 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 7e34369b..915b02b0 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -195,8 +195,7 @@ if has('persistent_undo')
set undodir^=$MYVIMRUNTIME/cache/undo//
endif
-" Wildmenu settings; see also plugin/wildignore.vim
-set wildmenu " Use wildmenu
+" Tab completion settings; see also plugin/wildignore.vim
set wildmode=list:longest " Tab press completes and lists
if exists('+wildignorecase')
set wildignorecase " Case insensitive, if supported (v7.3.072)