Mercurial > vim
annotate runtime/syntax/sendpr.vim @ 12975:e311187347c1 v8.0.1363
patch 8.0.1363: recovering does not work when swap file ends in .stz
commit https://github.com/vim/vim/commit/af903e5d490ec9c6c49079f67de7e92e3c35a725
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Dec 2 15:11:22 2017 +0100
patch 8.0.1363: recovering does not work when swap file ends in .stz
Problem: Recovering does not work when swap file ends in .stz.
Solution: Check for all possible swap file names. (Elfling, closes https://github.com/vim/vim/issues/2395,
closes #2396)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 02 Dec 2017 15:15:05 +0100 |
parents | 43efa4f5a8ea |
children | 1e9e9d89f0ee |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: FreeBSD send-pr file | |
3 " Maintainer: Hendrik Scholz <hendrik@scholz.net> | |
3312 | 4 " Last Change: 2012 Feb 03 |
7 | 5 " |
6 " http://raisdorf.net/files/misc/send-pr.vim | |
7 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
3312
diff
changeset
|
8 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
3312
diff
changeset
|
9 if exists("b:current_syntax") |
7 | 10 finish |
11 endif | |
12 | |
3312 | 13 let s:cpo_save = &cpo |
14 set cpo&vim | |
15 | |
7 | 16 syn match sendprComment /^SEND-PR:/ |
17 " email address | |
18 syn match sendprType /<[a-zA-Z0-9\-\_\.]*@[a-zA-Z0-9\-\_\.]*>/ | |
19 " ^> lines | |
20 syn match sendprString /^>[a-zA-Z\-]*:/ | |
21 syn region sendprLabel start="\[" end="\]" | |
22 syn match sendprString /^To:/ | |
23 syn match sendprString /^From:/ | |
24 syn match sendprString /^Reply-To:/ | |
25 syn match sendprString /^Cc:/ | |
26 syn match sendprString /^X-send-pr-version:/ | |
27 syn match sendprString /^X-GNATS-Notify:/ | |
28 | |
29 hi def link sendprComment Comment | |
30 hi def link sendprType Type | |
31 hi def link sendprString String | |
32 hi def link sendprLabel Label | |
3312 | 33 |
34 let &cpo = s:cpo_save | |
35 unlet s:cpo_save |