mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:30:07 +08:00
9 lines
213 B
VimL
9 lines
213 B
VimL
if exists('b:current_syntax') && b:current_syntax ==# 'SpaceVimTodoManager'
|
|
finish
|
|
endif
|
|
let b:current_syntax = 'SpaceVimTodoManager'
|
|
syntax case ignore
|
|
|
|
syn match FileName /^[^ ]*/
|
|
hi def link FileName Comment
|