Mercurial > vim
annotate runtime/syntax/purifylog.vim @ 10297:c90f4cc9c3fe v8.0.0045
commit https://github.com/vim/vim/commit/bb09ceb95477ecc271854b3fdd8d2776eca66adf
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Oct 18 16:27:23 2016 +0200
patch 8.0.0045
Problem: Calling job_stop() right after job_start() does not work.
Solution: Block signals while fork is still busy. (Ozaki Kiichi, closes
https://github.com/vim/vim/issues/1155)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 18 Oct 2016 16:30:04 +0200 |
parents | 46763b01cd9a |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: purify log files | |
3 " Maintainer: Gautam H. Mudunuri <gmudunur@informatica.com> | |
4 " Last Change: 2003 May 11 | |
5 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
6 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
7 if exists("b:current_syntax") |
7 | 8 finish |
9 endif | |
10 | |
11 " Purify header | |
12 syn match purifyLogHeader "^\*\*\*\*.*$" | |
13 | |
14 " Informational messages | |
15 syn match purifyLogFIU "^FIU:.*$" | |
16 syn match purifyLogMAF "^MAF:.*$" | |
17 syn match purifyLogMIU "^MIU:.*$" | |
18 syn match purifyLogSIG "^SIG:.*$" | |
19 syn match purifyLogWPF "^WPF:.*$" | |
20 syn match purifyLogWPM "^WPM:.*$" | |
21 syn match purifyLogWPN "^WPN:.*$" | |
22 syn match purifyLogWPR "^WPR:.*$" | |
23 syn match purifyLogWPW "^WPW:.*$" | |
24 syn match purifyLogWPX "^WPX:.*$" | |
25 | |
26 " Warning messages | |
27 syn match purifyLogABR "^ABR:.*$" | |
28 syn match purifyLogBSR "^BSR:.*$" | |
29 syn match purifyLogBSW "^BSW:.*$" | |
30 syn match purifyLogFMR "^FMR:.*$" | |
31 syn match purifyLogMLK "^MLK:.*$" | |
32 syn match purifyLogMSE "^MSE:.*$" | |
33 syn match purifyLogPAR "^PAR:.*$" | |
34 syn match purifyLogPLK "^PLK:.*$" | |
35 syn match purifyLogSBR "^SBR:.*$" | |
36 syn match purifyLogSOF "^SOF:.*$" | |
37 syn match purifyLogUMC "^UMC:.*$" | |
38 syn match purifyLogUMR "^UMR:.*$" | |
39 | |
40 " Corrupting messages | |
41 syn match purifyLogABW "^ABW:.*$" | |
42 syn match purifyLogBRK "^BRK:.*$" | |
43 syn match purifyLogFMW "^FMW:.*$" | |
44 syn match purifyLogFNH "^FNH:.*$" | |
45 syn match purifyLogFUM "^FUM:.*$" | |
46 syn match purifyLogMRE "^MRE:.*$" | |
47 syn match purifyLogSBW "^SBW:.*$" | |
48 | |
49 " Fatal messages | |
50 syn match purifyLogCOR "^COR:.*$" | |
51 syn match purifyLogNPR "^NPR:.*$" | |
52 syn match purifyLogNPW "^NPW:.*$" | |
53 syn match purifyLogZPR "^ZPR:.*$" | |
54 syn match purifyLogZPW "^ZPW:.*$" | |
55 | |
56 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
57 " Only when an item doesn't have highlighting yet |
7 | 58 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
59 hi def link purifyLogFIU purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
60 hi def link purifyLogMAF purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
61 hi def link purifyLogMIU purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
62 hi def link purifyLogSIG purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
63 hi def link purifyLogWPF purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
64 hi def link purifyLogWPM purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
65 hi def link purifyLogWPN purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
66 hi def link purifyLogWPR purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
67 hi def link purifyLogWPW purifyLogInformational |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
68 hi def link purifyLogWPX purifyLogInformational |
7 | 69 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
70 hi def link purifyLogABR purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
71 hi def link purifyLogBSR purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
72 hi def link purifyLogBSW purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
73 hi def link purifyLogFMR purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
74 hi def link purifyLogMLK purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
75 hi def link purifyLogMSE purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
76 hi def link purifyLogPAR purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
77 hi def link purifyLogPLK purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
78 hi def link purifyLogSBR purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
79 hi def link purifyLogSOF purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
80 hi def link purifyLogUMC purifyLogWarning |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
81 hi def link purifyLogUMR purifyLogWarning |
7 | 82 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
83 hi def link purifyLogABW purifyLogCorrupting |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
84 hi def link purifyLogBRK purifyLogCorrupting |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
85 hi def link purifyLogFMW purifyLogCorrupting |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
86 hi def link purifyLogFNH purifyLogCorrupting |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
87 hi def link purifyLogFUM purifyLogCorrupting |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
88 hi def link purifyLogMRE purifyLogCorrupting |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
89 hi def link purifyLogSBW purifyLogCorrupting |
7 | 90 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
91 hi def link purifyLogCOR purifyLogFatal |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
92 hi def link purifyLogNPR purifyLogFatal |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
93 hi def link purifyLogNPW purifyLogFatal |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
94 hi def link purifyLogZPR purifyLogFatal |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
95 hi def link purifyLogZPW purifyLogFatal |
7 | 96 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
97 hi def link purifyLogHeader Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
98 hi def link purifyLogInformational PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
99 hi def link purifyLogWarning Type |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
100 hi def link purifyLogCorrupting Error |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
101 hi def link purifyLogFatal Error |
7 | 102 |
103 | |
104 let b:current_syntax = "purifylog" | |
105 | |
106 " vim:ts=8 |