mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 09:30:04 +08:00
12 lines
252 B
VimL
12 lines
252 B
VimL
|
if exists('b:current_syntax')
|
||
|
finish
|
||
|
endif
|
||
|
let b:current_syntax = 'git-rebase'
|
||
|
syntax case ignore
|
||
|
syn match GitRebaseIgnore /^\s*#.*/
|
||
|
syn match GitRebaseKeyword /^pick\s/
|
||
|
|
||
|
hi def link GitRebaseIgnore Comment
|
||
|
hi def link GitRebaseKeyword Statement
|
||
|
|