From 05651e0a7fa3967b9a0ac65be820771ee7a885e6 Mon Sep 17 00:00:00 2001 From: wsdjeg Date: Fri, 15 Apr 2022 09:56:06 +0800 Subject: [PATCH] fix(denite): enable `match_highlight` by default close https://github.com/SpaceVim/SpaceVim/issues/4622 --- config/plugins/denite.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/config/plugins/denite.vim b/config/plugins/denite.vim index 81bbabaa7..4320233c6 100644 --- a/config/plugins/denite.vim +++ b/config/plugins/denite.vim @@ -12,6 +12,7 @@ let s:denite_options = { \ 'quit' : 1, \ 'highlight_matched_char' : 'MoreMsg', \ 'highlight_matched_range' : 'MoreMsg', + \ 'match_highlight' : has('patch-7.4.1154') ? v:true : 1, \ 'direction': 'rightbelow', \ 'statusline' : has('patch-7.4.1154') ? v:false : 0, \ 'prompt' : g:spacevim_commandline_prompt,