1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:20:05 +08:00
SpaceVim/bundle/ale/syntax/ale-fix-suggest.vim
2021-02-10 10:31:34 +08:00

14 lines
327 B
VimL
Vendored

if exists('b:current_syntax')
finish
endif
syn match aleFixerComment /^.*$/
syn match aleFixerName /\(^\|, \)'[^']*'/
syn match aleFixerHelp /^See :help ale-fix-configuration/
hi def link aleFixerComment Comment
hi def link aleFixerName String
hi def link aleFixerHelp Statement
let b:current_syntax = 'ale-fix-suggest'