1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 21:00:03 +08:00
SpaceVim/syntax/SpaceVimFlyGrep.vim
Viacheslav Lotsmanov ad934b5d99 Fixed regex in SpaceVimFlyGrep syntax file (#2363)
* Fixed regex in SpaceVimFlyGrep syntax file

Second number (column?) may not be presented in the FlyGrep output.

* Following-HEAD.md: Added FlyGrep syntax fix
2018-12-19 22:30:23 +08:00

9 lines
221 B
VimL

if exists('b:current_syntax') && b:current_syntax ==# 'SpaceVimFlyGrep'
finish
endif
let b:current_syntax = 'SpaceVimFlyGrep'
syntax case ignore
syn match FileName /[^:]*:\d\+:\(\d\+:\)\?/
hi def link FileName Comment