ale-fix-suggest.vim
1 if exists('b:current_syntax') 2 finish 3 endif 4 5 syn match aleFixerComment /^.*$/ 6 syn match aleFixerName /\(^ *\|, \)'[^']*'/ 7 syn match aleFixerHelp /^See :help ale-fix-configuration/ 8 9 hi def link aleFixerComment Comment 10 hi def link aleFixerName String 11 hi def link aleFixerHelp Statement 12 13 let b:current_syntax = 'ale-fix-suggest'