Mercurial > vim
annotate runtime/syntax/gitsendemail.vim @ 15483:09803c73b55c
Added tag v8.1.0749 for changeset 18dd04f7c4a160f7bf064e7aaaacb9d321589e61
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 14 Jan 2019 23:00:07 +0100 |
parents | 43efa4f5a8ea |
children |
rev | line source |
---|---|
1622 | 1 " Vim syntax file |
2 " Language: git send-email message | |
3 " Maintainer: Tim Pope | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
4 " Filenames: .gitsendemail.* |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
5 " Last Change: 2016 Aug 29 |
1622 | 6 |
7 if exists("b:current_syntax") | |
2202 | 8 finish |
1622 | 9 endif |
10 | |
11 runtime! syntax/mail.vim | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
12 unlet! b:current_syntax |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
13 syn include @gitsendemailDiff syntax/diff.vim |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
14 syn region gitsendemailDiff start=/\%(^diff --\%(git\|cc\|combined\) \)\@=/ end=/^-- %/ fold contains=@gitsendemailDiff |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2202
diff
changeset
|
15 |
1622 | 16 syn case match |
17 | |
18 syn match gitsendemailComment "\%^From.*#.*" | |
19 syn match gitsendemailComment "^GIT:.*" | |
20 | |
21 hi def link gitsendemailComment Comment | |
22 | |
23 let b:current_syntax = "gitsendemail" |