From 4fc03c3970e9ccfcb6a792fed5b8c7d34e93da1e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 12 Nov 2017 23:31:27 +1300 Subject: Correct nonexistent 'wildmode' value in Vim config There is no such setting as "longest:list". What I meant was "list:longest". --- vim/config/completion.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/config/completion.vim b/vim/config/completion.vim index a8a5c201..566a3a7c 100644 --- a/vim/config/completion.vim +++ b/vim/config/completion.vim @@ -9,7 +9,7 @@ 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 + set wildmode=list:longest " Don't complete certain files that I'm not likely to want to manipulate " from within Vim: -- cgit v1.2.3