I broke up with neovim....vim is my best friend now
This commit is contained in:
13
dot_vim/plugged/ale/syntax/ale-fix-suggest.vim
Normal file
13
dot_vim/plugged/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'
|
||||
11
dot_vim/plugged/ale/syntax/ale-preview-selection.vim
Normal file
11
dot_vim/plugged/ale/syntax/ale-preview-selection.vim
Normal file
@@ -0,0 +1,11 @@
|
||||
if exists('b:current_syntax')
|
||||
finish
|
||||
endif
|
||||
|
||||
syn match alePreviewSelectionFilename /\v^([a-zA-Z]?:?[^:]+)/
|
||||
syn match alPreviewNumber /\v:\d+:\d+$/
|
||||
|
||||
hi def link alePreviewSelectionFilename String
|
||||
hi def link alePreviewNumber Number
|
||||
|
||||
let b:current_syntax = 'ale-preview-selection'
|
||||
Reference in New Issue
Block a user