Use a new window for the ALEFixSuggest command, and document it better

This commit is contained in:
w0rp 2017-06-28 16:20:01 +01:00
parent f883d4d4fd
commit 8846a8860f
5 changed files with 96 additions and 30 deletions

View 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'