-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPSPad.INI
More file actions
1314 lines (1271 loc) · 28.4 KB
/
PSPad.INI
File metadata and controls
1314 lines (1271 loc) · 28.4 KB
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
[HTML document]
Compilator ParsLog=line %L column %C
[PHP]
Compilator File=C:\Program Files\PHP\v7.0\php.exe
Compilator Param=%File%
Compilator Capture=1
Compilator ParsLog=*on line <b>%L
Filter=PHP files (*.php;*.php3;*.php4;*.phtml;*.inc)|*.php;*.php3;*.php4;*.phtml;*.inc
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0052525200000000000
Documentation=0080808000000000010
Identifier=00FFFFFF00000000000
Number=0000FFFF00000000000
Reserved Word=00FF808000000000000
Space=0080800000000000010
String=0080FF0000000000000
Symbol=00FF808000000000000
Variable=00310AFF00000000000
Compilator LOG=
Compilator Run=
Compilator Help=E:\TUTORIALS\MANUALS\php_enhanced_ru_2016.chm
Compilator SaveAll=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
Prog0=WP,E:\Program Files\zeal-20141123\zeal.exe --query WordPress:%Word%§
Prog1=JS,E:\Program Files\zeal-20141123\zeal.exe --query JavaScript:%Word%§
Prog2=jQuery,E:\Program Files\zeal-20141123\zeal.exe --query jQuery:%Word%§
Prog3=CSS,E:\Program Files\zeal-20141123\zeal.exe --query CSS:%Word%§
[FilePos]
Width=1540
Height=840
Top=10
Left=30
Maximized=1
ChildMaximized=1
HTMLWidth=1608
HTMLHeight=864
HTMLTop=-4
HTMLLeft=-4
ForceFirstMonitor=1
IconSet=PSPad classic
TBIconSet=PSPad
AutoSavePos=0
LastScreenDPI=96
[Font]
Name=Consolas
Size=10
CharSet=0
HEXName=Consolas
HEXSize=10
HEXCharSet=238
LOGFontName=Consolas
LOGFontSize=10
LOGFontCharSet=1
MainFontColor=16777215
MainBackColor=0
BlockColor=16711680
BlockFont=16776960
[Konverze]
CP=1250
AutoCP=0
CzechOEM=0
[SQL]
Dialekt=0
Filter=SQL files (*.sql)|*.sql
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0080808000000000010
Conditional Comment=00FFFFFF00000000010
Data Type=00FF008000000000100
Default Packages=00FF80FF00000000100
Delimited Identifier=0040FF0000000000000
Exception=008000FF00000000010
Function=00FF800000000000100
Identifier=00FFFF8000000000000
Number=0000FFFF00000000000
PL/SQL Reserved Word=00FF808000000000100
Reserved Word=00FF808000000000100
Space=00FF000000000000000
SQL*Plus Command=00FF00FF00000000100
String=0080FF0000000000000
Symbol=00FF808000000000000
Table Name=008000FF00000000000
Variable=000000FF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=E:\TUTORIALS\MANUALS\SQL DB\[MySQL_5.1_en.chm
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
Prog0=MySQL,E:\Program Files\zeal-20141123\zeal.exe --query MySQL:%Word%§
Prog1=SQLite,E:\Program Files\zeal-20141123\zeal.exe --query SQLite:%Word%§
Prog2=SQLAlchemy,E:\Program Files\zeal-20141123\zeal.exe --query SQLAlchemy:%Word%§
[Panels]
MainPanel=1
MakroPanel=1
ControlPanel=1
EditPanel=1
LookPanel=1
HTMLPanel=1
ProjPanel=1
AutoDock=1
FTPPanel=1
LinkPanel=1
ASCIIPanel=2
ColorPanel=2
ClipPanel=2
ExplorePanel=2
WindowPanel=1
FileNameWidth=150
AutoCodeExplorer=1
[Asociace]
TXT=0
Opera=0
WinCMD=0
AllFile=1
IE=0
IE edit=0
Notepad=NOTEPAD.EXE %1
ShellDll=0
ShellTextDiff=1
ShellHexEdit=1
[Macro]
Macro1=Enter_new_line_tab
Macro2=New_line_After
Macro3=Shift_Home
Macro4=Shift_End
[Multi]
PHP=1
JScript=1
VBScript=1
TCL=0
XML=1
ASP=0
MultiBaseHTML=1
[HEX]
HexOffset=1
BytesPerCol=2
BytesPerLine=16
[Spell]
Dictionary=russian.2-0-0
UnderlineStyle=0
UnderlineColor=255
NoNumberWord=1
NoOneCharWord=1
[CSV]
CSVDelim=;
CSVEnclose="
CSVCPIndex=0
[Highlighters]
CPP=1
Cobol=1
Bat=1
CSS=1
Fortran=1
FoxPro=1
HTML=1
Multi=1
XHTML=1
INI=1
InnoSetup=1
JAVA=1
JavaScript=1
Kix=1
Pascal=1
Perl=1
PHP=1
Python=1
RSS=1
SQL=1
TCL=1
TeX=1
UNIXShell=1
VBScript=1
Basic=1
XML=1
Assembl=1
General=0
General1=0
General2=0
General3=0
General4=0
General5=0
General6=0
General7=0
General8=0
General9=0
[Internet]
ProxyUse=0
ProxyAsIE=0
ProxyAdr=
ProxyPort=8080
ProxyName=
ProxyPass=
HTServer=auth
[C/C++]
Filter=C++ Files (*.c;*.cpp;*.cc;*.h;*.hpp;*.hh;*.cxx;*.hxx')|*.c;*.cpp;*.cc;*.h;*.hpp;*.hh;*.cxx;*.hxx'
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
NewPreprocStyle=0
CurrentLine=0
CurrentLineBack=65535
Assembler=00FFFFFF00000000000
Brackets=00FFFFFF00000000000
Character=00FFFFFF00000000000
Comment=0000800000000000010
Float=0080000000000000000
Hexadecimal=0080000000000000000
Identifier=00FFFFFF00000000000
Illegal Char=00FFFFFF00000000000
Number=0080000000000000000
Octal=00FF000000000000000
Preprocessor=00FFFFFF00000000000
Reserved Word=00FFFFFF00000000100
Space=0080800000000000000
String=0000008000000000000
Symbol=00FFFFFF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[COBOL]
Filter=COBOL Files (*.cbl;*.cob)|*.cbl;*.cob
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
AreaAStart=7
AreaBStart=11
EndCode=71
CurrentLine=0
CurrentLineBack=65535
Area A Identifier=0080800000D2D2D2100
Boolean value=0000800000000000000
Brackets=00FFFFFF00000000000
Comment=0080808000000000010
Debugging Lines=0080808000000000000
Identifier=00FFFFFF00000000000
Indicator Area=000000FF00000000000
Number=0000800000000000000
Preprocessor=0000008000000000000
Reserved Word=00FFFFFF00000000100
Sequence Number Area=0080808000E6E6E6000
Space=00FFFFFF00000000000
String=00FF000000000000000
Tag Area=0000008000E6E6E6000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Windows Shell Script]
Filter=Windows shell script (*.cmd;*.bat;*.nt)|*.cmd;*.bat;*.nt
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0000800000000000000
Identifier=00FFFFFF00000000000
Key=00FF00FF00000000000
Label=0000008000000000000
Message=000080FF00000000010
Number=0080000000000000000
Space=0080800000000000000
String=00FF000000000000000
Symbol=00FFFFFF00000000000
Variable=000000FF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Cascading Style Sheet]
Filter=Cascading Stylesheets (*.css)|*.css
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Color Value=008080FF00000000000
Comment=0052525200000000000
LESS comment=0080804000000000000
Number=00FF80FF00000000000
Property=00FF808000000000100
Reserved Word=00FFFF0000000000100
Space=0080800000000000010
String=0080FF0000000000000
Symbol=00FF808000000000100
Text=0000FFFF00000000000
Undefined Property=000000FF00000000100
Value=00FFFFFF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Fortran]
Filter=Fortran Files (*.f;*.f90;*.f95;*.for)|*.f;*.f90;*.f95;*.for
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=00C0C0C000000000010
Identifier=00FFFFFF00000000000
Number=00FF80FF00000000000
Reserved Word=00FFFF0000000000100
Space=0080800000000000010
String=0000FFFF00000000000
Symbol=00FFFFFF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Foxpro]
Filter=Foxpro Files (*.prg)|*.prg
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0000800000000000010
Identifier=00FFFFFF00000000000
Number=0080000000000000000
Reserved Word=00FFFFFF00000000100
Space=0080800000000000000
String=0000008000000000000
Symbol=00FFFFFF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[HTML]
Filter=HTML Document (*.html;*.htm;*.shtml;*.hhc)|*.html;*.htm;*.shtml;*.hhc
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
TemplateSupport=0
CurrentLine=0
CurrentLineBack=65535
Comment=003F3F3F00000000000
Django Template=00FF808000060606100
Escape Ampersand=008000FF00000000100
Identifier=00FF808000000000000
Reserved Word=00FFFF0000000000000
Space=0080800000000000010
Symbol=00FF808000000000000
Template=000066FF00000000100
Text=00FFFFFF00000000100
Unknown Word=00FF00FF00000000000
Value=0080FF0000000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=E:\TUTORIALS\MANUALS\[WEB].chm
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
Prog0=WP,E:\Program Files\zeal-20141123\zeal.exe --query WordPress:%Word%§
Prog1=JS,E:\Program Files\zeal-20141123\zeal.exe --query JavaScript:%Word%§
Prog2=jQuery,E:\Program Files\zeal-20141123\zeal.exe --query jQuery:%Word%§
Prog3=CSS,E:\Program Files\zeal-20141123\zeal.exe --query CSS:%Word%§
[XHTML]
Filter=XHTML Document (*.html;*.htm,*.xhtml)|*.html;*.htm,*.xhtml
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0000800000000000000
Django Template=0000408000000000000
Escape Ampersand=0000800000000000100
Identifier=00FFFFFF00000000100
Reserved Word=0080008000000000100
Space=0080800000000000010
Symbol=00FFFFFF00000000100
Template=000066FF00000000000
Text=00FFFFFF00000000000
Unknown Word=000000FF00000000100
Value=0080000000000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[INI]
Filter=INI Files (*.ini;*.reg;*.inf;*.key;*.dsk;*.dof;*.oem;*.def;*.cfg;*.KM;*.DEF)|*.ini;*.reg;*.inf;*.key;*.dsk;*.dof;*.oem;*.def;*.cfg;*.KM;*.DEF
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0052525200000000010
Key=00FF808000000000100
Number=0000FFFF00000000000
Section=00FFFF0000FF0000100
Space=0080800000000000010
String=0080FF0000000000000
Symbol=008000FF00000000000
Text=00FFFFFF00000000100
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Inno Setup Script]
Filter=Inno Setup Script files (*.iss)|*.iss
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0080808000000000010
Directive=0080008000000000000
Identifier=00FFFFFF00000000000
Illegal Char=00FFFFFF00000000000
Number=0000800000000000000
Preprocessor=0000008000000000000
Reserved Word=0080000000000000000
Section=000000FF00000000000
Space=0080800000000000000
String=0000800000000000000
Symbol=00FFFFFF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Java]
Filter=Java files (*.java)|*.java
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=00C0C0C000000000010
Documentation=00FFFFFF00000000010
Identifier=00FFFFFF00000000000
Invalid Symbol=00FFFFFF00000000000
Number=00FF80FF00000000000
Reserved Word=00FFFF0000000000100
Space=0080800000000000010
String=0000FFFF00000000000
Symbol=00FFFFFF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[JavaScript]
Filter=Javascript files (*.js)|*.js
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0080808000000000000
Event=0000FFFF00000000000
Identifier=00FFFFFF00000000000
Non-reserved Keyword=00FFFF0000000000000
Number=008000FF00000000000
Reserved Word=00FF808000000000000
Space=0080800000000000010
Special Variable=00FFFF0000000000000
String=0080FF0000000000000
Symbol=00FF408000000000100
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=E:\TUTORIALS\MANUALS\[JavaScript]\javascript\JavaScript_man.chm
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
Prog0=JS,E:\Program Files\zeal-20141123\zeal.exe --query JavaScript:%Word%§
Prog1=NodeJS,E:\Program Files\zeal-20141123\zeal.exe --query node.jst:%Word%§
Prog2=jQuery,E:\Program Files\zeal-20141123\zeal.exe --query jQuery:%Word%§
Prog3=BackboneJS,E:\Program Files\zeal-20141123\zeal.exe --query Backbone.js:%Word%§
[KiXtart]
Filter=Kix Scripts (*.kix)|*.kix
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Command=00FF353500000000100
Comment=0080808000000000010
Function=003C1AFF00000000100
Identifier=00FFFFFF00000000000
Label=00FF008000000000001
Macro=000074E800000000100
Number=0000800000000000100
Parameter=0000008000000000100
Space=0080800000000000000
String=00468C0000000000000
Symbol=00FF008000000000100
Variable=00FFFFFF00000000100
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Object Pascal]
Filter=Pascal files (*.pas;*.dpr;*.dpk;*.inc;*.dfm;*.xfm)|*.pas;*.dpr;*.dpk;*.inc;*.dfm;*.xfm
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Assembler=000000FF00000000000
Character=00FFFFFF00000000000
Comment=00FF000000000000010
Data Type=00FFFFFF00000000000
Float=00FFFFFF00000000000
Hexadecimal=00FFFFFF00000000000
Identifier=00FFFFFF00000000000
Number=00FFFFFF00000000000
Preprocessor=00FFFFFF00000000010
Reserved Word=00FFFFFF00000000100
Space=0080800000000000000
String=0000800000000000000
Symbol=00FFFFFF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Perl]
Filter=Perl Files (*.pl;*.pm;*.cgi)|*.pl;*.pm;*.cgi
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0080808000000000010
Identifier=00FFFFFF00000000000
Illegal Char=00FFFFFF00000000000
Number=0080000000000000000
Operator=00FFFFFF00000000000
Pragma=00FFFFFF00000000100
Reserved Word=00FFFFFF00000000100
Space=FF00000500000000010
String=0000800000000000000
Symbol=00FFFFFF00000000000
Variable=0000008000000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Python]
Filter=Python files (*.py;*.pyw)|*.py;*.pyw
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=000000FF00000000000
Documentation=0000800000000000000
Float=00FFFFFF00000000000
Hexadecimal=00FFFFFF00000000000
Identifier=00FFFFFF00000000000
Non-reserved Keyword=0080000000000000000
Number=00FFFFFF00000000000
Octal=00FFFFFF00000000000
Reserved Word=000080FF00000000000
Space=0080800000000000010
String=0000800000000000000
Symbol=00FFFFFF00000000000
Syntax Error=00FF00FF00000000000
System Functions and Variables=00FF000000000000100
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[RSS]
Filter=RSSm RDF files (*.rss;*.rdf)|*.rss;*.rdf
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Attribute Name=0000808000000000000
Attribute Value=00FF000000000000000
CDATA Section=0066669900000000010
Comment=0000800000000000010
DOCTYPE Section=0000008000000000010
Element Name=0080008000000000000
Entity Reference=0000008000000000000
Namespace Attribute Name=0000808000000000000
Namespace Attribute Value=0080000000000000000
Processing Instruction=00FF68FF00000000110
Symbol=0080008000000000000
Text=00FFFFFF00000000000
Whitespace=0080800000000000010
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Tcl/Tk]
Filter=Tcl/Tk Files (*.tcl)|*.tcl
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
BWidget keywords=0080800000000000110
Comment=00C0C0C000000000010
Identifier=00FFFFFF00000000000
Number=00FF80FF00000000000
Options=00FFFFFF00000000000
PathName=0080FFFF00000000000
Reserved Word=00FFFF0000000000100
Second Reserved Word=00FFFFFF00000000100
Space=0080800000000000010
String=0000FFFF00000000000
Symbol=00FFFFFF00000000000
Tix keywords=0000FF8000000000110
Variable=008080FF00000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[TeX]
Filter=TeX Files (*.tex;*.log;*.toc;*.txt)|*.tex;*.log;*.toc;*.txt
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=00FFFF0000000000000
Math Mode=0000FF0000000000000
Round Bracket=000000FF00000000000
Space=008000FF00000000000
Square Bracket=00FF808000000000000
TeX Command=0040FF0000000000000
Text=0080FF0000000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[UNIX Shell Script]
Filter=UNIX Shell Scripts (*.sh)|*.sh
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0000800000000000000
Identifier=00FFFFFF00000000000
Number=00FF000000000000000
Reserved Word=0080000000000000100
Second Reserved Word=00FFFFFF00000000000
Space=00FFFFFF00000000000
String=0000008000000000000
Symbol=000000FF00000000000
Variable=0080008000000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[MS VBScript]
Filter=VBScript files (*.vbs;*.asa)|*.vbs;*.asa
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0080808000000000000
Constant=006F00DD00000000000
Identifier=00FFFFFF00000000000
Number=0000FFFF00000000100
Reserved Word=00FF808000000000000
Space=0080800000000000010
String=0080FF0000000000000
Symbol=00FF808000000000100
System Functions and Variables=00310AFF00000000100
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=
Compilator Capture=0
Compilator HideOutput=0
Compilator ProgSaveAll=0
Compilator ProgRunSelection=0
Compilator DefaultDir=
Compilator LogType=0
[Visual Basic]
Filter=Visual Basic files (*.bas;*.cls;*.frm)|*.bas;*.cls;*.frm
HLTabWidth=0
HLRealTabs=2
RightEdge=0
IndentChar=
UnIndentChar=
DocComment=
CurrentLine=0
CurrentLineBack=65535
Comment=0080808000000000010
Identifier=00FFFFFF00000000000
Number=008000FF00000000000
Reserved Word=00FF808000000000100
Space=00FF80FF00000000000
String=0040FF0000000000000
Symbol=00FF808000000000000
Compilator File=
Compilator Param=
Compilator LOG=
Compilator Run=
Compilator Help=
Compilator SaveAll=0
Compilator ParsLog=