summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjohannst <stoelp@eit.uni-kl.de>2017-06-18 18:50:49 +0200
committerjohannst <stoelp@eit.uni-kl.de>2017-06-18 18:50:49 +0200
commit7ccda78a24efd1c93adb5c919ef8aacfbf26914f (patch)
tree7f3ae9ffcab21876d8401f57e6d95d9223e44e01
parentda812c03a668e9b22a07a277510e73c0585d3faf (diff)
downloaddotfiles-7ccda78a24efd1c93adb5c919ef8aacfbf26914f.tar.gz
dotfiles-7ccda78a24efd1c93adb5c919ef8aacfbf26914f.zip
vimrc: Changed wildmode to print list of all matches
-rw-r--r--vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vimrc b/vimrc
index e408707..bd89ff8 100644
--- a/vimrc
+++ b/vimrc
@@ -344,7 +344,7 @@ augroup end
" Vim command completion settings
set wildmenu " turn on the wild menu
-set wildmode=longest:full " <Tab> cycles between all matching choices.
+set wildmode=list:longest " <Tab> print list of all matches and complete till longest common string
set wildignore+=*.o,*.obj,.git,*.pyc,*~ " Ignore these files when completing
"}}}