mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:50:03 +08:00
10 lines
186 B
VimL
Vendored
10 lines
186 B
VimL
Vendored
if exists('b:current_syntax')
|
|
finish
|
|
endif
|
|
let b:current_syntax = 'git-reflog'
|
|
syntax case ignore
|
|
syn match GitLogCommitHash /^[a-z0-9A-Z]*/
|
|
|
|
hi def link GitLogCommitHash Statement
|
|
|