2014-07-10 21:05:51 -07:00
|
|
|
" Vim syntax file
|
|
|
|
" Language: wDiff (wordwise diff)
|
|
|
|
" Maintainer: Gerfried Fuchs <alfie@ist.org>
|
|
|
|
" Last Change: 25 Apr 2001
|
|
|
|
" URL: http://alfie.ist.org/vim/syntax/wdiff.vim
|
|
|
|
"
|
|
|
|
" Comments are very welcome - but please make sure that you are commenting on
|
|
|
|
" the latest version of this file.
|
|
|
|
" SPAM is _NOT_ welcome - be ready to be reported!
|
|
|
|
|
|
|
|
|
2017-04-28 12:06:44 -07:00
|
|
|
" quit when a syntax file was already loaded
|
|
|
|
if exists("b:current_syntax")
|
2014-07-10 21:05:51 -07:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
syn region wdiffOld start=+\[-+ end=+-]+
|
|
|
|
syn region wdiffNew start="{+" end="+}"
|
|
|
|
|
|
|
|
|
|
|
|
" Define the default highlighting.
|
2017-04-28 12:06:44 -07:00
|
|
|
" Only when an item doesn't have highlighting yet
|
|
|
|
command -nargs=+ HiLink hi def link <args>
|
|
|
|
|
|
|
|
HiLink wdiffOld Special
|
|
|
|
HiLink wdiffNew Identifier
|
|
|
|
|
|
|
|
delcommand HiLink
|
2014-07-10 21:05:51 -07:00
|
|
|
|
|
|
|
let b:current_syntax = "wdiff"
|