mirror of
https://github.com/neovim/neovim.git
synced 2026-01-03 18:06:29 +10: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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user