mirror of
https://github.com/amix/vimrc
synced 2025-06-16 01:25:00 +08:00
Removed syntastic and replaced it with ale
Read more here: https://github.com/w0rp/ale
This commit is contained in:
13
sources_non_forked/ale/syntax/ale-fix-suggest.vim
Normal file
13
sources_non_forked/ale/syntax/ale-fix-suggest.vim
Normal file
@ -0,0 +1,13 @@
|
||||
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'
|
Reference in New Issue
Block a user