mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:40:05 +08:00
21 lines
549 B
VimL
21 lines
549 B
VimL
|
"=============================================================================
|
||
|
" FILE: syntax/exrename.vim
|
||
|
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||
|
" License: MIT license
|
||
|
"=============================================================================
|
||
|
|
||
|
if version < 700
|
||
|
syntax clear
|
||
|
elseif exists('b:current_syntax')
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
syntax match uniteExrenameModified '^.*$'
|
||
|
|
||
|
highlight def link uniteExrenameModified Todo
|
||
|
highlight def link uniteExrenameOriginal Normal
|
||
|
|
||
|
let b:current_syntax = 'unite_exrename'
|
||
|
|
||
|
" vim: foldmethod=marker
|