diff options
author | johannst <stoelp@eit.uni-kl.de> | 2017-06-18 18:50:49 +0200 |
---|---|---|
committer | johannst <stoelp@eit.uni-kl.de> | 2017-06-18 18:50:49 +0200 |
commit | 7ccda78a24efd1c93adb5c919ef8aacfbf26914f (patch) | |
tree | 7f3ae9ffcab21876d8401f57e6d95d9223e44e01 | |
parent | da812c03a668e9b22a07a277510e73c0585d3faf (diff) | |
download | dotfiles-7ccda78a24efd1c93adb5c919ef8aacfbf26914f.tar.gz dotfiles-7ccda78a24efd1c93adb5c919ef8aacfbf26914f.zip |
vimrc: Changed wildmode to print list of all matches
-rw-r--r-- | vimrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 "}}} |