diff options
| author | Felipe Contreras <felipe.contreras@gmail.com> | 2013-06-02 19:31:59 -0500 |
|---|---|---|
| committer | Felipe Contreras <felipe.contreras@gmail.com> | 2013-06-02 19:42:43 -0500 |
| commit | 138c6aa098fe4236dc334cc55ac4fc414ddb298c (patch) | |
| tree | 1521462482deec7317ed5234d5a87c1091261842 /vim/syntax/notmuch-git-diff.vim | |
| parent | dbc3a247cac72e400efb45250e10eebe64722904 (diff) | |
Add new notmuch vim plugin
The old one was not properly maintained and is now deprecated. The new
one has much better support.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'vim/syntax/notmuch-git-diff.vim')
| -rw-r--r-- | vim/syntax/notmuch-git-diff.vim | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/vim/syntax/notmuch-git-diff.vim b/vim/syntax/notmuch-git-diff.vim new file mode 100644 index 00000000..6f15fdc7 --- /dev/null +++ b/vim/syntax/notmuch-git-diff.vim @@ -0,0 +1,26 @@ +syn match diffRemoved "^-.*" +syn match diffAdded "^+.*" + +syn match diffSeparator "^---$" +syn match diffSubname " @@..*"ms=s+3 contained +syn match diffLine "^@.*" contains=diffSubname + +syn match diffFile "^diff .*" +syn match diffNewFile "^+++ .*" +syn match diffOldFile "^--- .*" + +hi def link diffOldFile diffFile +hi def link diffNewFile diffFile + +hi def link diffFile Type +hi def link diffRemoved Special +hi def link diffAdded Identifier +hi def link diffLine Statement +hi def link diffSubname PreProc + +syntax match gitDiffStatLine /^ .\{-}\zs[+-]\+$/ contains=gitDiffStatAdd,gitDiffStatDelete +syntax match gitDiffStatAdd /+/ contained +syntax match gitDiffStatDelete /-/ contained + +hi def link gitDiffStatAdd diffAdded +hi def link gitDiffStatDelete diffRemoved |
