mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
07db909eb5
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
22 lines
581 B
VimL
22 lines
581 B
VimL
" Vim syntax file
|
|
" Language: Nvim :checkhealth buffer
|
|
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
runtime! syntax/help.vim
|
|
unlet! b:current_syntax
|
|
|
|
syn case match
|
|
|
|
syn keyword DiagnosticError ERROR[:]
|
|
syn keyword DiagnosticWarn WARNING[:]
|
|
syn keyword DiagnosticOk OK[:]
|
|
" Note: hs=e starts higlighting on the title line (instead of the "===" line).
|
|
syn match helpSectionDelim /^======*\n.*$/hs=e
|
|
highlight helpSectionDelim gui=reverse cterm=reverse
|
|
syn match healthHeadingChar "=" conceal cchar= contained containedin=helpSectionDelim
|
|
|
|
let b:current_syntax = "checkhealth"
|