Mercurial > vim
annotate runtime/syntax/gitsendemail.vim @ 22479:695881a04101
Added tag v8.2.1787 for changeset 5193420617f151971ca827f584e1679050405efd
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 02 Oct 2020 20:45:04 +0200 |
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" |