Use a new window for the ALEFixSuggest command, and document it better
This commit is contained in:
parent
f883d4d4fd
commit
8846a8860f
5 changed files with 96 additions and 30 deletions
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'
|
Loading…
Add table
Add a link
Reference in a new issue