Mercurial > vim
annotate runtime/syntax/gitsendemail.vim @ 18755:a0be066d0b48 v8.1.2367
patch 8.1.2367: registers are not sufficiently tested
Commit: https://github.com/vim/vim/commit/71136db1bfbc67c2e55f8070cdf0a241c643e45b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Nov 30 19:48:46 2019 +0100
patch 8.1.2367: registers are not sufficiently tested
Problem: Registers are not sufficiently tested.
Solution: Add a few more test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5288)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 30 Nov 2019 20:00:03 +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" |