1
0
mirror of https://github.com/dense-analysis/ale synced 2025-02-21 14:56:51 +00:00
ale/syntax/ale-preview-selection.vim

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