mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
fix(runtime): check markdownError before syn-clear (#16930)
Avoids `E28: No such highlight group name: markdownError` when using a foreign markdown syntax.
This commit is contained in:
parent
287d3566de
commit
b435755452
@ -12,7 +12,9 @@ unlet! b:current_syntax
|
||||
syn case match
|
||||
|
||||
" We do not care about markdown syntax errors
|
||||
syn clear markdownError
|
||||
if hlexists('markdownError')
|
||||
syn clear markdownError
|
||||
endif
|
||||
|
||||
syn keyword healthError ERROR[:] containedin=markdownCodeBlock,mkdListItemLine
|
||||
syn keyword healthWarning WARNING[:] containedin=markdownCodeBlock,mkdListItemLine
|
||||
|
Loading…
Reference in New Issue
Block a user