From 2504ef1135bc660c7cbff02db7b44e396e572178 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Sat, 3 Jul 2021 10:06:54 +0300 Subject: [PATCH] Revert "[nvim] use wildmenu" This reverts commit 5ad510c830b799a26d5829f10eba31ffbc45d397. --- nvim/plugin/interface.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nvim/plugin/interface.vim b/nvim/plugin/interface.vim index 183ec89..0c188f1 100644 --- a/nvim/plugin/interface.vim +++ b/nvim/plugin/interface.vim @@ -1,3 +1,9 @@ +" Replicate the behavior of Zsh's complist module under my configuration. +" 1st - complete till the longest common prefix (longest). +" 2nd - list the matches, but don't select or complete anything yet (list). +" 3rd - start the selection menu (i.e. wildmenu), select and complete the first match (full). +set wildmenu wildmode=longest,list,full + " always show the sign column set signcolumn=yes