1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:40:05 +08:00
SpaceVim/syntax/HelpDescribe.vim

11 lines
241 B
VimL
Raw Normal View History

2017-08-26 21:45:38 +08:00
if exists("b:current_syntax")
finish
endif
let b:current_syntax = "HelpDescribe"
syntax case ignore
2017-10-28 21:49:44 +08:00
syn match FileName /\(Definition:\ \)\@<=.*/
syn match KeyBindings /\[.*\]/
2017-08-26 21:45:38 +08:00
hi def link FileName Comment
2017-10-28 21:49:44 +08:00
hi def link KeyBindings String