Mercurial > vim
annotate runtime/syntax/help.vim @ 32092:60f330eb0376 v9.0.1377
patch 9.0.1377: job_status() may return "dead" if the process parent changed
Commit: https://github.com/vim/vim/commit/5c6a3c9bad67c2ce766f55dbecb3461f14833a42
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Mar 4 13:23:26 2023 +0000
patch 9.0.1377: job_status() may return "dead" if the process parent changed
Problem: job_status() may return "dead" if the process parent changed.
Solution: Call mch_process_running() to check if the job is still alive.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 04 Mar 2023 14:30:04 +0100 |
parents | 20cf2080f1ee |
children | 4027cefc2aab |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Vim help file | |
3 " Maintainer: Bram Moolenaar (Bram@vim.org) | |
31139 | 4 " Last Change: 2022 Nov 13 |
7 | 5 |
344 | 6 " Quit when a (custom) syntax file was already loaded |
7 if exists("b:current_syntax") | |
7 | 8 finish |
9 endif | |
10 | |
3256 | 11 let s:cpo_save = &cpo |
12 set cpo&vim | |
13 | |
31139 | 14 syn match helpHeadline "^[A-Z.][-A-Z0-9 .,()_']*?\=\ze\(\s\+\*\|$\)" |
3713 | 15 syn match helpSectionDelim "^===.*===$" |
16 syn match helpSectionDelim "^---.*--$" | |
5161
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
4780
diff
changeset
|
17 if has("conceal") |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
4780
diff
changeset
|
18 syn region helpExample matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<" concealends |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
4780
diff
changeset
|
19 else |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
4780
diff
changeset
|
20 syn region helpExample matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<" |
f7add3891e95
Updated runtime files. Fix NL translations.
Bram Moolenaar <bram@vim.org>
parents:
4780
diff
changeset
|
21 endif |
7 | 22 if has("ebcdic") |
827 | 23 syn match helpHyperTextJump "\\\@<!|[^"*|]\+|" contains=helpBar |
828 | 24 syn match helpHyperTextEntry "\*[^"*|]\+\*\s"he=e-1 contains=helpStar |
25 syn match helpHyperTextEntry "\*[^"*|]\+\*$" contains=helpStar | |
7 | 26 else |
827 | 27 syn match helpHyperTextJump "\\\@<!|[#-)!+-~]\+|" contains=helpBar |
828 | 28 syn match helpHyperTextEntry "\*[#-)!+-~]\+\*\s"he=e-1 contains=helpStar |
29 syn match helpHyperTextEntry "\*[#-)!+-~]\+\*$" contains=helpStar | |
7 | 30 endif |
2965 | 31 if has("conceal") |
4098 | 32 syn match helpBar contained "|" conceal |
33 syn match helpBacktick contained "`" conceal | |
2965 | 34 syn match helpStar contained "\*" conceal |
35 else | |
4098 | 36 syn match helpBar contained "|" |
37 syn match helpBacktick contained "`" | |
2965 | 38 syn match helpStar contained "\*" |
39 endif | |
7 | 40 syn match helpNormal "|.*====*|" |
3224 | 41 syn match helpNormal "|||" |
7 | 42 syn match helpNormal ":|vim:|" " for :help modeline |
5692
80e5f9584b02
Update runtime files. Add Euphoria syntax files.
Bram Moolenaar <bram@vim.org>
parents:
5510
diff
changeset
|
43 syn match helpVim "\<Vim version [0-9][0-9.a-z]*" |
7 | 44 syn match helpVim "VIM REFERENCE.*" |
45 syn match helpOption "'[a-z]\{2,\}'" | |
46 syn match helpOption "'t_..'" | |
30547 | 47 syn match helpNormal "'ab'" |
5340 | 48 syn match helpCommand "`[^` \t]\+`"hs=s+1,he=e-1 contains=helpBacktick |
8869
b73f9ed65072
commit https://github.com/vim/vim/commit/939a1abe935a539f2d4c90a56cb0682cbaf3bbb0
Christian Brabandt <cb@256bit.org>
parents:
5692
diff
changeset
|
49 syn match helpCommand "\(^\|[^a-z"[]\)\zs`[^`]\+`\ze\([^a-z\t."']\|$\)"hs=s+1,he=e-1 contains=helpBacktick |
7 | 50 syn match helpHeader "\s*\zs.\{-}\ze\s\=\~$" nextgroup=helpIgnore |
2642 | 51 syn match helpGraphic ".* \ze`$" nextgroup=helpIgnore |
2965 | 52 if has("conceal") |
53 syn match helpIgnore "." contained conceal | |
54 else | |
55 syn match helpIgnore "." contained | |
56 endif | |
7 | 57 syn keyword helpNote note Note NOTE note: Note: NOTE: Notes Notes: |
11518 | 58 syn keyword helpWarning WARNING WARNING: Warning: |
59 syn keyword helpDeprecated DEPRECATED DEPRECATED: Deprecated: | |
7 | 60 syn match helpSpecial "\<N\>" |
61 syn match helpSpecial "\<N\.$"me=e-1 | |
62 syn match helpSpecial "\<N\.\s"me=e-2 | |
63 syn match helpSpecial "(N\>"ms=s+1 | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11518
diff
changeset
|
64 |
7 | 65 syn match helpSpecial "\[N]" |
66 " avoid highlighting N N in help.txt | |
67 syn match helpSpecial "N N"he=s+1 | |
68 syn match helpSpecial "Nth"me=e-2 | |
69 syn match helpSpecial "N-1"me=e-2 | |
70 syn match helpSpecial "{[-a-zA-Z0-9'"*+/:%#=[\]<>.,]\+}" | |
71 syn match helpSpecial "\s\[[-a-z^A-Z0-9_]\{2,}]"ms=s+1 | |
72 syn match helpSpecial "<[-a-zA-Z0-9_]\+>" | |
73 syn match helpSpecial "<[SCM]-.>" | |
74 syn match helpNormal "<---*>" | |
75 syn match helpSpecial "\[range]" | |
76 syn match helpSpecial "\[line]" | |
77 syn match helpSpecial "\[count]" | |
78 syn match helpSpecial "\[offset]" | |
79 syn match helpSpecial "\[cmd]" | |
25056 | 80 syn match helpNormal "vim9\[cmd]" |
7 | 81 syn match helpSpecial "\[num]" |
82 syn match helpSpecial "\[+num]" | |
83 syn match helpSpecial "\[-num]" | |
84 syn match helpSpecial "\[+cmd]" | |
85 syn match helpSpecial "\[++opt]" | |
86 syn match helpSpecial "\[arg]" | |
87 syn match helpSpecial "\[arguments]" | |
88 syn match helpSpecial "\[ident]" | |
89 syn match helpSpecial "\[addr]" | |
90 syn match helpSpecial "\[group]" | |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11518
diff
changeset
|
91 " Don't highlight [converted] and others that do not have a tag |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11518
diff
changeset
|
92 syn match helpNormal "\[\(readonly\|fifo\|socket\|converted\|crypted\)]" |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
11518
diff
changeset
|
93 |
7 | 94 syn match helpSpecial "CTRL-." |
18719 | 95 syn match helpSpecial "CTRL-SHIFT-." |
7 | 96 syn match helpSpecial "CTRL-Break" |
97 syn match helpSpecial "CTRL-PageUp" | |
98 syn match helpSpecial "CTRL-PageDown" | |
99 syn match helpSpecial "CTRL-Insert" | |
100 syn match helpSpecial "CTRL-Del" | |
101 syn match helpSpecial "CTRL-{char}" | |
102 syn region helpNotVi start="{Vi[: ]" start="{not" start="{only" end="}" contains=helpLeadBlank,helpHyperTextJump | |
103 syn match helpLeadBlank "^\s\+" contained | |
104 | |
105 " Highlight group items in their own color. | |
106 syn match helpComment "\t[* ]Comment\t\+[a-z].*" | |
107 syn match helpConstant "\t[* ]Constant\t\+[a-z].*" | |
108 syn match helpString "\t[* ]String\t\+[a-z].*" | |
109 syn match helpCharacter "\t[* ]Character\t\+[a-z].*" | |
110 syn match helpNumber "\t[* ]Number\t\+[a-z].*" | |
111 syn match helpBoolean "\t[* ]Boolean\t\+[a-z].*" | |
112 syn match helpFloat "\t[* ]Float\t\+[a-z].*" | |
113 syn match helpIdentifier "\t[* ]Identifier\t\+[a-z].*" | |
114 syn match helpFunction "\t[* ]Function\t\+[a-z].*" | |
115 syn match helpStatement "\t[* ]Statement\t\+[a-z].*" | |
116 syn match helpConditional "\t[* ]Conditional\t\+[a-z].*" | |
117 syn match helpRepeat "\t[* ]Repeat\t\+[a-z].*" | |
118 syn match helpLabel "\t[* ]Label\t\+[a-z].*" | |
119 syn match helpOperator "\t[* ]Operator\t\+["a-z].*" | |
120 syn match helpKeyword "\t[* ]Keyword\t\+[a-z].*" | |
121 syn match helpException "\t[* ]Exception\t\+[a-z].*" | |
122 syn match helpPreProc "\t[* ]PreProc\t\+[a-z].*" | |
123 syn match helpInclude "\t[* ]Include\t\+[a-z].*" | |
124 syn match helpDefine "\t[* ]Define\t\+[a-z].*" | |
125 syn match helpMacro "\t[* ]Macro\t\+[a-z].*" | |
126 syn match helpPreCondit "\t[* ]PreCondit\t\+[a-z].*" | |
127 syn match helpType "\t[* ]Type\t\+[a-z].*" | |
128 syn match helpStorageClass "\t[* ]StorageClass\t\+[a-z].*" | |
129 syn match helpStructure "\t[* ]Structure\t\+[a-z].*" | |
130 syn match helpTypedef "\t[* ]Typedef\t\+[Aa-z].*" | |
131 syn match helpSpecial "\t[* ]Special\t\+[a-z].*" | |
132 syn match helpSpecialChar "\t[* ]SpecialChar\t\+[a-z].*" | |
133 syn match helpTag "\t[* ]Tag\t\+[a-z].*" | |
134 syn match helpDelimiter "\t[* ]Delimiter\t\+[a-z].*" | |
135 syn match helpSpecialComment "\t[* ]SpecialComment\t\+[a-z].*" | |
136 syn match helpDebug "\t[* ]Debug\t\+[a-z].*" | |
137 syn match helpUnderlined "\t[* ]Underlined\t\+[a-z].*" | |
138 syn match helpError "\t[* ]Error\t\+[a-z].*" | |
139 syn match helpTodo "\t[* ]Todo\t\+[a-z].*" | |
140 | |
810 | 141 syn match helpURL `\v<(((https?|ftp|gopher)://|(mailto|file|news):)[^' <>"]+|(www|web|w3)[a-z0-9_-]*\.[a-z0-9._-]+\.[^' <>"]+)[a-zA-Z0-9/]` |
7 | 142 |
143 " Additionally load a language-specific syntax file "help_ab.vim". | |
237 | 144 let s:i = match(expand("%"), '\.\a\ax$') |
145 if s:i > 0 | |
146 exe "runtime syntax/help_" . strpart(expand("%"), s:i + 1, 2) . ".vim" | |
7 | 147 endif |
148 | |
2289
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
149 " Italian |
2308 | 150 if v:lang =~ '\<IT\>' || v:lang =~ '_IT\>' || v:lang =~? "italian" |
151 syn keyword helpNote nota Nota NOTA nota: Nota: NOTA: notare Notare NOTARE notare: Notare: NOTARE: | |
2289
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
152 syn match helpSpecial "Nma"me=e-2 |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
153 syn match helpSpecial "Nme"me=e-2 |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
154 syn match helpSpecial "Nmi"me=e-2 |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
155 syn match helpSpecial "Nmo"me=e-2 |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
156 syn match helpSpecial "\[interv.]" |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
157 syn region helpNotVi start="{non" start="{solo" start="{disponibile" end="}" contains=helpLeadBlank,helpHyperTextJump |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
158 endif |
3331756e4232
Make synstack() work on the character just after the end of the line.
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
159 |
7 | 160 syn sync minlines=40 |
161 | |
162 | |
163 " Define the default highlighting. | |
344 | 164 " Only used when an item doesn't have highlighting yet |
165 hi def link helpIgnore Ignore | |
5510 | 166 hi def link helpHyperTextJump Identifier |
827 | 167 hi def link helpBar Ignore |
4098 | 168 hi def link helpBacktick Ignore |
828 | 169 hi def link helpStar Ignore |
344 | 170 hi def link helpHyperTextEntry String |
171 hi def link helpHeadline Statement | |
172 hi def link helpHeader PreProc | |
173 hi def link helpSectionDelim PreProc | |
174 hi def link helpVim Identifier | |
3492 | 175 hi def link helpCommand Comment |
344 | 176 hi def link helpExample Comment |
177 hi def link helpOption Type | |
178 hi def link helpNotVi Special | |
179 hi def link helpSpecial Special | |
180 hi def link helpNote Todo | |
10140
b11ceef7116e
commit https://github.com/vim/vim/commit/64d8e25bf6efe5f18b032563521c3ce278c316ab
Christian Brabandt <cb@256bit.org>
parents:
8869
diff
changeset
|
181 hi def link helpWarning Todo |
11518 | 182 hi def link helpDeprecated Todo |
7 | 183 |
344 | 184 hi def link helpComment Comment |
185 hi def link helpConstant Constant | |
186 hi def link helpString String | |
187 hi def link helpCharacter Character | |
188 hi def link helpNumber Number | |
189 hi def link helpBoolean Boolean | |
190 hi def link helpFloat Float | |
191 hi def link helpIdentifier Identifier | |
192 hi def link helpFunction Function | |
193 hi def link helpStatement Statement | |
194 hi def link helpConditional Conditional | |
195 hi def link helpRepeat Repeat | |
196 hi def link helpLabel Label | |
197 hi def link helpOperator Operator | |
198 hi def link helpKeyword Keyword | |
199 hi def link helpException Exception | |
200 hi def link helpPreProc PreProc | |
201 hi def link helpInclude Include | |
202 hi def link helpDefine Define | |
203 hi def link helpMacro Macro | |
204 hi def link helpPreCondit PreCondit | |
205 hi def link helpType Type | |
206 hi def link helpStorageClass StorageClass | |
207 hi def link helpStructure Structure | |
208 hi def link helpTypedef Typedef | |
209 hi def link helpSpecialChar SpecialChar | |
210 hi def link helpTag Tag | |
211 hi def link helpDelimiter Delimiter | |
212 hi def link helpSpecialComment SpecialComment | |
213 hi def link helpDebug Debug | |
214 hi def link helpUnderlined Underlined | |
215 hi def link helpError Error | |
216 hi def link helpTodo Todo | |
502 | 217 hi def link helpURL String |
7 | 218 |
28933 | 219 if has('textprop') && expand('%:p') =~ '[/\\]doc[/\\]syntax.txt' |
28777 | 220 " highlight groups with their respective color |
221 import 'dist/vimhelp.vim' | |
222 call vimhelp.HighlightGroups() | |
223 endif | |
224 | |
7 | 225 let b:current_syntax = "help" |
226 | |
3256 | 227 let &cpo = s:cpo_save |
228 unlet s:cpo_save | |
7 | 229 " vim: ts=8 sw=2 |