e149692cc9
subrepo: subdir: "dotfiles/.vim/plugged/ale" merged: "e4b205440" upstream: origin: "https://github.com/dense-analysis/ale.git" branch: "master" commit: "e4b205440" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
11 lines
282 B
VimL
11 lines
282 B
VimL
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'
|