1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 07:10:06 +08:00

fix(denite): enable match_highlight by default

close https://github.com/SpaceVim/SpaceVim/issues/4622
This commit is contained in:
wsdjeg 2022-04-15 09:56:06 +08:00
parent 7f42c793dc
commit 05651e0a7f

View File

@ -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,