9 lines
233 B
VimL
9 lines
233 B
VimL
|
if exists('b:current_syntax') && b:current_syntax ==# 'SpaceVimFlyGrep'
|
||
|
finish
|
||
|
endif
|
||
|
let b:current_syntax = 'SpaceVimFlyGrep'
|
||
|
syntax case ignore
|
||
|
|
||
|
syn match FileName /\([A-Z]:\)\?[^:]*:\d\+:\(\d\+:\)\?/
|
||
|
hi def link FileName Comment
|