1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 06:40:05 +08:00
SpaceVim/bundle/unite.vim/syntax/unite_exrename.vim

21 lines
549 B
VimL
Raw Normal View History

2020-06-13 14:06:35 +08:00
"=============================================================================
" 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