Skip to content

Commit b9c3b47

Browse files
committed
fix the process that check existence of g:hl_matchit_allow_ft_regexp deprecation variable.
I guess, "!" isn't need.
1 parent 7304349 commit b9c3b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/hl_matchit.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if !exists('g:hl_matchit_allow_ft')
2626
let g:hl_matchit_allow_ft = ''
2727
endif
2828

29-
if !exists('g:hl_matchit_allow_ft_regexp')
29+
if exists('g:hl_matchit_allow_ft_regexp')
3030
echoerr 'hl_matchit: g:hl_matchit_allow_ft_regexp is removed. use g:hl_matchit_allow_ft'
3131
endif
3232

0 commit comments

Comments
 (0)