39
|
1 " Vim syntax file
|
11062
|
2 " Language: sudoers(5) configuration files
|
24278
|
3 " Maintainer: Eisuke Kawashima ( e.kawaschima+vim AT gmail.com )
|
11062
|
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
|
24278
|
5 " Latest Revision: 2021 Mar 15
|
14372
|
6 " Recent Changes: Support for #include and #includedir.
|
14637
|
7 " Added many new options (Samuel D. Leslie)
|
39
|
8
|
375
|
9 if exists("b:current_syntax")
|
39
|
10 finish
|
|
11 endif
|
|
12
|
375
|
13 let s:cpo_save = &cpo
|
|
14 set cpo&vim
|
|
15
|
39
|
16 " TODO: instead of 'skipnl', we would like to match a specific group that would
|
|
17 " match \\$ and then continue with the nextgroup, actually, the skipnl doesn't
|
|
18 " work...
|
|
19 " TODO: treat 'ALL' like a special (yay, a bundle of new rules!!!)
|
|
20
|
|
21 syn match sudoersUserSpec '^' nextgroup=@sudoersUserInSpec skipwhite
|
|
22
|
375
|
23 syn match sudoersSpecEquals contained '=' nextgroup=@sudoersCmndSpecList skipwhite
|
39
|
24
|
375
|
25 syn cluster sudoersCmndSpecList contains=sudoersUserRunasBegin,sudoersPASSWD,@sudoersCmndInSpec
|
|
26
|
|
27 syn keyword sudoersTodo contained TODO FIXME XXX NOTE
|
39
|
28
|
389
|
29 syn region sudoersComment display oneline start='#' end='$' contains=sudoersTodo
|
24278
|
30 syn region sudoersInclude display oneline start='[#@]\%(include\|includedir\)\>' end='$'
|
39
|
31
|
375
|
32 syn keyword sudoersAlias User_Alias Runas_Alias nextgroup=sudoersUserAlias skipwhite skipnl
|
|
33 syn keyword sudoersAlias Host_Alias nextgroup=sudoersHostAlias skipwhite skipnl
|
|
34 syn keyword sudoersAlias Cmnd_Alias nextgroup=sudoersCmndAlias skipwhite skipnl
|
39
|
35
|
375
|
36 syn match sudoersUserAlias contained '\<\u[A-Z0-9_]*\>' nextgroup=sudoersUserAliasEquals skipwhite skipnl
|
|
37 syn match sudoersUserNameInList contained '\<\l\+\>' nextgroup=@sudoersUserList skipwhite skipnl
|
|
38 syn match sudoersUIDInList contained '#\d\+\>' nextgroup=@sudoersUserList skipwhite skipnl
|
|
39 syn match sudoersGroupInList contained '%\l\+\>' nextgroup=@sudoersUserList skipwhite skipnl
|
|
40 syn match sudoersUserNetgroupInList contained '+\l\+\>' nextgroup=@sudoersUserList skipwhite skipnl
|
|
41 syn match sudoersUserAliasInList contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersUserList skipwhite skipnl
|
39
|
42
|
375
|
43 syn match sudoersUserName contained '\<\l\+\>' nextgroup=@sudoersParameter skipwhite skipnl
|
|
44 syn match sudoersUID contained '#\d\+\>' nextgroup=@sudoersParameter skipwhite skipnl
|
|
45 syn match sudoersGroup contained '%\l\+\>' nextgroup=@sudoersParameter skipwhite skipnl
|
|
46 syn match sudoersUserNetgroup contained '+\l\+\>' nextgroup=@sudoersParameter skipwhite skipnl
|
|
47 syn match sudoersUserAliasRef contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersParameter skipwhite skipnl
|
39
|
48
|
375
|
49 syn match sudoersUserNameInSpec contained '\<\l\+\>' nextgroup=@sudoersUserSpec skipwhite skipnl
|
|
50 syn match sudoersUIDInSpec contained '#\d\+\>' nextgroup=@sudoersUserSpec skipwhite skipnl
|
|
51 syn match sudoersGroupInSpec contained '%\l\+\>' nextgroup=@sudoersUserSpec skipwhite skipnl
|
|
52 syn match sudoersUserNetgroupInSpec contained '+\l\+\>' nextgroup=@sudoersUserSpec skipwhite skipnl
|
|
53 syn match sudoersUserAliasInSpec contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersUserSpec skipwhite skipnl
|
39
|
54
|
375
|
55 syn match sudoersUserNameInRunas contained '\<\l\+\>' nextgroup=@sudoersUserRunas skipwhite skipnl
|
|
56 syn match sudoersUIDInRunas contained '#\d\+\>' nextgroup=@sudoersUserRunas skipwhite skipnl
|
|
57 syn match sudoersGroupInRunas contained '%\l\+\>' nextgroup=@sudoersUserRunas skipwhite skipnl
|
|
58 syn match sudoersUserNetgroupInRunas contained '+\l\+\>' nextgroup=@sudoersUserRunas skipwhite skipnl
|
|
59 syn match sudoersUserAliasInRunas contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersUserRunas skipwhite skipnl
|
39
|
60
|
375
|
61 syn match sudoersHostAlias contained '\<\u[A-Z0-9_]*\>' nextgroup=sudoersHostAliasEquals skipwhite skipnl
|
|
62 syn match sudoersHostNameInList contained '\<\l\+\>' nextgroup=@sudoersHostList skipwhite skipnl
|
|
63 syn match sudoersIPAddrInList contained '\%(\d\{1,3}\.\)\{3}\d\{1,3}' nextgroup=@sudoersHostList skipwhite skipnl
|
39
|
64 syn match sudoersNetworkInList contained '\%(\d\{1,3}\.\)\{3}\d\{1,3}\%(/\%(\%(\d\{1,3}\.\)\{3}\d\{1,3}\|\d\+\)\)\=' nextgroup=@sudoersHostList skipwhite skipnl
|
375
|
65 syn match sudoersHostNetgroupInList contained '+\l\+\>' nextgroup=@sudoersHostList skipwhite skipnl
|
|
66 syn match sudoersHostAliasInList contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersHostList skipwhite skipnl
|
39
|
67
|
375
|
68 syn match sudoersHostName contained '\<\l\+\>' nextgroup=@sudoersParameter skipwhite skipnl
|
|
69 syn match sudoersIPAddr contained '\%(\d\{1,3}\.\)\{3}\d\{1,3}' nextgroup=@sudoersParameter skipwhite skipnl
|
|
70 syn match sudoersNetwork contained '\%(\d\{1,3}\.\)\{3}\d\{1,3}\%(/\%(\%(\d\{1,3}\.\)\{3}\d\{1,3}\|\d\+\)\)\=' nextgroup=@sudoersParameter skipwhite skipnl
|
|
71 syn match sudoersHostNetgroup contained '+\l\+\>' nextgroup=@sudoersParameter skipwhite skipnl
|
|
72 syn match sudoersHostAliasRef contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersParameter skipwhite skipnl
|
39
|
73
|
375
|
74 syn match sudoersHostNameInSpec contained '\<\l\+\>' nextgroup=@sudoersHostSpec skipwhite skipnl
|
|
75 syn match sudoersIPAddrInSpec contained '\%(\d\{1,3}\.\)\{3}\d\{1,3}' nextgroup=@sudoersHostSpec skipwhite skipnl
|
39
|
76 syn match sudoersNetworkInSpec contained '\%(\d\{1,3}\.\)\{3}\d\{1,3}\%(/\%(\%(\d\{1,3}\.\)\{3}\d\{1,3}\|\d\+\)\)\=' nextgroup=@sudoersHostSpec skipwhite skipnl
|
375
|
77 syn match sudoersHostNetgroupInSpec contained '+\l\+\>' nextgroup=@sudoersHostSpec skipwhite skipnl
|
|
78 syn match sudoersHostAliasInSpec contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersHostSpec skipwhite skipnl
|
39
|
79
|
375
|
80 syn match sudoersCmndAlias contained '\<\u[A-Z0-9_]*\>' nextgroup=sudoersCmndAliasEquals skipwhite skipnl
|
39
|
81 syn match sudoersCmndNameInList contained '[^[:space:],:=\\]\+\%(\\[[:space:],:=\\][^[:space:],:=\\]*\)*' nextgroup=@sudoersCmndList,sudoersCommandEmpty,sudoersCommandArgs skipwhite
|
375
|
82 syn match sudoersCmndAliasInList contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersCmndList skipwhite skipnl
|
39
|
83
|
|
84 syn match sudoersCmndNameInSpec contained '[^[:space:],:=\\]\+\%(\\[[:space:],:=\\][^[:space:],:=\\]*\)*' nextgroup=@sudoersCmndSpec,sudoersCommandEmptyInSpec,sudoersCommandArgsInSpec skipwhite
|
375
|
85 syn match sudoersCmndAliasInSpec contained '\<\u[A-Z0-9_]*\>' nextgroup=@sudoersCmndSpec skipwhite skipnl
|
39
|
86
|
375
|
87 syn match sudoersUserAliasEquals contained '=' nextgroup=@sudoersUserInList skipwhite skipnl
|
|
88 syn match sudoersUserListComma contained ',' nextgroup=@sudoersUserInList skipwhite skipnl
|
|
89 syn match sudoersUserListColon contained ':' nextgroup=sudoersUserAlias skipwhite skipnl
|
|
90 syn cluster sudoersUserList contains=sudoersUserListComma,sudoersUserListColon
|
39
|
91
|
375
|
92 syn match sudoersUserSpecComma contained ',' nextgroup=@sudoersUserInSpec skipwhite skipnl
|
|
93 syn cluster sudoersUserSpec contains=sudoersUserSpecComma,@sudoersHostInSpec
|
39
|
94
|
|
95 syn match sudoersUserRunasBegin contained '(' nextgroup=@sudoersUserInRunas skipwhite skipnl
|
375
|
96 syn match sudoersUserRunasComma contained ',' nextgroup=@sudoersUserInRunas skipwhite skipnl
|
|
97 syn match sudoersUserRunasEnd contained ')' nextgroup=sudoersPASSWD,@sudoersCmndInSpec skipwhite skipnl
|
|
98 syn cluster sudoersUserRunas contains=sudoersUserRunasComma,@sudoersUserInRunas,sudoersUserRunasEnd
|
39
|
99
|
|
100
|
375
|
101 syn match sudoersHostAliasEquals contained '=' nextgroup=@sudoersHostInList skipwhite skipnl
|
|
102 syn match sudoersHostListComma contained ',' nextgroup=@sudoersHostInList skipwhite skipnl
|
|
103 syn match sudoersHostListColon contained ':' nextgroup=sudoersHostAlias skipwhite skipnl
|
|
104 syn cluster sudoersHostList contains=sudoersHostListComma,sudoersHostListColon
|
39
|
105
|
375
|
106 syn match sudoersHostSpecComma contained ',' nextgroup=@sudoersHostInSpec skipwhite skipnl
|
|
107 syn cluster sudoersHostSpec contains=sudoersHostSpecComma,sudoersSpecEquals
|
39
|
108
|
|
109
|
375
|
110 syn match sudoersCmndAliasEquals contained '=' nextgroup=@sudoersCmndInList skipwhite skipnl
|
|
111 syn match sudoersCmndListComma contained ',' nextgroup=@sudoersCmndInList skipwhite skipnl
|
|
112 syn match sudoersCmndListColon contained ':' nextgroup=sudoersCmndAlias skipwhite skipnl
|
|
113 syn cluster sudoersCmndList contains=sudoersCmndListComma,sudoersCmndListColon
|
39
|
114
|
|
115 syn match sudoersCmndSpecComma contained ',' nextgroup=@sudoersCmndSpecList skipwhite skipnl
|
375
|
116 syn match sudoersCmndSpecColon contained ':' nextgroup=@sudoersUserInSpec skipwhite skipnl
|
|
117 syn cluster sudoersCmndSpec contains=sudoersCmndSpecComma,sudoersCmndSpecColon
|
39
|
118
|
375
|
119 syn cluster sudoersUserInList contains=sudoersUserNegationInList,sudoersUserNameInList,sudoersUIDInList,sudoersGroupInList,sudoersUserNetgroupInList,sudoersUserAliasInList
|
|
120 syn cluster sudoersHostInList contains=sudoersHostNegationInList,sudoersHostNameInList,sudoersIPAddrInList,sudoersNetworkInList,sudoersHostNetgroupInList,sudoersHostAliasInList
|
|
121 syn cluster sudoersCmndInList contains=sudoersCmndNegationInList,sudoersCmndNameInList,sudoersCmndAliasInList
|
39
|
122
|
375
|
123 syn cluster sudoersUser contains=sudoersUserNegation,sudoersUserName,sudoersUID,sudoersGroup,sudoersUserNetgroup,sudoersUserAliasRef
|
|
124 syn cluster sudoersHost contains=sudoersHostNegation,sudoersHostName,sudoersIPAddr,sudoersNetwork,sudoersHostNetgroup,sudoersHostAliasRef
|
39
|
125
|
375
|
126 syn cluster sudoersUserInSpec contains=sudoersUserNegationInSpec,sudoersUserNameInSpec,sudoersUIDInSpec,sudoersGroupInSpec,sudoersUserNetgroupInSpec,sudoersUserAliasInSpec
|
|
127 syn cluster sudoersHostInSpec contains=sudoersHostNegationInSpec,sudoersHostNameInSpec,sudoersIPAddrInSpec,sudoersNetworkInSpec,sudoersHostNetgroupInSpec,sudoersHostAliasInSpec
|
|
128 syn cluster sudoersUserInRunas contains=sudoersUserNegationInRunas,sudoersUserNameInRunas,sudoersUIDInRunas,sudoersGroupInRunas,sudoersUserNetgroupInRunas,sudoersUserAliasInRunas
|
|
129 syn cluster sudoersCmndInSpec contains=sudoersCmndNegationInSpec,sudoersCmndNameInSpec,sudoersCmndAliasInSpec
|
39
|
130
|
|
131 syn match sudoersUserNegationInList contained '!\+' nextgroup=@sudoersUserInList skipwhite skipnl
|
|
132 syn match sudoersHostNegationInList contained '!\+' nextgroup=@sudoersHostInList skipwhite skipnl
|
|
133 syn match sudoersCmndNegationInList contained '!\+' nextgroup=@sudoersCmndInList skipwhite skipnl
|
|
134
|
375
|
135 syn match sudoersUserNegation contained '!\+' nextgroup=@sudoersUser skipwhite skipnl
|
|
136 syn match sudoersHostNegation contained '!\+' nextgroup=@sudoersHost skipwhite skipnl
|
39
|
137
|
|
138 syn match sudoersUserNegationInSpec contained '!\+' nextgroup=@sudoersUserInSpec skipwhite skipnl
|
|
139 syn match sudoersHostNegationInSpec contained '!\+' nextgroup=@sudoersHostInSpec skipwhite skipnl
|
|
140 syn match sudoersUserNegationInRunas contained '!\+' nextgroup=@sudoersUserInRunas skipwhite skipnl
|
|
141 syn match sudoersCmndNegationInSpec contained '!\+' nextgroup=@sudoersCmndInSpec skipwhite skipnl
|
|
142
|
375
|
143 syn match sudoersCommandArgs contained '[^[:space:],:=\\]\+\%(\\[[:space:],:=\\][^[:space:],:=\\]*\)*' nextgroup=sudoersCommandArgs,@sudoersCmndList skipwhite
|
|
144 syn match sudoersCommandEmpty contained '""' nextgroup=@sudoersCmndList skipwhite skipnl
|
39
|
145
|
|
146 syn match sudoersCommandArgsInSpec contained '[^[:space:],:=\\]\+\%(\\[[:space:],:=\\][^[:space:],:=\\]*\)*' nextgroup=sudoersCommandArgsInSpec,@sudoersCmndSpec skipwhite
|
|
147 syn match sudoersCommandEmptyInSpec contained '""' nextgroup=@sudoersCmndSpec skipwhite skipnl
|
|
148
|
375
|
149 syn keyword sudoersDefaultEntry Defaults nextgroup=sudoersDefaultTypeAt,sudoersDefaultTypeColon,sudoersDefaultTypeGreaterThan,@sudoersParameter skipwhite skipnl
|
|
150 syn match sudoersDefaultTypeAt contained '@' nextgroup=@sudoersHost skipwhite skipnl
|
|
151 syn match sudoersDefaultTypeColon contained ':' nextgroup=@sudoersUser skipwhite skipnl
|
39
|
152 syn match sudoersDefaultTypeGreaterThan contained '>' nextgroup=@sudoersUser skipwhite skipnl
|
|
153
|
|
154 " TODO: could also deal with special characters here
|
375
|
155 syn match sudoersBooleanParameter contained '!' nextgroup=sudoersBooleanParameter skipwhite skipnl
|
2709
|
156 syn keyword sudoersBooleanParameter contained skipwhite skipnl
|
14637
|
157 \ always_query_group_plugin
|
2709
|
158 \ always_set_home
|
|
159 \ authenticate
|
|
160 \ closefrom_override
|
14637
|
161 \ compress_io
|
2709
|
162 \ env_editor
|
|
163 \ env_reset
|
14637
|
164 \ exec_background
|
|
165 \ fast_glob
|
2709
|
166 \ fqdn
|
14637
|
167 \ ignore_audit_errors
|
2709
|
168 \ ignore_dot
|
14637
|
169 \ ignore_iolog_errors
|
2709
|
170 \ ignore_local_sudoers
|
14637
|
171 \ ignore_logfile_errors
|
|
172 \ ignore_unknown_defaults
|
2709
|
173 \ insults
|
|
174 \ log_host
|
14637
|
175 \ log_input
|
|
176 \ log_output
|
2709
|
177 \ log_year
|
|
178 \ long_otp_prompt
|
14637
|
179 \ mail_all_cmnds
|
2709
|
180 \ mail_always
|
|
181 \ mail_badpass
|
|
182 \ mail_no_host
|
|
183 \ mail_no_perms
|
|
184 \ mail_no_user
|
14637
|
185 \ match_group_by_gid
|
|
186 \ netgroup_tuple
|
2709
|
187 \ noexec
|
14637
|
188 \ pam_session
|
|
189 \ pam_setcred
|
|
190 \ passprompt_override
|
2709
|
191 \ path_info
|
|
192 \ preserve_groups
|
14637
|
193 \ pwfeedback
|
2709
|
194 \ requiretty
|
|
195 \ root_sudo
|
|
196 \ rootpw
|
|
197 \ runaspw
|
|
198 \ set_home
|
|
199 \ set_logname
|
14637
|
200 \ set_utmp
|
2709
|
201 \ setenv
|
|
202 \ shell_noargs
|
|
203 \ stay_setuid
|
14637
|
204 \ sudoedit_checkdir
|
24278
|
205 \ sudoedit_follow
|
14637
|
206 \ syslog_pid
|
2709
|
207 \ targetpw
|
|
208 \ tty_tickets
|
14637
|
209 \ umask_override
|
|
210 \ use_netgroups
|
|
211 \ use_pty
|
|
212 \ user_command_timeouts
|
|
213 \ utmp_runas
|
2709
|
214 \ visiblepw
|
|
215
|
|
216 syn keyword sudoersIntegerParameter contained
|
|
217 \ nextgroup=sudoersIntegerParameterEquals
|
|
218 \ skipwhite skipnl
|
|
219 \ closefrom
|
14637
|
220 \ command_timeout
|
2709
|
221 \ loglinelen
|
14637
|
222 \ maxseq
|
2709
|
223 \ passwd_timeout
|
14637
|
224 \ passwd_tries
|
|
225 \ syslog_maxlen
|
2709
|
226 \ timestamp_timeout
|
|
227 \ umask
|
|
228
|
|
229 syn keyword sudoersStringParameter contained
|
|
230 \ nextgroup=sudoersStringParameterEquals
|
|
231 \ skipwhite skipnl
|
14637
|
232 \ askpass
|
2709
|
233 \ badpass_message
|
|
234 \ editor
|
|
235 \ env_file
|
|
236 \ exempt_group
|
14637
|
237 \ fdexec
|
|
238 \ group_plugin
|
|
239 \ iolog_dir
|
|
240 \ iolog_file
|
|
241 \ iolog_flush
|
|
242 \ iolog_group
|
|
243 \ iolog_mode
|
|
244 \ iolog_user
|
2709
|
245 \ lecture
|
|
246 \ lecture_file
|
14637
|
247 \ lecture_status_dir
|
2709
|
248 \ listpw
|
|
249 \ logfile
|
|
250 \ mailerflags
|
|
251 \ mailerpath
|
|
252 \ mailfrom
|
14637
|
253 \ mailsub
|
2709
|
254 \ mailto
|
14637
|
255 \ noexec_file
|
|
256 \ pam_login_service
|
|
257 \ pam_service
|
|
258 \ passprompt
|
|
259 \ restricted_env_file
|
|
260 \ role
|
|
261 \ runas_default
|
2709
|
262 \ secure_path
|
14637
|
263 \ sudoers_locale
|
2709
|
264 \ syslog
|
14637
|
265 \ syslog_badpri
|
|
266 \ syslog_goodpri
|
|
267 \ timestamp_type
|
|
268 \ timestampdir
|
|
269 \ timestampowner
|
|
270 \ type
|
2709
|
271 \ verifypw
|
|
272
|
|
273 syn keyword sudoersListParameter contained
|
|
274 \ nextgroup=sudoersListParameterEquals
|
|
275 \ skipwhite skipnl
|
|
276 \ env_check
|
|
277 \ env_delete
|
|
278 \ env_keep
|
39
|
279
|
|
280 syn match sudoersParameterListComma contained ',' nextgroup=@sudoersParameter skipwhite skipnl
|
|
281
|
1621
|
282 syn cluster sudoersParameter contains=sudoersBooleanParameter,sudoersIntegerParameter,sudoersStringParameter,sudoersListParameter
|
39
|
283
|
|
284 syn match sudoersIntegerParameterEquals contained '[+-]\==' nextgroup=sudoersIntegerValue skipwhite skipnl
|
|
285 syn match sudoersStringParameterEquals contained '[+-]\==' nextgroup=sudoersStringValue skipwhite skipnl
|
375
|
286 syn match sudoersListParameterEquals contained '[+-]\==' nextgroup=sudoersListValue skipwhite skipnl
|
39
|
287
|
375
|
288 syn match sudoersIntegerValue contained '\d\+' nextgroup=sudoersParameterListComma skipwhite skipnl
|
|
289 syn match sudoersStringValue contained '[^[:space:],:=\\]*\%(\\[[:space:],:=\\][^[:space:],:=\\]*\)*' nextgroup=sudoersParameterListComma skipwhite skipnl
|
|
290 syn region sudoersStringValue contained start=+"+ skip=+\\"+ end=+"+ nextgroup=sudoersParameterListComma skipwhite skipnl
|
|
291 syn match sudoersListValue contained '[^[:space:],:=\\]*\%(\\[[:space:],:=\\][^[:space:],:=\\]*\)*' nextgroup=sudoersParameterListComma skipwhite skipnl
|
|
292 syn region sudoersListValue contained start=+"+ skip=+\\"+ end=+"+ nextgroup=sudoersParameterListComma skipwhite skipnl
|
|
293
|
|
294 syn match sudoersPASSWD contained '\%(NO\)\=PASSWD:' nextgroup=@sudoersCmndInSpec skipwhite
|
39
|
295
|
375
|
296 hi def link sudoersSpecEquals Operator
|
|
297 hi def link sudoersTodo Todo
|
|
298 hi def link sudoersComment Comment
|
|
299 hi def link sudoersAlias Keyword
|
|
300 hi def link sudoersUserAlias Identifier
|
|
301 hi def link sudoersUserNameInList String
|
|
302 hi def link sudoersUIDInList Number
|
|
303 hi def link sudoersGroupInList PreProc
|
|
304 hi def link sudoersUserNetgroupInList PreProc
|
|
305 hi def link sudoersUserAliasInList PreProc
|
|
306 hi def link sudoersUserName String
|
|
307 hi def link sudoersUID Number
|
|
308 hi def link sudoersGroup PreProc
|
|
309 hi def link sudoersUserNetgroup PreProc
|
|
310 hi def link sudoersUserAliasRef PreProc
|
|
311 hi def link sudoersUserNameInSpec String
|
|
312 hi def link sudoersUIDInSpec Number
|
|
313 hi def link sudoersGroupInSpec PreProc
|
|
314 hi def link sudoersUserNetgroupInSpec PreProc
|
|
315 hi def link sudoersUserAliasInSpec PreProc
|
|
316 hi def link sudoersUserNameInRunas String
|
|
317 hi def link sudoersUIDInRunas Number
|
|
318 hi def link sudoersGroupInRunas PreProc
|
|
319 hi def link sudoersUserNetgroupInRunas PreProc
|
|
320 hi def link sudoersUserAliasInRunas PreProc
|
|
321 hi def link sudoersHostAlias Identifier
|
|
322 hi def link sudoersHostNameInList String
|
|
323 hi def link sudoersIPAddrInList Number
|
|
324 hi def link sudoersNetworkInList Number
|
|
325 hi def link sudoersHostNetgroupInList PreProc
|
|
326 hi def link sudoersHostAliasInList PreProc
|
|
327 hi def link sudoersHostName String
|
|
328 hi def link sudoersIPAddr Number
|
|
329 hi def link sudoersNetwork Number
|
|
330 hi def link sudoersHostNetgroup PreProc
|
|
331 hi def link sudoersHostAliasRef PreProc
|
|
332 hi def link sudoersHostNameInSpec String
|
|
333 hi def link sudoersIPAddrInSpec Number
|
|
334 hi def link sudoersNetworkInSpec Number
|
|
335 hi def link sudoersHostNetgroupInSpec PreProc
|
|
336 hi def link sudoersHostAliasInSpec PreProc
|
|
337 hi def link sudoersCmndAlias Identifier
|
|
338 hi def link sudoersCmndNameInList String
|
|
339 hi def link sudoersCmndAliasInList PreProc
|
|
340 hi def link sudoersCmndNameInSpec String
|
|
341 hi def link sudoersCmndAliasInSpec PreProc
|
|
342 hi def link sudoersUserAliasEquals Operator
|
|
343 hi def link sudoersUserListComma Delimiter
|
|
344 hi def link sudoersUserListColon Delimiter
|
|
345 hi def link sudoersUserSpecComma Delimiter
|
|
346 hi def link sudoersUserRunasBegin Delimiter
|
|
347 hi def link sudoersUserRunasComma Delimiter
|
|
348 hi def link sudoersUserRunasEnd Delimiter
|
|
349 hi def link sudoersHostAliasEquals Operator
|
|
350 hi def link sudoersHostListComma Delimiter
|
|
351 hi def link sudoersHostListColon Delimiter
|
|
352 hi def link sudoersHostSpecComma Delimiter
|
|
353 hi def link sudoersCmndAliasEquals Operator
|
|
354 hi def link sudoersCmndListComma Delimiter
|
|
355 hi def link sudoersCmndListColon Delimiter
|
|
356 hi def link sudoersCmndSpecComma Delimiter
|
|
357 hi def link sudoersCmndSpecColon Delimiter
|
|
358 hi def link sudoersUserNegationInList Operator
|
|
359 hi def link sudoersHostNegationInList Operator
|
|
360 hi def link sudoersCmndNegationInList Operator
|
|
361 hi def link sudoersUserNegation Operator
|
|
362 hi def link sudoersHostNegation Operator
|
|
363 hi def link sudoersUserNegationInSpec Operator
|
|
364 hi def link sudoersHostNegationInSpec Operator
|
|
365 hi def link sudoersUserNegationInRunas Operator
|
|
366 hi def link sudoersCmndNegationInSpec Operator
|
|
367 hi def link sudoersCommandArgs String
|
|
368 hi def link sudoersCommandEmpty Special
|
|
369 hi def link sudoersDefaultEntry Keyword
|
|
370 hi def link sudoersDefaultTypeAt Special
|
|
371 hi def link sudoersDefaultTypeColon Special
|
|
372 hi def link sudoersDefaultTypeGreaterThan Special
|
|
373 hi def link sudoersBooleanParameter Identifier
|
|
374 hi def link sudoersIntegerParameter Identifier
|
|
375 hi def link sudoersStringParameter Identifier
|
|
376 hi def link sudoersListParameter Identifier
|
|
377 hi def link sudoersParameterListComma Delimiter
|
|
378 hi def link sudoersIntegerParameterEquals Operator
|
|
379 hi def link sudoersStringParameterEquals Operator
|
|
380 hi def link sudoersListParameterEquals Operator
|
|
381 hi def link sudoersIntegerValue Number
|
|
382 hi def link sudoersStringValue String
|
|
383 hi def link sudoersListValue String
|
|
384 hi def link sudoersPASSWD Special
|
14372
|
385 hi def link sudoersInclude Statement
|
39
|
386
|
|
387 let b:current_syntax = "sudoers"
|
|
388
|
375
|
389 let &cpo = s:cpo_save
|
|
390 unlet s:cpo_save
|