mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 13:00:04 +08:00
9 lines
165 B
VimL
9 lines
165 B
VimL
|
if exists("b:current_syntax")
|
||
|
finish
|
||
|
endif
|
||
|
let b:current_syntax = "SpaceVimQuickFix"
|
||
|
syntax case ignore
|
||
|
syn match FileName /^[^ ]*/
|
||
|
|
||
|
hi def link FileName String
|