mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
Use a new window for the ALEFixSuggest command, and document it better
This commit is contained in:
13
syntax/ale-fix-suggest.vim
Normal file
13
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