-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathndn.hgl
2549 lines (2381 loc) · 103 KB
/
ndn.hgl
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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Google Earth Kml file
FILES *.kml
keywords1 description
KeyWords2 version
ColorKeyWords yes
CommentStart ;,:,#,//,
BracketPairs Region /Region
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
FILES LACmd.pas
RegKeyWords Color blue LAG5
RegKeyWords Color blue LAS5
RegKeyWords Color blue LAT5
RegKeyWords Color yellow LAC5
END
FILES *.xyz
KeyWords Color red/LIGHTRED ABC,
KeyWords Color GREEN/red DEF,
KeyWords Color BLUE/RED GHI,
KeyWords Color BLACK/red JKL,
KeyWords Color BLACK MNO
KeyWords Color Yellow PQR
END
FILES *.dl
KeyWords1 DIALOG
RegKeyWords Color Yellow ~[^~\x5c\x21]+~
StringFlags 32
CommentStart ;
Commentstring ;
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
;1S Config file
FILES 1CEStart.cfg
RegKeyWords2 \[.+\]
KeyWords3 CommonCfgLocation
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; 1Sv77 extended module / 1 踳く爬閧┘
FILES *.1s
Keywords3 祗��
keywords4 �ガ
keywords6
甄,�腑
甄,�ユ
甄,�ユ┴�,
甄,�,�,��,踳燿碎,
Commentstring //
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
;1S Config file
FILES *.v8i
KeyWords1 ref,srvr,ID
KeyWords2 Connect
KeyWords3 CommonInfoBases,External,App,
KeyWords4 WA
KeyWords6 AdditionalParameters
KeyWords7 OrderInList,Folder,OrderInTree
RegKeyWords1 \[.+\]
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; NDN Language/Dialog Files highlit / 瓷�瓷 爛痺珀�
FILES *.htx;*.dnl;*.dnr;
CommentStart ;
OptimalFill Off
KeyWords1 dialog,COMMAND,MenuLine,Button,MENU,StaticText,ITEM,StatusItem,MenuItem,Menubox,scrolldialog,
KeyWords2 topic,STATICTEXT
KeyWords3 RadioButtons,RadioButtonsE,CheckBoxes,CheckBoxesE,ColorGroup,ColorItem,SCROLLBAR,ListBox,ListBoxE,Label,
KeyWords3 MouseSCROLLBAR,IntInputLine,InputLine,CommonRect,DriveCheckBoxes,end,UpperTable,HEXLINE,ComboBox,BUTTON,CheckedComboBox,
KeyWords color blue ofFramed,bfDefault,ofSecurity,ofVScrollBar
KeyWords4 statusdef,HELPCTX,HISTORY
KeyWords5 ParamText,
KeyWords6 SubMenu,kbNoKey,SWITCHVIEW,MULTIDIALOG,SUBGROUP,selectback,SELECTFORWARD
KeyWords8 STATUSLINE,ColorDialog
; KeyWords8 label,helpctx,
RegKeyWords Color White hc[^\x2c]+
RegKeyWords Color Yellow/Green \x2etitle[^\x27]+
RegKeyWords Color Lightred [a-z]+=
RegKeyWords Color blue [-]+
RegKeyWords Color Lightcyan [-]+,[-]+
RegKeyWords Color Yellow dlg[^\x2c]+\x2c
RegKeyWords Color Yellow ~[^~\x5c\x21]*~
RegKeyWords Color Yellow [^co]kb[^\,]+
RegKeyWords2 \'[^~\,]+
RegKeyWords2 [^']+\'$
RegKeyWords1 cm[^\x2c']+,\x5e.
RegKeyWords color Green ^~,hs[a-z]+
; RegKeyWords Color Lightgreen \[[^\]]+\],\<[^\>]+\>
; RegKeyWords Color Yellow :[a-z]+
; RegKeyWords Color yellow/green \{([a-\x20]+)?
RegKeyWords1 [^{]+:_+
RegKeyWords2 \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\)
; RegKeyWords Color red \{()+:
RegKeyWords3 :+[a-z]+
; RegKeyWords Color Brown {,}
; RegKeyWords Color black p,H,o,a,c,x,e,K,T,3,M,
; GENERALFLAGS 8
CommentStart ;
Commentstring ;
BracketPairs RadioButtons;RadioButtonsE;CheckBoxes;CheckBoxesE;ComboBox;DIALOG;submenu;MENU;SUBGROUP;SWITCHVIEW;MULTIDIALOG;SUBGROUP;CheckBoxesE;DriveCheckBoxes;CheckedComboBox end ifdef;ifndef endif
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; NDN Syntax highlite / � �瓷�瓷 瓱№�� NDN
;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
FILES *.hgl
StringFLAGS 12
ColorKeyWords on
CommentStart ;
BracketPairs macro endmacro files end
KeyWords1 KeyWords1,RegKeyWords1,
KeyWords2 KeyWords2,RegKeyWords2,
KeyWords3 KeyWords3,RegKeyWords3,
KeyWords4 KeyWords4,RegKeyWords4,
KeyWords5 KeyWords5,RegKeyWords5,
KeyWords6 KeyWords6,RegKeyWords6,
KeyWords7 KeyWords7,RegKeyWords7,
KeyWords8 KeyWords8,RegKeyWords8,
KeyWords1 default,files,end,generalflags,stringflags
KeyWords1 octonumflags,octqnumflags,octbnumflags,leftmargin,
KeyWords1 rightmargin,paragraph
KeyWords1 binnumflags,hexnumflags,decnumflags,commentstart,ColorKeyWords
KeyWords1 comment,commentstring,KeyWords,MultiLineComment,
KeyWords1 regKeyWords,multilinestring,bracketpairs,optimalfill,tabsize
KeyWords1 LeftMargin,RightMargin,Paragraph,ForceNewlineAtEOF
KeyWords1 CommentStartPos
KeyWords1 IsOn,Color,bracketpairs
KeyWords2 On,Off,Yes,No,Autobrackets,Macro,Endmacro,
;warning: this commands are taken from edcom.dnr dated 22-Dec-2005
;some of them may not work in all versions
;end is not listed because it is keyword1 too
KeyWords3 AsciiTable,BlockDown,BlockEnd,BlockLeft,BlockPrint,BlockRead
KeyWords3 BlockRight,BlockStart,BlockUp,BlockWrite,BracketPair,CalcBlock
KeyWords3 CapBlock,CapString,CapWord,CaseBlock,CaseChar,CaseString
KeyWords3 CaseWord,Close,ContSearch,Copy,CopyBlock,Cut,DelBackChar
KeyWords3 DelBlock,DelChar,DelLine,DelToSOL,DelWordLeft,DelWordRight
KeyWords3 DeltoEOLN,Enter,ExecFile,FCenter,FJustify,FLeft,FRight
KeyWords3 FileEnd,FilePrint,FileStart,GotoLineNumber,
KeyWords3 HideBlock,Home,Redo,Replace
KeyWords3 IndentBlock,IndentOff,IndentOn,
KeyWords3 InsertOn,InsertTime,InsertVersion,LCenter,LJustify,LLeft
KeyWords3 LRight,LoadText,LowBlock,LowString,LowWord,MarkAll,MarkLine
KeyWords3 MarkWord,Menu,MoveBlock,MoveBlockEnd,MoveBlockStart,MoveDown
KeyWords3 MoveLeft,MoveRight,MoveUp,Paste,PgDn,PgUp,
KeyWords3 RevSearch,SaveText,SaveTextAs,ScreenBottom,ScreenTop,ScrollDn
KeyWords3 ScrollUp,SortBlock,SortBlockRev,StartSearch,SwitchBack
KeyWords3 SwitchBlock,SwitchDrawMode,SwitchFill,SwitchHiColumn
KeyWords3 SwitchHiLine,SwitchHighLight,SwitchIndent,SwitchIns,SwitchSave
KeyWords3 SwitchWrap,Tab,TabBack,UnIndentBlock,Undo,UpBlock,UpString
KeyWords3 UpWord,WindowsCopy,WindowsCut,WindowsPaste,WordCount,WordLeft
KeyWords3 WordRight,SwapLines,SwapWords,SwapWordsAlt
KeyWords4 Print,GotoXY,GotoX,GotoY,Mark,Goto,InsLine,InsertDate,InsertOff
RegKeyWords4 GotoMarker\d
RegKeyWords4 Play\d
RegKeyWords4 PlaceMarker\d,GoToMarker\d
KeyWords7 HIGHLIGHT,H_LINE,H_ROW,H_COLUMN,AUTOWRAP,WRAPJUSTIFY,FORCECRLF,FORCECR,FORCELF,
KeyWords Color Brown Leftmargin,Rightmargin,Paragraph,Default,optimalfill,tabsize
KeyWords Color Brown Octonumflags,Octqnumflags,Octbnumflags,Generalflags,Stringflags,
KeyWords Color Brown Binnumflags,Hexnumflags,Decnumflags,Octnumflags,
KeyWords Color LightCyan MultiLineComment,Comment,CommentString,CommentStart,MultiLineString,
RegKeyWords Color Yellow ((Color)|(Reg))?KeyWord(s)?
Macro 1
GoToX 0
InsLine
Print ';様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様'^M^S
Print ';'^M^S
Print ';様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様'^M^S
Print ^X^E^E^D^D
EndMacro
Macro 2
Print #1'FILES'#32'*.'#6^M^M'END'^M#5
End
Print #1#5#9
EndMacro
Macro 3
Print #1'Macro'#32#6^M^M'EndMacro'^M#5
End
Print #1#5#9
EndMacro
END
;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
; Necromancer's Dos Navigator configuration files / config for all arhives NDN
FILES archiver.ini
CommentStart ;
GeneralFLAGS 14
KeyWords3 UseLFN
KeyWords7 ListChar
RegKeyWords Color LightGreen \[[^\]]+\]
RegKeyWords Color LightCyan (Un)?Packer
; RegKeyWords color lightred ^\w[^=]*(?==)
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Necromancer Dos Navigator configuration / �� �め▲皖 ��� NDN
FILES hgroups.ini
; RegKeywords color red ^\[group #\d\d?\]
KeyWords1 IsDir,Index,Mask,Group,UseDefaultBG,
KeyWords Color BLACK/BLACK Color=0
KeyWords Color BLUE/BLACK Color=1
KeyWords Color GREEN/BLACK Color=2
KeyWords Color CYAN/BLACK Color=3
KeyWords Color RED/BLACK Color=4
KeyWords Color MAGENTA/BLACK Color=5
KeyWords Color BROWN/BLACK Color=6
KeyWords Color LIGHTGRAY/BLACK Color=7
KeyWords Color DARKGRAY/BLACK Color=8
KeyWords Color LIGHTBLUE/BLACK Color=9
KeyWords Color LIGHTGREEN/BLACK Color=10
KeyWords Color LIGHTCYAN/BLACK Color=11
KeyWords Color LIGHTRED/BLACK Color=12
KeyWords Color LIGHTMAGENTA/BLACK Color=13
KeyWords Color YELLOW/BLACK Color=14
KeyWords Color WHITE/BLACK Color=15
KeyWords Color BLACK/BLUE Color=16
KeyWords Color BLUE Color=17
KeyWords Color GREEN/BLUE Color=18
KeyWords Color CYAN/BLUE Color=19
KeyWords Color RED/BLUE Color=20
KeyWords Color MAGENTA/BLUE Color=21
KeyWords Color BROWN/BLUE Color=22
KeyWords Color LIGHTGRAY/BLUE Color=23
KeyWords Color DARKGRAY/BLUE Color=24
KeyWords Color LIGHTBLUE/BLUE Color=25
KeyWords Color LIGHTGREEN/BLUE Color=26
KeyWords Color LIGHTCYAN/BLUE Color=27
KeyWords Color LIGHTRED/BLUE Color=28
KeyWords Color LIGHTMAGENTA/BLUE Color=29
KeyWords Color YELLOW/BLUE Color=30
KeyWords Color WHITE/BLUE Color=31
KeyWords Color BLACK/GREEN Color=32
KeyWords Color RED/GREEN Color=36
KeyWords Color LightGreen/Green Color=42
KeyWords Color LightCyan/Green Color=43
KeyWords Color Darkgray/Red Color=64
KeyWords Color White/RED Color=79
KeyWords Color Cyan/Magenta Color=83
KeyWords Color LightGreen/Magenta Color=90
KeyWords Color black/brown Color=96
KeyWords Color lightgreen/brown Color=106
KeyWords Color Black/DARKGRAY Color=128
KeyWords Color BLUE/DARKGRAY Color=129
KeyWords Color Green/DARKGRAY Color=130
KeyWords Color CYAN/DARKGRAY Color=131
KeyWords Color RED/DARKGRAY Color=132
KeyWords Color Magenta/DARKGRAY Color=133
KeyWords Color Brown/DARKGRAY Color=134
KeyWords Color lightgray/DARKGRAY Color=135
KeyWords Color DARKGRAY/lightgray Color=136
KeyWords Color LIGHTBLUE/DARKGRAY Color=137
KeyWords Color LIGHTGREEN/DARKGRAY Color=138
KeyWords Color Lightcyan/DARKGRAY Color=139
KeyWords Color Lightred/DARKGRAY Color=140
KeyWords Color LIGHTMAGENTA/DARKGRAY Color=141
KeyWords Color YELLOW/DARKGRAY Color=142
KeyWords Color WHITE/DARKGRAY Color=143
KeyWords Color BLACK/lightblue Color=144
KeyWords Color BLUE/lightblue Color=145
KeyWords Color GREEN/lightblue Color=146
KeyWords Color CYAN/lightblue Color=147
KeyWords Color RED/lightblue Color=148
KeyWords Color MAGENTA/lightblue Color=149
KeyWords Color BROWN/lightblue Color=150
KeyWords Color LIGHTGRAY/lightblue Color=151
KeyWords Color DARKGRAY/lightblue Color=152
KeyWords Color LIGHTBLUE/lightblue Color=153
KeyWords Color LIGHTGREEN/lightblue Color=154
KeyWords Color LIGHTCYAN/lightblue Color=155
KeyWords Color LIGHTRED/lightblue Color=156
KeyWords Color LIGHTMAGENTA/lightblue Color=157
KeyWords Color YELLOW/lightblue Color=158
KeyWords Color WHITE/lightblue Color=159
KeyWords Color BLACK/LIGHTGREEN Color=160
KeyWords Color BLACK/LIGHTRED Color=192
KeyWords Color RED/LIGHTRED Color=196
KeyWords Color white/lightred Color=207
KeyWords Color LIGHTCYAN/LIGHTMAGENTA Color=219
KeyWords Color BROWN/YELLOW Color=230
Commentstart ;
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
;Necromancer Dos Navigator configuration
FILES ftp.ini
CommentStart ;
GeneralFlags 14
RegKeyWords color white ftp://
RegKeyWords color lightgreen \[\d+\,\d+\,\d+\,\d+\]
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
;Necromancer Dos Navigator configuration
FILES ndn.spf
CommentStart ;
RegKeyWords color white ;\s1*(\+|\*)?,^\s*(\+|\*)
RegKeyWords color red ^\s*\[[^\[\]\\/\*\:\?\"\<\>\.]+\]
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Necromancer Dos Navigator configuration FILES
FILES *.ext;*.mnu
SwitchHighLight On
CommentStart ;,rem
commentstring rem
KeyWords1 md,cd,copy,del,delete,deldir,deltree,start,@start,attrib,
KeyWords1 echo,echo.,@echo,off,cls,include,high,umb,choice,@choice
KeyWords1 prompt,path,bat,country,devicehigh,
KeyWords2 echo,@echo,menufile,!,$,!.!,$.$
KeyWords2 dos,set,lh,config,menudefault,menuColor,numlock,lastdrive,sys,
KeyWords2 break,cd,del,rename,if,exist,call,buffers,FILES,errorlevel,
KeyWords8 F1,F2,F3,F4,F5,F6,F7,F8,F9,F10
KeyWords3 pause
;regkeywords4
RegKeywords color green !\\
RegKeywords color green !~\\
RegKeywords color green \$\\
RegKeywords color green \$~\\
RegKeywords color green ~!,\.!~,\.!,!/,!~/,!:,!
RegKeywords color green ~\$,\.\$~,\.\$,\$/,\$~/,\$:,\$
RegKeyWords Color lightgreen %\d
RegKeyWords Color yellow ~[^~\x5c\x21]+~
RegKeyWords Color lightred >\d+
; RegKeyWords Color lightgreen \[[^\]]+\],
RegKeyWords Color lightcyan (@.+[^}])
RegKeyWords Color Lightgreen \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\),\{[^\x5E\}\{\x22\x27\x3D]+\}
; RegKeyWords Color lightcyan (\[|[a-z]*\x2E(exe|com)|\]),(@[a-z]*\x20)
; RegKeyWords Color lightcyan ((\x20|\[?)+([a-z]+)(\.(exe|com)+\]?)),(@.+)
; RegKeyWords2 ~[a-z]~
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
;NDN Initialization file / � ┃����罔 NDN
FILES ndn.ini;
RegKeyWords Color Lightgreen \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\),\{[^\x5E\}\{\x22\x27\x3D]+\}
RegKeyWords Color lightmagenta QuickDir\d
; RegKeyWords Color lightcyan \d
RegKeyWords Color yellow DiskCols.,\x7c,
RegKeyWords Color lightgreen ArchCols.
RegKeyWords Color green FindCols.
RegKeyWords Color white TempCols.,TrayOptions
RegKeyWords Color lightcyan ProcCols.
KeyWords Color lightcyan SecurityChar
KeyWords Color lightred Warning,Custom,DontStartWarning
KeyWords Color green Descriptions,DirInfo
KeyWords Color blue SystemMenuChar,WinExplodeDelay
KeyWords Color yellow TagChar
KeyWords Color lightmagenta QuickDirs,AutoBrackets
KeyWords Color BLACK ShadowX,ShadowY
GeneralFLAGS 14
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
FILES ndn.vwr;ndn.edt
CommentStart ;
;RegKeyWords comment
RegKeyWords color cyan ^\s*;.*$
;RegKeyWords1
RegKeyWords color white :
;RegKeyWords2
RegKeyWords color red ^\s*[^\]\[\\/\*\:\?\"\<\>\.]+(?=:)
;RegKeyWords4
RegKeyWords color green !\\
RegKeyWords color green !~\\
RegKeyWords color green \$\\
RegKeyWords color green \$~\\
RegKeyWords color green ~!,\.!~,\.!,!/,!~/,!:,!
RegKeyWords color green ~\$,\.\$~,\.\$,\$/,\$~/,\$:,\$
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
FILES ndn.qdr
CommentStart ;
RegKeyWords color comment ^\s*;.*$
RegKeyWords color lightred [-]
RegKeyWords color lightgreen [*?]
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; XML
FILES *.XML;*.bdsproj;*.vlp;<<?xml>
GeneralFlags 1
StringFlags 160
Keywords1 xml,version,encoding,standalone
Keywords2 no,yes,DOCTYPE,ELEMENT,ATTLIST
Comment <!-- -->
MultiLineComment 1
RegKeyWords color lightred <[^/][^> ]+
RegKeyWords color lightred </[^> ]+>
RegKeyWords color red ="000"
Macro 1
GoToX 0
InsLine
Print '<?xml version="1.0" encoding="UTF-8"?>'^M
Print '<>'^M^M
Print '</>'
Home
Print ^E^E^D
EndMacro
END
;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
; V+
FILES *.V2
AutoBrackets Off
MultiLineComment 0
CommentString ;
GeneralFLAGS 64
StringFLAGS 32
Keywords1 auto,global,local,.program,if,not,define,.end,end,then,else
Keywords1 .doubles,.locations,.strings,.reals
Keywords2 call,type,abs,do,exit,for,to,until,case,value,of,true,false,any
Keywords2 and,or,return,while,enable,disable,attach,detach,$encode,getc
Keywords2 $mid,len,abort,execute,fopen,fclose,fcmnd,read,write,$chr,sig
Keywords2 tool,break,close,closei,move,moves,departs,below,ready,iostat
Keywords2 goto,strdif,val,wait,min,max,open,openi,trans,mod,fset,gpanel
Keywords2 gcolor,gtype,getevent,garc,gflood,gtexture,fdelete,speed,decompose
Keywords2 here,prompt,ignore,set,calibrate,react,dos,reacte,bits,accel,drive
BracketPairs program;case;if;for end until;while do
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Batch FILES
FILES config.sys;*.bat;*.col;*.cmd;*.sh;*.d
CommentStart ;
CommentString #
BracketPairs if fi case esac do done
;RegKeyWords comment
RegKeyWords color cyan ^\s*(rem|;).*$
;RegKeyWords1
RegKeyWords color white ^\s*(accdate|break|country|dos(data)?|drivparam|lastdrive|logo|numlock|multitrack|shell|switches)\s*(?==)
RegKeyWords color white ^\s*(buffers|fcbs|files|install|stacks)(high)?\s*(?==)
RegKeyWords color white ^\s*device(high)?(?=.*=)
RegKeyWords color white ^\s*set(?=\s*\D.*=)
RegKeyWords color white [\-\._a-z0-9]+\(
KeyWords2 on,off,high,low,umb,noumb,auto,noauto
;menu commands
;RegKeyWords1
RegKeyWords color white ^\s*(menuitem|menucolor|menudefault|submenu|include)\s*(?==)
;RegKeyWords3
RegKeyWords color red ^\s*\[\s*(menu|common)\s*\]
;RegKeyWords2
RegKeyWords color lightgreen ^\s*\[[^\[\]]+\]
;NT extensions
;RegKeyWords1
RegKeyWords color white ^\s*(echoconfig|ntcmdpropt|dosonly|emm\s*(?==))
RegKeyWords color lightgreen \${[^\x20]+}
RegKeyWords color lightred \$[^\x20]+
KeyWords1 copy,echo,echo.,@echo,cls,include,xcopy,robocopy
KeyWords1 prompt,path,bat,com,exe,
KeyWords1 z,device,devicehight,tmp,temp,md,
KeyWords1 himem,mode,not,shift,comspec,cmdline,blaster,winbootdir,windir,
KeyWords1 Start,function
KeyWords2 %1,%2,%3,%4,%5,%6,%7,%8,%9,%10,:,goto,hight,
KeyWords2 dos,set,lh,config,menudefault,menuColor,numlock,lastdrive,sys,
KeyWords2 break,cd,rename,if,exist,call,buffers,FILES,errorlevel,fi,for,while,in,else,case,esac,then,elif,
KeyWords3 pause,@pause,chkerrorlevel,sudo,title,localhost
KeyWords4 do,done,taskkill,subst,icacls,net,ping,ls,run,find,reg
KeyWords6 exit,chmod,rm,unshare,cat,file,grep,umask,mv,sed,mkfs,exec,iconv,read,del,move
KeyWords6 daemon,killproc,wget,curl,mkdir,install,snap,make,cmake,erase
keywords6 shutdown,reboot,
keywords7 ALLUSERSPROFILE,APPDATA,ClusterLog,CommonProgramFiles,COMPUTERNAME,ComSpec,FP_NO_HOST_CHECK,HOMEDRIVE,HOMEPATH,LOGONSERVER,NUMBER_OF_PROCESSORS,OS,Path,PATHEXT,PROCESSOR_ARCHITECTURE,
keywords7 PROCESSOR_IDENTIFIER,PROCESSOR_LEVEL,PROCESSOR_REVISION,ProgramFiles,PROMPT,SBSSERVER,SESSIONNAME,SystemDrive,SystemRoot,TEMP,TMP,USERDNSDOMAIN,USERDOMAIN,USERNAME,USERPROFILE,windir,
KeyWords5 yum,dpkg,apt,apt-get
RegKeyWords color lightcyan \$\{([a-z0-9])+\}
RegKeyWords Color green >.*
CommentString REM , ::
KeyWords Color LightRed %COMSPEC%,%TEMP%,%winbootdir%,%windir%,nul,c:\win;
KeyWords Color BLUE protshell,ifs=,priority_disk_io,devinfo,libpath,basedev
KeyWords Color BLUE memman,os2_shell,dpath,keys,codepage
RegKeyWords Color LightCyan [^\x20=\;\,]*:*\x5c
RegKeyWords Color LightCyan [a-z_\d\-]+\.(exe|com|bat|deb)
RegKeyWords Color black/red \x7c
RegKeyWords Color Yellow -[A-Z]*\x20
KeyWords color Yellow server,sbserver,tsa,tsc,tsm,
; Comment [ ]
commentstart ;
RegKeyWords Color white/green ^((\x20)+)?\:[^\x20\x3a\/]+$
RegKeyWords Color Lightcyan (http|ftp)[a-z]?:[^\x20:>"]+,www\.[^\x20]+,[a-z_\d]+@[a-z_\d]+\x2e[a-z\d]+
RegKeyWords Color black \[[^\[]*30m
RegKeyWords Color LightRed \[[^\[]*31m
RegKeyWords Color Green \[[^\[]*32m
RegKeyWords Color Yellow \[[^\[]*33m
RegKeyWords Color LightBlue \[[^\[]*34m
RegKeyWords Color LightMagenta \[[^\[]*35m
RegKeyWords Color LightCyan \[[^\[]*36m
RegKeyWords Color White \[[^\[]*37m,\[[^\[]*1m
RegKeyWords Color Lightgray/black \[[^\[]*40m
RegKeyWords Color Lightgray/red \[[^\[]*41m
RegKeyWords Color Lightgray/green \[[^\[]*42m
RegKeyWords Color Lightgray/brown \[[^\[]*43m
RegKeyWords Color Lightgray/blue \[[^\[]*44m
RegKeyWords Color Lightgray/magenta \[[^\[]*45m
RegKeyWords Color Lightgray/cyan \[[^\[]*46m
RegKeyWords Color black \
RegKeyWords Color Brown [_a--\d*]+\x2e\*?(ldf)(\x20|\;|\,|$)+
Macro 0
insline
Print 'Start \\%USERNAME%\'
End
EndMacro
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Windows desktop File
FILES desktop.ini
KeyWords1 file://Folder.htt,
KeyWords2 Clsid,UICLSID,InfoTip,Default,Logo,WideLogo,
KeyWords2 ConfirmFileOp,cdfurl,Icon,Type,Order,
KeyWords2 Zoom,Sort,Direct,Color,PatternId,MenuName,ToolTipText,
KeyWords2 HelpText,Attributes,IconIndex,Solid,Width,WebViewTemplate,NT5,
KeyWords Color cyan HTMLInfoTipFile
RegKeyWords Color lightgreen Owner,Personal[^=]*,BuyURL,PersistMoniker(Preview)?
RegKeyWords Color White \[[^\]]+\]
RegKeyWords Color lightBLUE Icon[^=]*
RegKeyWords Color lightmagenta LocalizedResourceName,
RegKeyWords Color yellow .*\.lnk
RegKeyWords Color yellow \<[^\>]+\>
end
;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
; FORTRAN !does not support tabs in files -> fixed format!
FILES *.F;*.FPP;*.FTN;*.FOR;*.I;*.F90;*.I90;*.F66;*.F77
GeneralFLAGS 80
StringFlags 192
CommentStart c,C,*
Keywords1 function,parameter,data,program
Keywords2 true,false,not,and,or,eqv,neqv,lt,le,eq,ge,gt,ne
Keywords2 if,goto,then,endif,elseif,else,do,continue,dowhile,enddo,cycle
Keywords2 exit,return,end,mod,pause,print,read,stop
Keywords3 integer,real,double precision,complex,logical,character,record
Keywords3 structure,dimension,
END
;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
; PERL files: GENERALFLAGS = case sensitive + C numbers
FILES *.PL, *.PM, *.SUB;*.MU;
GeneralFlags 81
StringFlags 131
MultilineComment 1
CommentStart #
Comment __END__ a_unique_string_because_there_is_no_end_of_such_comment
Keywords1 cmp,eq,gt,lt,ne,and,not,or,xor
Keywords1 continue,do,else,elsif,for,foreach,goto,if,last,next,return,
Keywords1 unless,until,while
Keywords1 package,sub,require,use,x,local,my,our
Keywords2 __LINE__, __FILE__
Keywords2 abs,atan2,cos,exp,int,log,rand,sin,sqrt,srand,wantarray
Keywords2 pop, push, shift, splice, unshift, delete, each, exists, keys,
Keywords2 grep,join,map,reverse,sort,values,defined,scalar,ref,undef
Keywords2 seek, sysread, sysseek, syswrite, tell, truncate,
Keywords2 binmode, close, eof, fileno, flock, open, rename, select, unlink, utime
Keywords2 eval,exit,die, glob, read, readline, print, printf, warn
Keywords2 alarm,sleep,pos,quotemeta,split,
Keywords2 chomp,chop,index,lc,length,sprintf,substr,uc
Keywords2 localtime,gmtime,time,pack,unpack,vec,chr,ord,hex,ord
Keywords3 $_,@_,$!
KeyWords6 sudo
KeyWords8 yum,dpkg,apt
RegKeywords COLOR Blue \$\d+
RegKeywords COLOR Yellow \$([a-zA-Z][_a-zA-Z\d]*|_[_a-zA-Z\d]+)
RegKeywords COLOR LightMagenta @([a-zA-Z][_a-zA-Z\d]*|_[_a-zA-Z\d]+)
RegKeywords COLOR LightCyan [_a-zA-Z\d]+ *(?==>)
Macro 1
Print '#! perl -w'^M'use strict;'^M^M
EndMacro
Macro 2
Print 'while (<>) {'^M^M'}'^M#5#5' '
EndMacro
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Resurce file
FILES *.rc
KeyWords1 menuitem,
KeyWords2 separator,popup,
Commentstart #
Commentstring #
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; TempFiles
FILES *.tmp
KeyWords1 DAMPRO,NAME,VERSION,SIZE,CHECK,DATE(MDY),TIME(HMS),ATTRIB
KeyWords1 UC2-REVISION,SERIAL
KeyWords2 FILE,LIST,[\],END,SPEC-SECTION
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Cubic Player Config File
FILES cp.ini
RegKeyWords Color white \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\),\{[^\x5E\}\{\x22\x27\x3D]+\}
KeyWords2 filetype
CommentStart ;
Commentstring //
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; HTML Documents
FILES *.htm?;*.asx;*.htt;*.htm
KeyWords1 a,abbr,acronym,address,applet,area,b,base,basefont,bdo,big,blockquote,body
KeyWords1 br,button,caption,center,cite,code,col,colgroup,dd,del,dfn,dir,div,dl,dt,em
KeyWords1 fieldset,font,form,head,hr,html,i,
KeyWords1 input,ins,isindex,kbd,label,legend,li,link,map,menu,meta,noscript
KeyWords1 object,ol,optgroup,option,p,pre,q,s,samp,script,select,small,strike
KeyWords1 strong,style,sub,sup,table,tbody,td,textarea,tfoot,th,thead,title,tr,tt,u,ul
KeyWords1 middle,right,left,top,
KeyWords2 abbr,accept,accept-charset,accesskey,action,align,alink,alt,archive,axis
KeyWords2 background,bgColor,border,cellpadding,cellspacing,char,charoff,charset
KeyWords2 checked,cite,clear,code,codebase,codetype,Color,cols,colspan,borderColor,
KeyWords2 compact,content,coords,data,datetime,declare,defer,dir,disabled,enctype
KeyWords2 face,for,headers,height,href,hreflang,hspace,http-equiv,name
KeyWords2 id,ismap,label,lang,language,link,longdesc,marginheight,marginwidth,maxlength
KeyWords2 media,method,multiple,noresize,noshade,nowrap,object,onblur,onchange
KeyWords2 onclick,ondblclick,onfocus,onkeydown,onkeypress,onkeyup,onload,onmousedown
KeyWords2 onmousemove,onmouseout,onmouseover,onmouseup,onreset,onselect,onsubmit,onunload
KeyWords2 onunload,profile,prompt,readonly,readonly,rel,rev,rows,rows,rowspan,rules
KeyWords2 scheme,scope,selected,shape,size,span,src,standby,start,style
KeyWords2 summary,tabindex,target,text,title,type,usemap,valign,value,valuetype,version
KeyWords2 vlink,vspace,width,param,celpadding
KeyWords3 topMargin,leftMargin,rightMargin,event,
KeyWords4 _top,_self,oncontextmenu,oncopy,onselectstart
KeyWords4 javascript,screen,Math,document,navigator,window
KeyWords1 scrollbars,scrolling,scroll,
KeyWords6 hotlog_js,hotlog_r,hotlog_s
KeyWords7 write,random,escape,location,referrer,navigator,javaEnabled,
KeyWords7 pixelDepth,colorDepth, ,
KeyWords7 appName,substring,cookie,userAgent,indexOf,appVersion,<i>,</i>
keywords8 submit,<b>,</b>,
KeyWords Color blue img,imagedata
KeyWords Color yellow var,function,else,return,if,
KeyWords Color LightMagenta open,close,writeln,
KeyWords Color lightred quot,name=,hidden,
RegKeyWords Color Brown class[a-z]*,
RegKeyWords Color lightcyan [a-z]*frame[a-z]*
; RegKeyWords Color lightcyan [^\x2-0-z]*\x28
RegKeyWords Color lightgreen margin[a-z]+,h\d,
RegKeyWords Color Lightcyan (http|ftp)[a-z]?:[^\x20:>"]+,www\.[^\x20]+,[a-z_\d]+@[a-z_\d]+\x2e[a-z\d]+
ColorKeyWords yes
Commentstring //
Commentstart //
Comment <! >
MultiLineComment 200
BracketPairs <td> </td>
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; JavaScript files / java source / JScript(Windows Script Host)
FILES *.js;*.jav?
KeyWords1 language,if,else,var,function,return
KeyWords1 import,new,submit,
KeyWords1 void,class
Keywords1 break,const,continue,super,final
Keywords1 goto,,ret,sizeof,static,switch,abstract,private
Keywords1 auto,typedef,catch,extends,
Keywords1 exception,throws,throw,finally,
KeyWords2 prompt,window,alert,null,location,{window,{,},for,
KeyWords2 open,close,document,target,write,writeln,SaveToFile,
KeyWords2 onmousedown,captureevents,click,event,layers,
KeyWords2 button,mousedown,true,false,which,default,
KeyWords3 public,eof,length,case,isExists,fileSize,println,
KeyWords3 fromCharCode,toString,regexp
Keywords4 long,short,signed,double,float,union,
Keywords4 unsigned,struct,,StringBuffer
Keywords4 FileInputStream,FileOutputStream,InputStreamReader,OutputStreamReader
KeyWords4 String,Image,List,FileConnection,int,boolean,InputStream,DataInputStream,
KeyWords4 char,byte,Display,callback,
KeyWords5 substring,substr,
KeyWords7 Command,Version,
KeyWords8 System,protected,in,.out,err,interface,implements
KeyWords color Magenta package
KeyWords color LightRed try,while,do,
//JScript
Keywords1 Popup,Echo,WScript,
KeyWords2 GetDrive,FolderExists,CreateFolder,FileExists,CreateTextFile,GetFile,FileSystem,GetFolder,
KeyWords6 CreateObject,Attributes,Run,type
KeyWords color Red RegWrite,RegDelete
AutoBrackets Off
MultiLineComment 10
commentstring <!,//,
Commentstart //,<!,
Comment <!- -!>,/* */
; GeneralFLAGS 465
StringFLAGS 3
ColorKeyWords yes
Macro 1
GoToX 0
InsLine
Print '/*****************************************************************'^M^S
Print ' *'^M^S
Print ' *'^M^S
Print ' *'^M^S
Print ' *****************************************************************/'^M^S
Print ^X^E^E^E^E^D^D^D
EndMacro
Macro 2
GotoX 0
InsLine
Print '/*'^M^S
Print ' *'^M^S
Print ' */'^M^S
Print ^X^E^G^E^E^D^D^D
EndMacro
END
;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
; C# files (C Sharp)
;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
FILES *.CS
AutoBrackets On
MultiLineComment 1
CommentString //
Comment /* */
GeneralFLAGS 465
StringFLAGS 3
OptimalFill Off
; TabSize 4
KeyWords1 break,case,const,continue,default,do,else,new,namespace
KeyWords1 for,goto,if,return,sizeof,static,switch,abstract,private
KeyWords1 void,while,public,try,catch,protected,as,base,checked,unchecked
KeyWords1 using,throw,finally,System,Console,interface,delegate,explicit
KeyWords1 extern,fixed,foreach,implicit,internal,is,lock,object,operator
KeyWords1 out,override,params,readonly,ref,sealed,stackalloc,typeof
KeyWords1 unchecked,unsafe,virtual,volatile
KeyWords2 byte,char,int,long,short,string,double,float,bool,uint,ulong,ushort
KeyWords2 struct,class,true,false,this,null,decimal,enum,event,sbyte
ColorKeyWords on
Macro 1
GoToX 0
InsLine
Print '/*****************************************************************'^M^S
Print ' *'^M^S
Print ' *'^M^S
Print ' *'^M^S
Print ' *****************************************************************/'^M^S
Print ^X^E^E^E^E^D^D^D
EndMacro
Macro 2
GotoX 0
InsLine
Print '/*'^M^S
Print ' *'^M^S
Print ' */'^M^S
Print ^X^E^G^E^E^D^D^D
EndMacro
Macro 3
GotoX 0
Print 'using System;'^M^M
Print 'public class main'^M'{'^M^M
Print ' static void Main()'^M'{'^M^M'}'^M
GotoX 0
Print '}'^M
Print ^E^E^E^D^D^D^D^D^D^D^D
EndMacro
Macro 4
GoToX 0
Print '/*******************************************************************************/'^M^S
Print '/*---- ------------------------------------------------------------------------*/'^M^S
Print '/*******************************************************************************/'^M^S
Print ^E^E^D^D^D^D^D^D^D
SwitchIns
EndMacro
Macro 5
GoToX 0
Print '/* --------------------------------------- */'^M^S
Print '/* */'^M^S
Print '/* --------------------------------------- */'^M^S
Print ^E^E^D^D^D
EndMacro
END
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Style doc
FILES *.css
KeyWords1 <style>,</style>,none,bold,gold,fuchsia,rgb
KeyWords1 arial,
KeyWords2 hover,Color,text-decoration,font-size,font-family,font-weight,A
Keywords1 A,BODY,DIV,EM,H1,H2,H3,HTML,P
Keywords2 link,visited,active,first-line,first-letter
Keywords3 font-family,font-style,font-weight,font-variant,font
Keywords4 bold,bolder,lighter,
Keywords4 italic,small-caps
Keywords4 xx-small,x-small,small,medium,large,x-large,xx-large,larger,smaller
Keywords4 normal,none,url
Keywords3 word-spacing,letter-spacing,text-decoration
Keywords4 underline,overline,line-through,blink
Keywords3 color,background-color,background,background-image,background-attachment,background-repeat,background-position
Keywords4 transparent,rgb
Keywords3 vertical-align
Keywords4 baseline,sub,super,top,text-top,middle,bottom,text-bottom,top,bottom
Keywords3 text-transform
Keywords4 capitalize,uppercase,lowercase
Keywords3 text-align
Keywords4 left,right,center,justify
Keywords3 text-indent,line-height
Keywords3 margin-top,margin-right,margin-bottom,margin-left,margin
Keywords3 padding-top,padding-right,padding-bottom,padding-left,,padding
Keywords3 border-top-width,border-right-width,border-bottom-width,border-left-width,border-width
Keywords4 thin,medium,thick
Keywords3 border-color
Keywords3 border-style
KeyWords COLOR lightcyan aqua
KeyWords COLOR lightmagenta fuchsia
KeyWords COLOR lightgreen lime
KeyWords COLOR red maroon
KeyWords COLOR blue navy
KeyWords COLOR brown olive
KeyWords COLOR magenta purple
KeyWords COLOR lightgray silver
KeyWords COLOR cyan teal
ColorKeywords yes
commentstring <!
Commentstart //,<!
Comment <! !>
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
FILES *.rnx
KeyWords2 var.presets,url
commentstring <!
Commentstart //,<!
Comment <! !>
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
FILES *.ISP;*.OBE;*.DUN
KeyWords Color lightmagenta Password,Name
RegKeyWords Color Lightgreen \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\),\{[^\x5E\}\{\x22\x27\x3D]+\}
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
FILES *.dsn
RegKeyWords Color White [a-z]*\=
RegKeyWords Color Lightgreen \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\),\{[^\x5E\}\{\x22\x27\x3D]+\}
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Windows ini file
FILES win.ini
KeyWords Color LightMagenta pwl,source_disk_path
KeyWords Color Lightred load=,run=,programs,norun,
KeyWords Color lightblue Wallpaper,TileWallpaper,Pattern,
KeyWords Color LightCyan Beep,NullPort,
KeyWords Color Yellow defaultempty,defaultfull,device
RegKeyWords Color White (\x20[a-z]*=)
RegKeyWords Color lightgreen \[[^\]]+\]
RegKeyWords Color LightCyan \dx[\d|a-e]*
commentstart ;
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Windows system file
FILES system.ini
RegKeyWords Color Lightgreen \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\),\{[^\x5E\}\{\x22\x27\x3D]+\}
KeyWords Color LightMagenta shell,USER=,pwl,
KeyWords Color LightBlue SCRNSAVE.EXE
KeyWords Color white/lightred MinPagingFileSize,MaxPagingFileSize
RegKeyWords Color lightcyan .:\x5c.+
RegKeyWords Color white .+\=
commentstart ;
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; Autorun / ≒��瓷 ���-え瓷� ( ⑤ 皰��)
FILES autorun.inf
RegKeyWords Color Lightred \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\),\{[^\x5E\}\{\x22\x27\x3D]+\}
RegKeyWords Color lightred autorun,Product,Buttons,Bitmaps,general,autorun,alpha,
RegKeyWords Color lightred CdAuto,noflag,Flag,Files,Vendor,Custom,
KeyWords2 icon,open,shell,readit,command,name,name2,Version,Dialog,Default,
KeyWords2 Title,RegistryKey,WaveFile,SetupProgram,NoProcessCaption,NoProcessTextLine1,NoProcessTextLine2,
KeyWords2 LabelFont,TextFont,Charset,SelectedTextColor,UnSelectedTextColor,
KeyWords2 SetupLabel,SetupText,CancelLabel,CancelText,16Color,256Color,
KeyWords2 PathKey,DirectoryKey,ProgramClass,Setup,SetupKey,SmallFont,defaulticon,
KeyWords6 shellexecute,Action,
KeyWords8 UseAutoPlay
RegKeyWords Color yellow label
commentstart ;
end
;様様様様様様様様様様様様様様様様様様様様様様陳陳陳陳陳陳陳陳陳陳陳陳陳陳陳
; DSS configuration FILES
FILES dss.ini
KeyWords1 Version=,Random=,Loop=,Normalize=,Frequency=,SampleBits=,Channels=,TMV_Name=
KeyWords1 Source=,Format=,Device=,Port=,Mode=,SubMode=,VBEAFAccel=,ProgName=,TMV_Text=
KeyWords1 IRQ=,DMA1=,DMA2=,VBEAFAccel=,ShowFileInfo=,ShowFilter=,ScanFilter=,TMV_FileName=
KeyWords1 Main=,Frame=,FS_Name=,FS_Text=,FS_SelectedText=,FS_Unchecked=,FS_Unavailable=,Low,Mid,High
RegKeyWords Color Lightgreen \<[^\x5E\>\<\x22\x27\x3D]+\>,\[[^\x5E\]\[\x22\x27\x3D]+\],\([^\x5E\)\(\x22\x27\x3D]+\),\{[^\x5E\}\{\x22\x27\x3D]+\}
Commentstart ;
SwitchHighLight On
END
;;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
;; Assembler files *.S35;*.S03;*.S01;*.S90
;;様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様様
;FILES *.ASM;*.S??;*.A86;*.EQU;*.COD
; CommentString ;
; HexNumFLAGS 31
; DecNumFLAGS 31
; OctoNumFLAGS 31
; BinNumFLAGS 31
; GeneralFlags 16
; BracketPairs macro endm proc endp
; KeyWords1 public,extern,extrn,include,macro,endm,segment,ideal,model,ends
; KeyWords1 proc,end,endp,title,subtitle,module,code,flat,jumps,data
; KeyWords1 const,rcode,equ,global,name,group,assume,nojumps,locals,org
; KeyWords1 if,ifdef,ifndef,elif,else,endif,define,undef,local,dup
; Keywords1 p386,.386,p486,.486,p586,.586,.586p,.686p,.data,dataseg,.code
; Keywords1 codeseg,.udata,udataseg,short,offset,near,end,struc,.xmm
;; Registers and size related
; KeyWords3 tiny,large,ptr
; RegKeywords3 \b[abcd][lh]\b, \b([xyz]?mm[0-7]|[xyz]mm([8-9]|[12][0-9]|3[01]))\b
; RegKeywords3 \b[cdefgs]s\b, \b[er]?([ds]i|[bs]p|[abcd]x)\b, \b([sb]p|[sd]i)l\b
; RegKeyWords3 \b[cdt]r[0-7]\b, \br([8-9]|1[0-5])[bwdl]?\b, \b(k|st)[0-7]\b
; RegKeyWords3 \buse(16|32|64|avx(256|512))\b, \bbnd[0-3]\b, \b[rd][bdfpqtuw]\b
; RegKeyWords3 \b(|[dfpqtxyz]|[dq]q)(word)|(|t)(byte)|seg[cdefgs]s\b
;; Instructions
; RegKeywords3 \b(ad[co]x)\b, \b(aes(dec|enc)(|last))\b
; RegKeywords3 \b(aes(imc|keygenassist))\b, \b(mul|ror|sar|shl|shr)(x)\b
; RegKeywords3 \b(cmp(eq|le|lt|neq|nle|nlt|ord)(pd|ps|sd|ss))\b
; RegKeywords3 \b(bl[sc](fill|i|ic|msk))\b, \b(bl(sr|cs))\b
; RegKeywords3 \b(bnd(|cl|cn|cu|ldx|mk|mov|stx))\b, \b(b(extr|zhi))\b
; RegKeywords3 \b(cl(ac|flushopt|wb))\b, \b(cmovp[eo])\b, \b(cmps[qs])\b
; RegKeywords3 \b(cmpunord(pd|ps|sd|ss))\b, \b(f(init|ldenv[dw]|wait))\b
; RegKeywords3 \b(fn(clex|disi|eni|save[dw]|stenv[dw]|)|getsec|iret(|[dqw]))\b
; RegKeywords3 \b(frst(or[dw]|pm)|fsave(|[dw])|fst(env[dw]|sw)|fx(rstor64|save(|64)))\b
; RegKeywords3 \b(inv(ept|pcid|vpid)|kunpck(bw|dq|wd)|llwpcb|lwp(ins|val))\b
; RegKeywords3 \b(k(add|and|andn|mov|not|or|ortest|shiftl|shiftr|test|xnor|xor)([bdqw]))\b
; RegKeywords3 \b(pclmul(hqhdq|hqhqdq|hqlqdq|lqhdq|lqhqdq|lqlqdq|qdq))\b
; RegKeywords3 \b(pblend(vb|w)|(|v)mpsadbw|p(commit|dep|ext|hminposuw))\b
; RegKeywords3 \b((rd|wr)([fg]sbase|rand|seed)|setp[eo]|sha1(msg1|msg2|nexte|rnds4))\b
; RegKeywords3 \b(sha256(msg1|msg2|rnds2)|s(lwpcb|tac)|tz(cnt|msk)|t1mskc)\b
; RegKeywords3 \b(xsave(|64|opt(|64))|xrstor(|64))\b,\bxsha(1|256)|xstore\b
; RegKeywords3 \b(x(abort|acquire|begin|end|release|test))\b
; RegKeywords3 \bvbroadcast[fi](128|32x2|32x4|32x8|64x2|64x4)\b
; RegKeywords3 \bvbroadcast(sd|ss)|vadd(pd|ps|sd|ss|sub(pd|ps))\b
; RegKeywords3 \bvaes(dec|declast|enc|enclast|imc|keygenassist)\b
; RegKeywords3 \bvalign[dq]|v(and(|n)|or)(pd|ps)\b
; RegKeywords3 \bvblend(mpd|mps|pd|ps|vpd|vps)\b
; RegKeywords3 \bvcmpeq_(os|uq|us)(pd|ps|sd|ss)|vcmpeq(pd|ps|sd|ss)\b
; RegKeywords3 \bvcmpfalse(|_os)(pd|ps|sd|ss)\b
; RegKeywords3 \bvcmp[gl][et](|_oq)(pd|ps|sd|ss)\b
; RegKeywords3 \bvcmp(neq_)(oq|os|us)(pd|ps|sd|ss)\b
; RegKeywords3 \bvcmp(neq)(pd|ps|sd|ss)|vcomi(sd|ss)|vcompress(pd|ps)\b
; RegKeywords3 \bvcmpn(ge|gt|le|lt)(|_uq)(pd|ps|sd|ss)\b
; RegKeywords3 \bvcmp(|un)ord(|_s)(pd|ps|sd|ss)\b
; RegKeywords3 \bvcmp(pd|ps|sd|ss)|vcmptrue(|_us)(pd|ps|sd|ss)\b
; RegKeywords3 \bvcvtdq2(pd|ps)|vcvtpd2(dq|ps|qq|udq|uqq)|vcvtph2ps\b
; RegKeywords3 \bvcvtps2(dq|pd|ph|qq|udq|uqq)|vcvtqq2(pd|ps)\b
; RegKeywords3 \bvcvtsd2(si|ss|usi)|vcvtsi2(sd|ss)|vcvtss2(sd|si|usi)\b
; RegKeywords3 \bvcvttpd2(dq|qq|udq|uqq)|vcvttps2(dq|qq|udq|uqq)\b
; RegKeywords3 \bvcvtt(sd|ss)2(si|usi)|vdpp[ds]\b
; RegKeywords3 \bvcvtu(d|q)q2(pd|ps)|vdbpsadbw\b
; RegKeywords3 \bvcvtusi2(sd|ss)|v(div|fpclass|max|min|mul)(pd|ps|sd|ss)\b
; RegKeywords3 \b(vexp2p|vexpandp)[ds]|vextractps\b
; RegKeywords3 \bv(extract|insert)[fi](128|32x4|32x8|64x2|64x4)\b
; RegKeywords3 \bv(fixupimm|getexp|getmant)(pd|ps|sd|ss)\b
; RegKeywords3 \bvfm(add(|sub)|sub(|add))(|132|213|231)(pd|ps|sd|ss)\b
; RegKeywords3 \bvfnm(add|sub)(|132|213|231)(pd|ps|sd|ss)\b
; RegKeywords3 \bv(gatherp|scatterp)(f0|f1)([dq](pd|ps))\b
; RegKeywords3 \bv(gather[dq]|maskmov)(dqu|pd|ps)|vh(add|sub)(pd|ps)\b
; RegKeywords3 \bvld(dqu|mxcsr)|vinsertps|vmclear\b
; RegKeywords3 \bvmov((ap[ds])|d(|dup|qa(|32|64)|qu(|16|32|64|8)))\b
; RegKeywords3 \bvmovh(lps|pd|ps)|vmovl(hps|pd|ps)\b
; RegKeywords3 \bvmovmsk(pd|ps)|vmovnt(dq(|a)|pd|ps)\b
; RegKeywords3 \bvmovs(d|[hl]dup|s)|vmov(q|up[ds])|vmptr(ld|st)\b
; RegKeywords3 \bvpabs[bdqw]|vpack[su]s(dw|wb)\b
; RegKeywords3 \bvpadd([bdqw]|s[bw]|us[bw])|vpalignr\b
; RegKeywords3 \bvpand(n[dq]|[dnq]|)|vpavg[bw]\b
; RegKeywords3 \bvpblend(d|m[bdqw]|vb|w)\b
; RegKeywords3 \bvpbroadcast([bdqw]|m(b2q|w2d))\b
; RegKeywords3 \bvpclmul(hqhdq|hqlqdq|lqhdq|lqlqdq|qdq)\b
; RegKeywords3 \bvpcm(ov|p([bd]|(eq|gt|l[et](|u))[bdqw]|(e|i)str[im]))\b
; RegKeywords3 \bvpcmp((neq|nl[et])(|u)[bdqw])|vphminposuw\b
; RegKeywords3 \bv(pcmp([qw]|(u[bdqw]))|(pcompress|pconflict)[dq])\b