-
Notifications
You must be signed in to change notification settings - Fork 3
/
_syslinux.coder
501 lines (411 loc) · 40 KB
/
_syslinux.coder
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
;----------------------------------------------;
; Coder plugin syntax file ;
;----------------------------------------------;
;Colors
; Color need to be in #RRGGBB or #RGB format.
; If color equal to zero, then color ignored.
;
;Font styles
; 0 ignored.
; 1 normal.
; 2 bold.
; 3 italic.
; 4 bold italic.
;
;For comfort file viewing/editing set tab size to 8.
;Author: Skif_off (2017-05-21)
;AkelPad 4.9.6 and higher
;https://github.com/Lenchik/Akelpad-syntax-highlighting/blob/master/_syslinux.coder - working version
;https://github.com/Lenchik/Akelpad-syntax-highlighting/blob/master/source_for_developers/_syslinux.utf8.coder - development version in UTF-8 for easier development on GitHub
;
; Don't rename file! Не переименовывать файл!
;
; Menu item "SYNTAXTHEME" (set syntax theme manually) (for PXELINUX and other):
; Пункт меню для ручного включения (для PXELINUX и др.):
; "Syslinux" Call("Coder::Settings", 6, "syslinux.cfg")
Files:
;==========
;File types
;==========
syslinux.cfg
isolinux.cfg
extlinux.conf
;----------------------------------------------;
; HighLight ;
;----------------------------------------------;
;Flags (sum of the members)
; 1 case sensitive.
; 2 word is a composition of characters ("Words:" section only). Example: "0123456789" - highlight words that contain only digits.
; 4 quote end required ("Quotes:" section only).
; 8 quote start string is ignored and last meet delimiter used as quote start ("Quotes:" section only).
; 16 quote end string is ignored and first meet delimiter used as quote end ("Quotes:" section only).
; 32 don't highlight quote start ("Quotes:" section only).
; 64 don't highlight quote end ("Quotes:" section only).
; 128 don't catch and don't highlight quote start ("Quotes:" section only).
; 256 don't catch and don't highlight quote end ("Quotes:" section only).
; 512 quote start, delimiter or word located at line start.
; 1024 quote end, delimiter or word located at line end.
; 2048 quote start is surrounded with delimiters ("Quotes:" section only).
; 4096 quote end is surrounded with delimiters ("Quotes:" section only).
; 8192 quote doesn't contain delimiters ("Quotes:" section only).
; 16384 only quote start string is catched ("Quotes:" section only).
; 32768 quote doesn't contain any character ("Quotes:" section only).
Font:
;=================================================================
;FontStyle FontSize FaceName
;=================================================================
${HighLight_FontStyle} ${HighLight_FontSize} ${HighLight_FaceName}
Colors:
;=============================================================================================================================================================================================================================================================================================================================================================================================================================
;BasicTextColor BasicBkColor SelTextColor SelBkColor LineTextColor LineBkColor LineBorderColor AltTextColor AltBkColor AltBorderColor ColumnColor MarkerColor CaretColor UrlColor ActiveUrlColor VisitUrlColor
;=============================================================================================================================================================================================================================================================================================================================================================================================================================
${HighLight_BasicTextColor} ${HighLight_BasicBkColor} ${HighLight_SelTextColor} ${HighLight_SelBkColor} ${HighLight_LineTextColor} ${HighLight_LineBkColor} ${HighLight_LineBorderColor} ${HighLight_AltTextColor} ${HighLight_AltBkColor} ${HighLight_AltBorderColor} ${HighLight_ColumnColor} ${HighLight_MarkerColor} ${HighLight_CaretColor} ${HighLight_UrlColor} ${HighLight_ActiveUrlColor} ${HighLight_VisitUrlColor}
BkImage:
;==================================================
;BkImageFile BkImageAlpha
;==================================================
${HighLight_BkImageFile} ${HighLight_BkImageAlpha}
AutoMark:
;====================================================================================================================
;AutoMarkFlags AutoMarkFontStyle AutoMarkTextColor AutoMarkBkColor
;====================================================================================================================
${HighLight_AutoMarkFlags} ${HighLight_AutoMarkFontStyle} ${HighLight_AutoMarkTextColor} ${HighLight_AutoMarkBkColor}
Quotes:
;===================================================================================
;Flags Font Color Color Quote Quote Escape Quote Quote Parent Rule
; style text bkgrnd start end char include exclude ID ID
;===================================================================================
;5=1+4
5 3 ${STR} 0 `"` `"` "" "" "" 0 0
;513=1+512
513 3 ${COMM} 0 "#" "" "" "" "" 0 0
;640=128+512
640 3 ${STR} 0 "LABEL" "" "" "" "" 0 0
;33280=512+32768
33280 0 ${IF} 0 "MENU " "EXIT" "" "" "" 0 0
QuotesRE:
;===========================================================================================
;Flags Pattern \BackRef=(FontStyle,ColorText,ColorBk) \BackRef=... ParentID RuleID
;===========================================================================================
;Global Directives - Secondary: F1...F12
1 "^[ \t]*([Ff][1-9][0-2]?)[ \t]([^\r\n]++)$" "\1=(0,${IF},0) \2=(0,0,0)" 0 0
;MENU
0 "^[ \t]*(MENU BEGIN)[ \t]([^\r\n]++)$" "\1=(0,${IF},0) \2=(2,0,0)" 0 0
0 "^[ \t]*(MENU END)(?![A-Za-Z])" "\1=(0,${IF},0)" 0 0
0 "^[ \t]*(MENU MASTER PASSWD)[ \t]([^\r\n]++)$" "\1=(0,${OP},0) \2=(3,${STR},0)" 0 0
0 "^[ \t]*(MENU) (LABEL|AUTOBOOT|NOTABMSG|PASSPROMPT|PASSWD|TABMSG|TITLE)[ \t]([^\r\n]++)$" "\1=(0,${OP},0) \2=(0,${OP},0) \3=(3,${STR},0)" 0 0
0 "^[ \t]*(MENU (GOTO|EXIT))[ \t]([^\r\n]++)$" "\1=(0,${OP},0) \2=(2,0,0)" 0 0
0 "^[ \t]*(MENU (BACKGROUND|MSGCOLOR|COLOR|CMDLINEROW|ENDROW|HELPMSGENDROW|HELPMSGROW|HELP|HIDDENKEY|HIDDENROW|HSHIFT|INDENT|MARGIN|PASSWORDMARGIN|PASSWORDROW|RESOLUTION|ROWS|TABMSGROW|TIMEOUTROW|VSHIFT|WIDTH))" "\1=(0,${OP},0)" 0 0
0 "^[ \t]*(MENU (CLEAR|DEFAULT|DISABLE|HIDDEN|HIDE|IMMEDIATE|NOSAVE|QUIT|SAVE|SEPARATOR|SHIFTKEY|START))" "\1=(0,${OP},0)" 0 0
0 "^[ \t]*(MENU )?INCLUDE" "\0=(0,${AREA},0)" 0 0
;Color codes
1 "#[\dA-Fa-f]{8}+" "\0=(0,${NUM},0)" 0 0
Delimiters:
;===============================================
;Flags Font Color Color Char(s) Parent
; style text bkgrnd ID
;===============================================
1 0 0 0 " "
1 0 0 0 " "
1 0 0 0 `"`
1 0 ${DEL1} 0 =
1 0 ${DEL1} 0 :
Words:
;===========================================
;Flags Font Color Color Word Parent
; style text bkgrnd ID
;===========================================
;2 0 ${NUM} 0 "0123456789"
;Global Directives - Main
512 0 ${IF} 0 DEFAULT
512 0 ${IF} 0 UI
512 0 ${OP} 0 LABEL
;512 2 ${AREA} 0 INCLUDE
;512 2 ${AREA} 0 MENU INCLUDE
;512 0 ${IF} 0 MENU LABEL
;512 0 ${IF} 0 MENU INDENT
;512 0 ${IF} 0 MENU SEPARATOR
;512 0 ${IF} 0 MENU DISABLE
;512 0 ${IF} 0 MENU HIDE
;512 0 ${IF} 0 TEXT HELP
512 0 ${IF} 0 ENDTEXT
;512 0 ${IF} 0 MENU BEGIN
;512 0 ${IF} 0 MENU END
;512 0 ${IF} 0 MENU GOTO
;512 0 ${IF} 0 MENU EXIT
;512 0 ${IF} 0 MENU QUIT
;512 0 ${IF} 0 MENU START
;512 0 ${IF} 0 MENU DEFAULT
;512 0 ${IF} 0 MENU PASSWD
;512 0 ${IF} 0 MENU MASTER PASSWD
;512 0 ${IF} 0 MENU TITLE
;512 0 ${IF} 0 MENU HIDDEN
;512 0 ${IF} 0 MENU HIDDENKEY
;512 0 ${IF} 0 MENU SHIFTKEY
;512 0 ${IF} 0 MENU IMMEDIATE
;512 0 ${IF} 0 MENU CLEAR
;512 0 ${IF} 0 MENU RESOLUTION
;512 0 ${IF} 0 MENU BACKGROUND
;512 0 ${IF} 0 MENU SAVE
;512 0 ${IF} 0 MENU NOSAVE
;512 0 ${IF} 0 MENU AUTOBOOT
;512 0 ${IF} 0 MENU TABMSG
;512 0 ${IF} 0 MENU NOTABMSG
;512 0 ${IF} 0 MENU PASSPROMPT
;512 0 ${IF} 0 MENU COLOR
;512 0 ${IF} 0 MENU MSGCOLOR
;;;Layout
;512 0 ${IF} 0 MENU WIDTH
;512 0 ${IF} 0 MENU MARGIN
;512 0 ${IF} 0 MENU PASSWORDMARGIN
;512 0 ${IF} 0 MENU ROWS
;512 0 ${IF} 0 MENU TABMSGROW
;512 0 ${IF} 0 MENU CMDLINEROW
;512 0 ${IF} 0 MENU ENDROW
;512 0 ${IF} 0 MENU PASSWORDROW
;512 0 ${IF} 0 MENU TIMEOUTROW
;512 0 ${IF} 0 MENU HELPMSGROW
;512 0 ${IF} 0 MENU HELPMSGENDROW
;512 0 ${IF} 0 MENU HIDDENROW
;512 0 ${IF} 0 MENU HSHIFT
;512 0 ${IF} 0 MENU VSHIFT
;
;512 0 ${IF} 0 MENU HELP
;Dual-Purpose Directives
512 0 ${OP} 0 APPEND
512 0 ${OP} 0 SYSAPPEND
512 0 ${OP} 0 IPAPPEND
;Kernel-Like Directives
512 0 ${OP} 0 KERNEL
512 0 ${OP} 0 LINUX
512 0 ${OP} 0 BOOT
512 0 ${OP} 0 BSS
512 0 ${OP} 0 COMBOOT
512 0 ${OP} 0 COM32
512 0 ${OP} 0 FDIMAGE
512 0 ${OP} 0 PXE
512 0 ${OP} 0 CONFIG
512 0 ${OP} 0 LOCALBOOT
;Label-Only Directives
512 0 ${OP} 0 INITRD
;Global Directives - Secondary
512 0 ${OP} 0 SERIAL
512 0 ${OP} 0 NOHALT
512 0 ${OP} 0 CONSOLE
512 0 ${OP} 0 SENDCOOKIES
512 0 ${OP} 0 PATH
512 0 ${OP} 0 TIMEOUT
512 0 ${OP} 0 TOTALTIMEOUT
512 0 ${OP} 0 ONTIMEOUT
512 0 ${OP} 0 ALLOWOPTIONS
512 0 ${OP} 0 IMPLICIT
512 0 ${OP} 0 NOCOMPLETE
512 0 ${OP} 0 NOESCAPE
512 0 ${OP} 0 ONERROR
512 0 ${OP} 0 PROMPT
512 0 ${OP} 0 KBDMAP
512 0 ${OP} 0 FONT
512 0 ${OP} 0 SAY
512 0 ${OP} 0 DISPLAY
512 0 ${IF} 0 F1
512 0 ${IF} 0 F2
512 0 ${IF} 0 F3
512 0 ${IF} 0 F4
512 0 ${IF} 0 F5
512 0 ${IF} 0 F6
512 0 ${IF} 0 F7
512 0 ${IF} 0 F8
512 0 ${IF} 0 F9
512 0 ${IF} 0 F10
512 0 ${IF} 0 F11
512 0 ${IF} 0 F12
;----------------------------------------------;
; CodeFold ;
;----------------------------------------------;
;Flags (sum of the members)
; 1 case sensitive.
; 2 force get fold name for function list from left at the fold start ("Folds:" section only).
; 4 force get fold name for function list from right at the fold start, including fold start ("Folds:" section only).
; 8 fold start ("Folds:" section) or skip start ("Skips:" section) located at line start.
; 16 fold start ("Folds:" section) or skip start ("Skips:" section) located at line end.
; 32 fold end ("Folds:" section) or skip end ("Skips:" section) located at line start.
; 64 fold end ("Folds:" section) or skip end ("Skips:" section) located at line end.
; 128 don't catch fold end ("Folds:" section) or skip end ("Skips:" section).
; 256 additional to 128 flag - more priority is given to sibling level instead of parent level ("Folds:" section only).
; 512 comment fold - fold ignore any other folds and skips inside ("Folds:" section only).
; 1024 reserved.
; 2048 deny fold - founded fold will be ignored ("Folds:" section only).
; 4096 xml fold - "<tag" and "</tag>", "<single" and "/>", "<single" and ">" ("Folds:" section only).
; 8192 don't check delimiters from left of fold start ("Folds:" section only).
; 16384 don't check delimiters from right of fold start ("Folds:" section only).
; 32768 don't check delimiters from left of fold end ("Folds:" section only).
; 65536 don't check delimiters from right of fold end ("Folds:" section only).
; 131072 deny delimiters ("Folds:" section only).
; 262144 don't show fold in list ("Folds:" section only).
; 1048576 regular expression in fold start ("Folds:" section) or skip start ("Skips:" section).
; 2097152 regular expression in fold end ("Folds:" section) or skip end ("Skips:" section).
FoldPanel:
;=================================================================================================================================================================================================================================================================================================================================================================================================================================================================
;PanelFirstBkColor PanelSecondBkColor PanelNormalFoldColor PanelActiveFoldColor PanelNormalNodeOpenBkColor PanelNormalNodeCloseBkColor PanelActiveNodeOpenBkColor PanelActiveNodeCloseBkColor PanelNormalNodeOpenSignColor PanelNormalNodeCloseSignColor PanelActiveNodeOpenSignColor PanelActiveNodeCloseSignColor
;=================================================================================================================================================================================================================================================================================================================================================================================================================================================================
${CodeFold_PanelFirstBkColor} ${CodeFold_PanelSecondBkColor} ${CodeFold_PanelNormalFoldColor} ${CodeFold_PanelActiveFoldColor} ${CodeFold_PanelNormalNodeOpenBkColor} ${CodeFold_PanelNormalNodeCloseBkColor} ${CodeFold_PanelActiveNodeOpenBkColor} ${CodeFold_PanelActiveNodeCloseBkColor} ${CodeFold_PanelNormalNodeOpenSignColor} ${CodeFold_PanelNormalNodeCloseSignColor} ${CodeFold_PanelActiveNodeOpenSignColor} ${CodeFold_PanelActiveNodeCloseSignColor}
FoldList:
;================================================
;ListTextColor ListBkColor
;================================================
${CodeFold_ListTextColor} ${CodeFold_ListBkColor}
TagMark:
;============================================================================================================
;TagMarkFlags TagMarkFontStyle TagMarkTextColor TagMarkBkColor
;============================================================================================================
${CodeFold_TagMarkFlags} ${CodeFold_TagMarkFontStyle} ${CodeFold_TagMarkTextColor} ${CodeFold_TagMarkBkColor}
Skips:
;=============================
;Flags Skip Skip Escape
; start end char
;=============================
1 `"` `"` ""
;9=1+8
9 "#" "" ""
Folds:
;===========================================================================
;Flags Font Color Color Fold Fold Deli Parent Rule Rule
; style text bkgrnd start end miters ID ID file
;===========================================================================
;300=4+8+32+256
300 0 0 0 "MENU BEGIN" "MENU END" "" 0 0
;4108=4+8+4096
4108 0 0 0 "MENU LABEL" " " "" 0 0
;262700=4+8+32+512+262144
262700 3 ${STR} 0 "TEXT HELP" "ENDTEXT" "" 0 0
; http://akelpad.sourceforge.net/forum/viewtopic.php?p=28773#28773
;2097664=512+2097152
;2097664 0 0 0 "LABEL" ".\n\n" "" 0 0
;----------------------------------------------;
; AutoComplete ;
;----------------------------------------------;
;Flags (sum of the members)
; 1 force case sensitive.
; 2 force case insensitive.
; 4 regular expression (only for "$="). Scan starts from caret line beginning and metacharacters \a or \z specified caret position.
; 8 Don't show in listbox.
CompleteList:
;=====================================================================================================================================================================================================================================================================================================================================================================================================================================================================
;ListFontStyle ListFontSize ListFaceName ListLineGap ListBlockIcon `"C:\1.dll", 0` ListBlockIconMargins "left;right" ListHlBaseIcon `"C:\1.dll", 0` ListHlBaseIconMargins "left;right" ListDocWordIcon `"C:\1.dll", 0` ListDocWordIconMargins "left;right" ListBasicTextColor ListBasicBkColor ListSelTextColor ListSelBkColor
;=====================================================================================================================================================================================================================================================================================================================================================================================================================================================================
${AutoComplete_ListFontStyle} ${AutoComplete_ListFontSize} ${AutoComplete_ListFaceName} ${AutoComplete_ListLineGap} ${AutoComplete_ListBlockIcon} ${AutoComplete_ListBlockIconMargins} ${AutoComplete_ListHlBaseIcon} ${AutoComplete_ListHlBaseIconMargins} ${AutoComplete_ListDocWordIcon} ${AutoComplete_ListDocWordIconMargins} ${AutoComplete_ListBasicTextColor} ${AutoComplete_ListBasicBkColor} ${AutoComplete_ListSelTextColor} ${AutoComplete_ListSelBkColor}
Blocks:
;=============================================================================
;Abbreviations and blocks
;
; $~abbr normal abbreviation.
; $(flags)~abbr normal abbreviation with flags.
; $=abbr exact abbreviation. May contain delimiters.
; $(flags)=abbr exact abbreviation with flags. May contain delimiters.
; $[] set caret to this position. Can be multiple (hot spots).
; $[text] select text. Can be multiple (hot spots).
; $$ symbol $.
; $\] escape symbol ]. Can be used in $[text] block: $[One [1$\] ].
; ${VAR} variable assigned from Coder::Settings.
; $; comment line.
;=============================================================================
$~MENU...BEGIN
MENU BEGIN $[tagname]
${AutoComplete_Indent}$[directive]
MENU END
$~MENU...END
MENU END
$~TEXT...HELP
TEXT HELP
$[help text]
ENDTEXT
$~MENU...LABEL
MENU LABEL $[label]
$~MENU...INDENT
MENU INDENT $[count]
$~MENU...SEPARATOR
MENU SEPARATOR
$~MENU...DISABLE
MENU DISABLE
$~MENU...HIDE
MENU HIDE
$~MENU...GOTO
MENU GOTO $[tagname]
$~MENU...EXIT
MENU EXIT $[tagname]
$~MENU...QUIT
MENU QUIT
$~MENU...START
MENU START
$~MENU...DEFAULT
MENU DEFAULT
$~MENU...INCLUDE
MENU INCLUDE $[filename]
$~MENU...INCLUDE
MENU INCLUDE $[filename] $[tagname]
$~MENU...PASSWD
MENU PASSWD $[passwd]
$~MENU...MASTER...PASSWD
MENU MASTER PASSWD $[passwd]
$~MENU...TITLE
MENU TITLE $[title]
$~MENU...HIDDEN
MENU HIDDEN
$~MENU...HIDDENKEY
MENU HIDDENKEY $[key] $[command]
$~MENU...SHIFTKEY
MENU SHIFTKEY
$~MENU...IMMEDIATE
MENU IMMEDIATE
$~MENU...CLEAR
MENU CLEAR
$~MENU...RESOLUTION
MENU RESOLUTION $[width] $[height]
$~MENU...BACKGROUND
MENU BACKGROUND $[background]
$~MENU...SAVE
MENU SAVE
$~MENU...NOSAVE
MENU NOSAVE
$~MENU...AUTOBOOT
MENU AUTOBOOT $[message]
$~MENU...TABMSG
MENU TABMSG $[message]
$~MENU...NOTABMSG
MENU NOTABMSG $[message]
$~MENU...PASSPROMPT
MENU PASSPROMPT $[message]
$~MENU...COLOR
MENU COLOR $[element] $[ansi] $[foreground] $[background] $[shadow]
$~MENU...MSGCOLOR
MENU MSGCOLOR $[fg_filter] $[bg_filter] $[shadow]
$~MENU...WIDTH
MENU WIDTH $[count]
$~MENU...MARGIN
MENU MARGIN $[count]
$~MENU...PASSWORDMARGIN
MENU PASSWORDMARGIN $[count]
$~MENU...ROWS
MENU ROWS $[count]
$~MENU...TABMSGROW
MENU TABMSGROW $[count]
$~MENU...CMDLINEROW
MENU CMDLINEROW $[count]
$~MENU...ENDROW
MENU ENDROW $[count]
$~MENU...PASSWORDROW
MENU PASSWORDROW $[count]
$~MENU...TIMEOUTROW
MENU TIMEOUTROW $[count]
$~MENU...HELPMSGROW
MENU HELPMSGROW $[count]
$~MENU...HELPMSGENDROW
MENU HELPMSGENDROW $[count]
$~MENU...HIDDENROW
MENU HIDDENROW $[count]
$~MENU...HSHIFT
MENU HSHIFT $[count]
$~MENU...VSHIFT
MENU VSHIFT $[count]
$~MENU...HELP
MENU HELP $[count]