summaryrefslogtreecommitdiff
path: root/syntax
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-06-28 16:20:01 +0100
committerw0rp <devw0rp@gmail.com>2017-06-28 16:20:05 +0100
commit8846a8860f39027c0c2a7aba9e49ad2fdacd5428 (patch)
tree85340d62b2fdb0d68e4d76694f47bd00165ba3c1 /syntax
parentf883d4d4fd20a928f2d224f342d5751ff3fd1a18 (diff)
downloadale-8846a8860f39027c0c2a7aba9e49ad2fdacd5428.zip
Use a new window for the ALEFixSuggest command, and document it better
Diffstat (limited to 'syntax')
-rw-r--r--syntax/ale-fix-suggest.vim13
1 files changed, 13 insertions, 0 deletions
diff --git a/syntax/ale-fix-suggest.vim b/syntax/ale-fix-suggest.vim
new file mode 100644
index 00000000..be3d45ee
--- /dev/null
+++ b/syntax/ale-fix-suggest.vim
@@ -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'