1
0
Fork 0
mirror of synced 2024-06-02 15:31:09 -04:00
ultimate-vim/sources_non_forked/ale/syntax/ale-fix-suggest.vim

14 lines
329 B
VimL
Raw Normal View History

if exists('b:current_syntax')
finish
endif
syn match aleFixerComment /^.*$/
2024-01-07 10:14:20 -05:00
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'