-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreferences.cbc
2417 lines (2251 loc) · 109 KB
/
preferences.cbc
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
allow-multiple-instances = false
reload-mode = always
save-session = true
search-patterns = *.py;*.html;*.js;*.css
search-directory =
search-patterns-history = *.*:*.py;*.html;*.js;*.css
search-history =
search-replace-history =
layout = single
scroll-speed = 1
fisheye-view = true
//[c]Do not use underscores ('_') in names. Dashes ('-') are ok.
//[of]theme:Themes
theme = Purple-Blue
def themes
//[c] ( Predefined Themes
//[of]System:System
def System
//[of]:Defaults
font-family = Tahoma, Sans
font-size = 10
font-style = none
color = text
normal-color = text
text-back-color = background
workspace-color = workspace
//[cf]
//[of]:Tree
tree-view-font-family = Tahoma, Sans
tree-view-font-size = 10
tree-view-font-style = none
tree-view-back-color = background
tree-view-fore-color = text
//[cf]
//[of]:Section title
title-font-family = Tahoma, Sans
title-font-size = 12
title-font-style = none
title-back-color = medium
title-fore-color = text
//[cf]
//[of]:Fixed font
fixed-font-family = Courier New, Monospace
fixed-font-size = 10
fixed-font-style = none
//[cf]
//[of]:Sections and links
//[c]highlight-back-color is the background color of a selected section or link line.
//[c]
//[c]inactive-line-back-color is the same but when the section is inactive,
//[c]eg. the inactive panes in the page view.
section-color = #283C78
section-back-color = background
link-color = #20643C
link-back-color = background
highlight-back-color = medium
inactive-line-back-color = inactive
//[cf]
//[of]:Descriptions
description-color = text
description-back-color = medium
//[cf]
//[of]:Selections
//[c]inactive-back-color is the color of a selection in a section which is not active.
//[c]For example the left and right view in the page view.
selected-back-color = #96A0B4
inactive-back-color = inactive
//[cf]
//[of]:Misc highlighting
pair-color = #B0FFB0
bookmark-color = #B0C0FF
match-color = #FFFFB0
breakpoint-color = #F0A0A0
error-color = #ffefef
invalid-color = #ffefef
//[cf]
//[of]:Language
number-color = #283CC8
string-color = #008080
comment-color = #208040
preproc-color = #0040A0
//[c]( chars
char-1-color = #3C50DC
char-2-color = #8050DC
char-3-color = #DC5080
char-4-color = #DC503C
//[c])
//[c]( words
word-1-color = #3C50DC
word-2-color = #8050DC
word-3-color = #DC5080
word-4-color = #DC503C
//[c])
//[cf]
end
//[cf]
//[of]Paper:Paper
def Paper
//[of]:Defaults
font-family = DejaVu Serif, Georgia
font-size = 13
font-style = none
color = text
text-back-color = background
workspace-color = workspace
//[cf]
//[of]:Tree
tree-view-back-color = background
tree-view-font-family = DejaVu Serif, Georgia
tree-view-font-size = 13
tree-view-font-style = none
tree-view-fore-color = text
//[cf]
//[of]:Fixed font
fixed-font-family = Courier New, Bitstream Vera Sans Mono
fixed-font-size = 13
fixed-font-style = none
//[cf]
//[of]:Sections and links
section-color = #283C78
section-back-color = background
link-color = #20643C
link-back-color = background
highlight-back-color = medium
//[cf]
//[of]:Descriptions
description-back-color = medium
//[cf]
//[of]:Selections
selected-back-color = #96A0B4
inactive-back-color = inactive
//[cf]
//[of]:Misc highlighting
bookmark-color = #B0C0FF
breakpoint-color = #F0A0A0
error-color = #C8FFC8
match-color = #FFFFB0
pair-color = #B0FFB0
//[cf]
//[of]:Language
comment-color = #555555
comment-font-style = italic
word-1-font-style = bold
//[cf]
end
//[cf]
//[of]:Zenburn
def Zenburn
//[of]:Defaults
font-family = Arial, Luxi
font-style = none
font-size = 10
color = #DCDCCC
normal-color = #DCDCCC
text-back-color = #3F3F3F
workspace-color = #464646
//[cf]
//[of]:Tree
tree-view-font-family = Arial, Luxi
tree-view-font-style = none
tree-view-font-size = 10
tree-view-fore-color = #DCDCCC
tree-view-back-color = #3F3F3F
//[cf]
//[of]:Fixed font
fixed-font-family = Courier New, Bitstream Vera Sans Mono
fixed-font-style = none
fixed-font-size = 10
//[cf]
//[of]:Sections and links
section-color = #C0BED1
section-back-color = #3F3F3F
link-color = #B3D3C3
link-back-color = #3F3F3F
highlight-back-color = #4C5F55
//[cf]
//[of]:Descriptions
description-color = #7F9F7F
description-back-color = #464646
//[cf]
//[of]:Selections
selected-back-color = #455878
inactive-back-color = #455878 //#545454
//[cf]
//[of]:Misc highlighting
bookmark-color = #505498
breakpoint-color = #406040
error-color = #804040
invalid-color = #C03060
match-color = #8C8C49
pair-color = #507050
//[cf]
//[of]:Language
comment-color = #7F9F7F
number-color = #8CD0D3
preproc-color = #FFCFAF
string-color = #CC9393
char-1-color = #F0EFD0
char-2-color = #C05080
char-3-color = #D080D0
char-4-color = #E08050
word-1-color = #F0DFAF
word-1-font-style = bold
word-2-color = #EFDCBC
word-3-color = #EFEF8F
word-4-color = #DCDCA3
//[cf]
end
//[cf]
//[c] )
//[c] ( Themes added by me
//[of]purpleblackblue:Basic
def Basic
prototype = themes.System
//[of]:Defaults
font-family = Consolas, Source Code Pro, Lucida Sans Typewriter, Courier New, Monospace
font-size = 11
//[c]~ font-family = Consolas, Lucida Sans Typewriter, Courier New, Monospace
//[c]~ font-size = 11
normal-color = #000000 // black
//[cf]
//[of]:Tree
tree-view-font-family = Consolas, Lucida Sans Typewriter, Courier New, Monospace
//[cf]
//[of]:Section title
title-font-family = Consolas, Lucida Sans Typewriter, Courier New, Monospace
//[cf]
//[of]sections and links:Sections and links
section-color = #005FBF // blue
section-back-color = #f8fbff // light blue, to indicate: 'this has content'.
link-color = #70c300 // yellow green
link-back-color = #ffffff // white, to indicate 'this has no content'
highlight-back-color = #F0F0E0 // umbra grey
inactive-line-back-color = #F0F0E0
//[cf]
//[of]Descriptions:Descriptions
description-color = #008200 // forest green
description-back-color = #ffffff // white
//[cf]
//[of]Selection:Selections
selected-back-color = #9fcfff // sky blue
inactive-back-color = #bfdfff // sky blue, a bit lighter
//[cf]
//[of]highlighting:Misc highlighting
bookmark-color = #DFFF80 // light green
match-color = #FFFF00 // yellow
error-color = #ffefef // light red - background color for reported errors
invalid-color = #ff0000 // red - font color for unknown things
//[cf]
//[of]words and chars:Language
comment-color = #008200 // forest green
number-color = #0000ff // blue
string-color = #0080A0 // turquoise
preproc-color = #0088BB // todo
word-1-color = #000000
word-1-font-style = bold
word-2-color = #000000
word-3-color = #000000
word-4-color = #000000
char-1-color = #000000
char-2-color = #000000
char-3-color = #000000
char-4-color = #000000
//[cf]
end
//[cf]
//[of]purpleblue:Purple-Blue
def Purple-Blue
prototype = themes.Basic
//[of]Defaults:Defaults
normal-color = #2070C0 // light sky blue - local variables.
//[cf]
//[of]Language:Language
word-1-color = #C07080 // pink - keywords
word-1-font-style = normal
word-2-color = #A04070 // purple - funcs, predefined, getters
word-3-color = #0080A0 // turquoise - same as strings - literals like `True`, `False`, `None`.
word-4-color = #404040 // nearly black - everything else
char-1-color = #404040 // like word-4
char-2-color = #C07080 // like word-1
preproc-color = #C07080 // like word-1
//[cf]
end
//[cf]
//[c] )
end
//[of]:Some Mono Font Families
//[c]Anonymous Pro
//[c]BPmono
//[c]Bitstream Vera Sans Mono
//[c]CamingoCode
//[c]Consolas
//[c]Courier New
//[c]DejaVu Sans Mono
//[c]Droid Sans Mono
//[c]Hack
//[c]Inconsolata
//[c]Liberation Mono
//[c]Lucida Console
//[c]Lucida Sans Typewriter
//[c]Monospace
//[c]NotCourierSans
//[c]Ocelot Monowidth
//[c]Oxygen Mono
//[c]Roboto Mono
//[c]Simplified Arabic Fixed
//[c]Source Code Pro
//[c]Space Mono
//[c]Ubuntu Mono
//[cf]
//[cf]
//[of]keymapping:Keymappings
key-mapping = Nils
def key-mappings
//[of]nils:Nils
def Nils
activate-text-window =
activate-tree-window =
view-one-pane = F4
page-view = F5
view-tree = F6
view-browser = F7
word-wrap = CTRL+W
elastic-tabstops =
show-tabs = CTRL+SHIFT+T
show-line-type =
switch-zoom =
file-new = CTRL+N
file-open = CTRL+O
file-open-new = CTRL+SHIFT+N
file-save = CTRL+S
file-save-all = CTRL+SHIFT+S
file-save-as =
edit-select-all = CTRL+A
edit-cut = CTRL+X
edit-copy = CTRL+C
edit-copy-reference = CTRL+ALT+C
edit-paste = CTRL+V
edit-paste-raw-text = CTRL+ALT+V
edit-delete =
edit-undo = CTRL+Z
edit-redo = CTRL+Y
edit-upper = CTRL+U
edit-lower = CTRL+SHIFT+U
insert-comment = F11
insert-text = F10
insert-section = F12
edit-unfold = SHIFT+F12
insert-link =
edit-properties = ALT+RETURN
mark-all = CTRL+M
unmark-all = CTRL+SHIFT+M
//[c] Seems to be broken
move-up =
move-down =
find =
find-next = F3
find-previous = SHIFT+F3
find-all =
find-in-files = CTRL+SHIFT+F
incremental-search =
find-replace = CTRL+R
find-replace-in-files = CTRL+SHIFT+R
find-replace-all =
show-search-results =
go-back = ALT+LEFT
go-enter = ALT+RIGHT
go-next = CTRL+SHIFT+DOWN
go-previous = CTRL+SHIFT+UP
goto-line = CTRL+G
goto-matching-bracket = CTRL+B
select-matching-bracket = CTRL+SHIFT+B
go-page-1 =
go-page-2 =
go-page-3 =
go-page-4 =
go-page-5 =
go-page-6 =
go-page-7 =
go-page-8 =
go-page-9 =
go-next-error =
go-previous-error =
go-open-in-new-tab = CTRL+T
go-open-target-in-new-tab =
toggle-bookmark = CTRL+F2
goto-next-bookmark = F2
goto-previous-bookmark = SHIFT+F2
open-cmdline-preferences =
open-global-preferences =
open-global-languages =
open-user-preferences =
open-user-languages =
tools-break =
tools-options =
show-output =
//[c] Seems to be broken
window-next =
window-previous =
window-clone =
window-close =
window-close-dialog =
window-close-dialog-or-window = ESCAPE
window-windows =
file-files =
exit = CTRL+F4
end
//[cf]
//[c]
//[c] ( Original keymappings
//[of]:Windows
def Windows-Style
//[of]:File
file-new = CTRL+N
file-open-new = CTRL+SHIFT+N
file-open = CTRL+O
file-save = CTRL+S
file-save-as =
file-save-all = CTRL+SHIFT+S
file-files =
exit = CTRL+Q
//[cf]
//[of]:Edit
edit-undo = CTRL+Z
edit-redo = CTRL+Y
edit-cut = CTRL+X
edit-copy = CTRL+C
edit-paste = CTRL+V
edit-delete =
edit-select-all = CTRL+A
edit-copy-reference =
edit-paste-raw-text =
toggle-bookmark = CTRL+F2
edit-upper = CTRL+SHIFT+U
edit-lower = CTRL+U
edit-unfold = CTRL+B
edit-properties = ALT+RETURN
//[cf]
//[of]:Search
find = CTRL+F
find-all = CTRL+H
find-next = F3
find-previous = SHIFT+F3
find-replace = CTRL+R
find-replace-all = CTRL+SHIFT+R
find-in-files =
find-replace-in-files =
incremental-search = CTRL+I
mark-all = CTRL+M
unmark-all = CTRL+SHIFT+M
//[cf]
//[of]:View
word-wrap = CTRL+W
elastic-tabstops = CTRL+L
show-tabs = CTRL+F10
show-line-type = CTRL+F11
switch-zoom = ALT+END
view-one-pane = ALT+1
view-browser = ALT+2
view-tree = ALT+3
page-view = ALT+4
show-output = ALT+X
show-search-results = ALT+Z
move-up = ALT+PAGE UP
move-down = ALT+PAGE DOWN
//[cf]
//[of]:Go
go-back = ALT+LEFT
go-enter = ALT+RIGHT
go-open-in-new-tab = CTRL+J
go-open-target-in-new-tab = CTRL+T
go-next = CTRL+SHIFT+DOWN
go-previous = CTRL+SHIFT+UP
go-next-error = F4
go-previous-error = SHIFT+F4
go-page-1 = CTRL+NUMPAD 1
go-page-2 = CTRL+NUMPAD 2
go-page-3 = CTRL+NUMPAD 3
go-page-4 = CTRL+NUMPAD 4
go-page-5 = CTRL+NUMPAD 5
go-page-6 = CTRL+NUMPAD 6
go-page-7 = CTRL+NUMPAD 7
go-page-8 = CTRL+NUMPAD 8
go-page-9 = CTRL+NUMPAD 9
goto-line = CTRL+G
goto-matching-bracket =
select-matching-bracket =
goto-next-bookmark = F2
goto-previous-bookmark = SHIFT+F2
activate-tree-window = ALT+INSERT
activate-text-window = ALT+HOME
//[cf]
//[of]:Insert
insert-text = CTRL+SHIFT+T
insert-comment = CTRL+SHIFT+C
insert-section = F12
insert-link = CTRL+SHIFT+L
//[cf]
//[of]:Tools
tools-options =
tools-break = CTRL+BREAK
open-global-preferences =
open-user-preferences =
open-cmdline-preferences =
open-global-languages =
open-user-languages =
//[cf]
//[of]:Window
window-close = CTRL+F4
window-clone = CTRL+K
window-close-dialog = ESCAPE
window-close-dialog-or-window =
window-next =
window-previous =
window-windows =
//[cf]
end
//[cf]
//[of]:GTK
def GTK-Style
prototype = key-mappings.Windows-Style
edit-redo = CTRL+SHIFT+Z
find-next = CTRL+G
find-previous = CTRL+SHIFT+G
goto-line = CTRL+L
elastic-tabstops = CTRL+SHIFT+B
word-wrap = CTRL+SHIFT+W
window-close = CTRL+W
end
//[cf]
//[c] )
end
//[cf]
//[of]Languages:Languages
def languages
//[of]Defaults:Defaults
//[of]Default:Default
def Default
relative-indentation = true
encoding = UTF-8
first-line-patterns =
layout = single
ignore-case = false
auto-indentation = true
show-line-type = false
fixed = false
extra-id-chars = [_A-Za-z0-9]
//[of]Tabs:Tabs
//[c]Due to a bug in Code Browser the indentation type of a file can not be detected. Auto guessing it from the file is ambiguous and not performant for technical reasons. Therefore it has to be hardcoded.
//[c]
//[c]If you want to use tabs instead of spaces, set 'expand-tabulation' here to 'false' and tweak the function 'Global functions' -> 'Indenttoken' in the user.cbs. The settings made there have to reflect the settings made for languages in this file.
expand-tabulation = true
//[c]Only different in
//[l]:#Languages/Functional/Elm:#Languages/Functional/Elm
tabulation-size = 4
//[c]elastic-tabstops = true only has an effect if word-wrap is set to false.
word-wrap = true
elastic-tabstops = false
//[cf]
//[of]:Comments
line-comment = #
line-comment-2 =
open-comment =
close-comment =
open-comment-2 =
close-comment-2 =
//[cf]
//[of]string:Strings
escape-char =
regex-escape-char =
char-escape-char =
string-escape-char =
char-delimiter =
multiline-char-delimiter =
string-delimiter =
multiline-string-delimiter =
//[cf]
//[of]:Words
words-1 =
words-2 =
words-3 =
words-4 =
//[cf]
//[of]:Chars
chars-1 =
chars-2 =
chars-3 =
chars-4 =
//[cf]
//[of]:Prefix
char-prefix =
variable-prefix =
hexa-prefix =
preprocessor =
//[cf]
end
//[cf]
//[of]:Text
def Text
prototype = languages.Default
patterns = *.txt;*.info
stylizer = monochrome
end
//[cf]
//[of]:Code
def Code
prototype = languages.Default
stylizer = generic
escape-char = \
regex-escape-char = \
char-escape-char = \
string-escape-char = \
hexa-prefix = 0x
char-delimiter = '
multiline-char-delimiter = '''
string-delimiter = "
multiline-string-delimiter = """
chars-1 = ()[]{}<>!?`´.;,:-+*/\=|@^~%%&$
end
//[cf]
//[cf]
//[of]Codebrowser:Codebrowser
//[of]script:Code-Browser-Script
def Code-Browser-Script
prototype = languages.Code
patterns = *.cbs
line-comment = //
char-delimiter =
char-escape-char =
char-prefix = $
hexa-prefix = 0x
//[of]:Words 1
//[c]'self' is actually not a keyword.
words-1 = and attr break class cond do else elsif end function if method not %
or return self var while yield
//[cf]
//[of]words-2:Words 2 (Code Browser + Userscript)
words-2 = %
Boolean Char Integer Nil String StringBuffer %
%
Application FindData FindResult Frame Language Process Settings TextBlock %
TextFile TextLink TextRow TextSection TextView Window %
%
_add _and _at _div _eq _ge _gt _le _lt _mod _mul _ne _neg _not _or _shl _shr %
_sub _xor activateWindow activeFile activeSection activeView activeWindow %
addComment addLink addSection addText adjustPage autoIndentation basicNew %
centerPage changeElasticTabStops changeFixedFont changeShowLineType %
charDelimiter charEscapeChar charPrefix closeComment closeComment2 closeDialog %
closeWindow column copyBlock copySelection cursorColumn cursorLine %
deleteSelection direction each eachFile eachLanguage eachLine eachRow %
elasticTabStops endsWith escapeChar exit exitCode expandTabulation filename %
find findFile findLanguage fromString gotoAbsoluteLine gotoLocalLine hexaPrefix %
id indexOf insertChar insertString isCaseSensitive isEmpty isMarked isModified %
isNil isReadOnly isSelectionEmpty language lastText layout line lineComment %
lineComment2 link lt_comment lt_link lt_section lt_text mark markColumn %
markLine match matchCase matchWholeWord messageBox mode moveCursor %
multilineCharDelimiter multilineStringDelimiter name new newWithFilename %
newWithTitle notEmpty notNil open openComment openComment2 openFilename %
openSection outputFile parent path preprocessor range regexEscapeChar %
relativeIndentation remove removeAll removeAllMarkers removeRange replaceAll %
replaceSelection replaceText root rootFile row rowIsEmpty rowLink rowNotEmpty %
rowSection rowText rowType rowsSize run save saveAllFiles saveFile scope %
searchFile searchString section select selectedText setCaseSensitive %
setDirection setFilename setLanguage setLastText setLayout setLinkProperties %
setMatchWholeWord setReadOnly setRegularExpression setRowId setRowPath %
setRowText setScope setSearchString setSectionProperties setShowLineType %
setShowTabs setWordWrap setWorkingDirectory settings showLineType showOutput %
showSection showTabs size startGroup startsWith stdout stopGroup %
stringDelimiter stringEscapeChar synchronize tabulationSize text title toChar %
toInteger toLowerCase toString toUpperCase type unmark unmarkAll %
useRegularExpression variablePrefix wordWrap workingDirectory %
%
Activefile Activelanguage Activesection Activeview Buf Case Childsection %
Closecomment Closetoken Cursorline Cursorlocation Direction End Endlocation %
Endy Error File Find Findresult Fold From Indent Indentstring Indenttoken Index %
Lastline Level Line Location Opencomment Opentoken Output Paragraph Range Regex %
Repr Row Rowrange Scope ScriptError Section Selectedtext Selection %
Selectionstart Size Smartlocation Start Startlocation Text Textsection Title %
Uid Whole X Y _Closecomment _Endlocation _Endy _Indent _Indentstring %
_Opencomment _Opentoken _Output _Range _Repr _Row _Text _Title _Uid _find %
_findborders _load _print append appendcomment appendnewline assert biggest %
blockify cbsdefinition clear clearprint clone copy cut dedentblock dedentnorm %
definition down empty fold indentblock indentnorm init iscloser isdescription %
isempty isfirst islast islink isopener issamethan issection istext lcrop %
lcropat left levelat lineat lstrip lstripchar lstripchars lstripstring %
matchingcloser matchingopener next normdirection normend outcomment paragraphat %
paste prepend prependcomment prev print printborder prnt putcursor %
pythondefinition rcrop rcropat refresh refreshdata refreshdimensions replace %
right rstrip rstripchar rstripchars rstripstring select show smallest %
somethingselected startundo stopundo strip times tostring tostringbuffer %
totextblock unfold unoutcomment up wrap
//[cf]
//[of]words-2:~ Words 2 (Code Browser only)
//[c]Copied from the docs.
//[c]~ words-2 = %
//[c]~ Boolean Char Integer Nil String StringBuffer %
//[c]~ %
//[c]~ Application FindData FindResult Frame Language Process Settings TextBlock %
//[c]~ TextFile TextLink TextRow TextSection TextView Window %
//[c]~ %
//[c]~ _add _and _at _div _eq _ge _gt _le _lt _mod _mul _ne _neg _not _or _shl _shr %
//[c]~ _sub _xor activateWindow activeFile activeSection activeView activeWindow %
//[c]~ addComment addLink addSection addText adjustPage autoIndentation basicNew %
//[c]~ centerPage changeElasticTabStops changeFixedFont changeShowLineType %
//[c]~ charDelimiter charEscapeChar charPrefix closeComment closeComment2 closeDialog %
//[c]~ closeWindow column copyBlock copySelection cursorColumn cursorLine %
//[c]~ deleteSelection direction each eachFile eachLanguage eachLine eachRow %
//[c]~ elasticTabStops endsWith escapeChar exit exitCode expandTabulation filename %
//[c]~ find findFile findLanguage fromString gotoAbsoluteLine gotoLocalLine hexaPrefix %
//[c]~ id indexOf insertChar insertString isCaseSensitive isEmpty isMarked isModified %
//[c]~ isNil isReadOnly isSelectionEmpty language lastText layout line lineComment %
//[c]~ lineComment2 link lt_comment lt_link lt_section lt_text mark markColumn %
//[c]~ markLine match matchCase matchWholeWord messageBox mode moveCursor %
//[c]~ multilineCharDelimiter multilineStringDelimiter name new newWithFilename %
//[c]~ newWithTitle notEmpty notNil open openComment openComment2 openFilename %
//[c]~ openSection outputFile parent path preprocessor range regexEscapeChar %
//[c]~ relativeIndentation remove removeAll removeAllMarkers removeRange replaceAll %
//[c]~ replaceSelection replaceText root rootFile row rowIsEmpty rowLink rowNotEmpty %
//[c]~ rowSection rowText rowType rowsSize run save saveAllFiles saveFile scope %
//[c]~ searchFile searchString section select selectedText setCaseSensitive %
//[c]~ setDirection setFilename setLanguage setLastText setLayout setLinkProperties %
//[c]~ setMatchWholeWord setReadOnly setRegularExpression setRowId setRowPath %
//[c]~ setRowText setScope setSearchString setSectionProperties setShowLineType %
//[c]~ setShowTabs setWordWrap setWorkingDirectory settings showLineType showOutput %
//[c]~ showSection showTabs size startGroup startsWith stdout stopGroup %
//[c]~ stringDelimiter stringEscapeChar synchronize tabulationSize text title toChar %
//[c]~ toInteger toLowerCase toString toUpperCase type unmark unmarkAll %
//[c]~ useRegularExpression variablePrefix wordWrap workingDirectory
//[cf]
words-3 = true false nil application frame
chars-1 = ,()[]{}=<>+-*
end
//[cf]
//[of]config:Code-Browser-Config
def Code-Browser-Config
prototype = languages.Code
patterns = *.cbc;*.cb-config
stylizer = code-browser-config
line-comment = //
hexa-prefix = #
words-1 = def end
end
//[cf]
//[of]copper:Copper
def Copper
prototype = languages.Code
patterns = *.co
line-comment = //
hexa-prefix = 0x
char-prefix = $
//[of]words-1:Words 1
words-1 = %
and attr break case cond const do else elsif end enum extend function global if %
import method not or ref repeat return static struct switch var while yield
//[cf]
words-3 = false nil true
chars-1 = ()[]{},:?#.
chars-2 = <>=+-&|^@
end
//[cf]
//[of]zinc:Zinc
def Zinc
prototype = languages.Code
patterns = *.zc
stylizer = zinc
layout = list
line-comment = //
open-comment = /*
close-comment = */
string-delimiter = "
string-escape-char = \
hexa-prefix = 0x
char-prefix = $
//[of]:Words 1
words-1 = %
break case const continue def else elsif enum equ end func if import public %
private repeat return sizeof struct switch typedef union while
//[cf]
words-3 = false true
chars-1 = (){}[]$
chars-2 = <>=|+-*~!&%%^
end
//[cf]
//[cf]
//[of]:Markup
//[of]:Markdown
def Markdown
prototype = languages.Text
patterns = *.md
line-comment =
open-comment = <!--
close-comment = -->
end
//[cf]
//[of]TeX:TeX
def TeX
prototype = languages.Text
stylizer = tex
patterns = *.tex;*.sty
line-comment = %%
chars-1 = {}[]=
//[c] Todo: Where to find a complete list of symbols?
//[of]~ Plain TeX:~ Plain TeX
//[c]~ words-1 = %
//[c]~ @M @MM @cclv @cclvi @crfalse @crtrue @foot @if @ins @lign @m @midfalse @midtrue %
//[c]~ @ne @nother @penup @sf @vereq AA AE Arrowvert Big Bigg Biggl Biggm Biggr Bigl %
//[c]~ Bigm Bigr Delta Downarrow Gamma H Im L Lambda Leftarrow Leftrightarrow %
//[c]~ Longleftarrow Longleftrightarrow Longrightarrow O OE Omega P Phi Pi Pr Psi Re %
//[c]~ Relbar Rightarrow S Sigma TeX Theta Uparrow Updownarrow Upsilon Vert Xi aa %
//[c]~ above abovedisplayshortskip abovedisplayskip abovewithdelims accent active %
//[c]~ acute adjdemerits advance advancepageno ae afterassignment aftergroup aleph %
//[c]~ alloc@ allocationnumber allowbreak alpha amalg angle approx arccos arcsin %
//[c]~ arctan arg arrowvert ast asymp atop atopwithdelims b backslash bar baselineskip %
//[c]~ batchmode begingroup beginsection belowdisplayshortskip belowdisplayskip beta %
//[c]~ bf bffam bgroup big bigbreak bigcap bigcirc bigcup bigg biggl biggm biggr bigl %
//[c]~ bigm bigodot bigoplus bigotimes bigr bigskip bigskipamount bigsqcup %
//[c]~ bigtriangledown bigtriangleup biguplus bigvee bigwedge binoppenalty bmod body %
//[c]~ bordermatrix bot botmark bowtie box box255 boxmaxdepth brace braceld bracelu %
//[c]~ bracerd braceru bracevert brack break breve brokenpenalty buildrel bullet bye c %
//[c]~ c@ncel cal cap cases catcode cdot cdotp cdots centering centerline ch@ck char %
//[c]~ chardef check chi choose circ cleaders cleartabs closein closeout clubpenalty %
//[c]~ clubsuit colon columns cong coprod copy copyright cos cosh cot coth count %
//[c]~ count0 count@ countdef cr crcr csc csname cup d dag dagger dashv day ddag %
//[c]~ ddagger ddot ddots deadcycles def defaulthyphenchar defaultskewchar deg delcode %
//[c]~ delimiter delimiterfactor delimitershortfall delta det diamond diamondsuit dim %
//[c]~ dimen dimen@ dimen@i dimen@ii dimendef discretionary displ@y displayindent %
//[c]~ displaylimits displaylines displaystyle displaywidowpenalty displaywidth div %
//[c]~ divide do dospecials dosupereject dot doteq dotfill dots doublehyphendemerits %
//[c]~ downarrow downbracefill dp dt@pfalse dt@ptrue dump edef egroup eject ell else %
//[c]~ empty emptyset end endcsname endgraf endgroup endinput endinsert endline %
//[c]~ endlinechar enskip enspace epsilon eqalign eqalignno eqno equiv errhelp %
//[c]~ errmessage errorstopmode escapechar eta everycr everydisplay everyhbox everyjob %
//[c]~ everymath everypar everyvbox exhyphenpenalty exists exp expandafter f@@t f@t %
//[c]~ fam fi filbreak finalhyphendemerits finph@nt finsm@sh firstmark fivebf fivei %
//[c]~ fiverm fivesy flat floatingpenalty fmtname fmtversion fo@t folio font fontdimen %
//[c]~ fontname footins footline footnote footnoterule footstrut forall frenchspacing %
//[c]~ frown futurelet gamma gcd gdef ge geq gets gg global globaldefs goodbreak grave %
//[c]~ h@false h@true halign hang hangafter hangindent hat hbadness hbar hbox headline %
//[c]~ heartsuit hfil hfill hfilneg hfuzz hgl@ hglue hideskip hidewidth hoffset hom %
//[c]~ hookleftarrow hookrightarrow hphantom hrule hrulefill hsize hskip hss ht %
//[c]~ hyphenation hyphenchar hyphenpenalty i ialign if if@ if@cr if@mid ifcase ifcat %
//[c]~ ifdim ifdt@p ifeof iff iffalse ifh@ ifhbox ifhmode ifinner ifmmode ifnum ifodd %
//[c]~ ifp@ge ifr@ggedbottom iftrue ifus@ ifv@ ifvbox ifvmode ifvoid ifx ignorespaces %
//[c]~ imath immediate in indent inf infty input insc@unt insert insertpenalties int %
//[c]~ interdisplaylinepenalty interfootnotelinepenalty interlinepenalty intop iota it %
//[c]~ item itemitem iterate itfam j jmath jobname joinrel jot kappa ker kern l lambda %
//[c]~ land langle lastbox lastkern lastpenalty lastskip lbrace lbrack lccode lceil %
//[c]~ ldotp ldots le leaders leavevmode left leftarrow leftarrowfill leftharpoondown %
//[c]~ leftharpoonup leftline leftrightarrow leftskip leq leqalignno leqno let lfloor %
//[c]~ lg lgroup lhook lim liminf limits limsup line linepenalty lineskip %
//[c]~ lineskiplimit ll llap lmoustache ln lnot log long longleftarrow %
//[c]~ longleftrightarrow longmapsto longrightarrow loop looseness lor lower lowercase %
//[c]~ lq m@g m@ketabbox m@ne m@th mag magnification magstep magstephalf makefootline %
//[c]~ makeheadline makeph@nt makesm@sh mapsto mapstochar mark mathaccent mathbin %
//[c]~ mathchar mathchardef mathchoice mathclose mathcode mathhexbox mathinner mathop %
//[c]~ mathopen mathord mathpalette mathph@nt mathpunct mathrel mathsm@sh mathstrut %
//[c]~ mathsurround matrix max maxdeadcycles maxdepth maxdimen meaning medbreak %
//[c]~ medmuskip medskip medskipamount message mid midinsert min mit mkern models %
//[c]~ month moveleft moveright mp mscount mskip mu multiply multispan muskip %
//[c]~ muskipdef n@space nabla narrower natural ne nearrow neg negthinspace neq newbox %
//[c]~ newcount newdimen newfam newhelp newif newinsert newlinechar newmuskip newread %
//[c]~ newskip newtoks newwrite next ni noalign nobreak noexpand noindent %
//[c]~ nointerlineskip nolimits nonfrenchspacing nonscript nonstopmode nopagenumbers %
//[c]~ normalbaselines normalbaselineskip normalbottom normallineskip %
//[c]~ normallineskiplimit not notin nu null nulldelimiterspace number nwarrow o %
//[c]~ oalign obeylines obeyspaces odot oe of offinterlineskip oint ointop oldstyle %
//[c]~ omega ominus omit ooalign openin openout openup oplus or oslash otimes outer %
//[c]~ output outputpenalty over overbrace overfullrule overleftarrow overline %
//[c]~ overrightarrow overwithdelims owns p@ p@gefalse p@getrue p@renwd pagebody %
//[c]~ pagecontents pagedepth pagefilllstretch pagefillstretch pagefilstretch pagegoal %
//[c]~ pageinsert pageno pageshrink pagestretch pagetotal par parallel parfillskip %
//[c]~ parindent parshape parskip partial patterns pausing penalty perp ph@nt phantom %
//[c]~ phi pi plainoutput pm pmatrix pmod postdisplaypenalty pr@@@s pr@@@t pr@m@s prec %
//[c]~ preceq predisplaypenalty predisplaysize preloaded pretolerance prevdepth %
//[c]~ prevgraf prim@s prime proclaim prod propto psi qquad quad r@@t %
//[c]~ r@ggedbottomfalse r@ggedbottomtrue radical raggedbottom raggedright raise %
//[c]~ rangle rbrace rbrack rceil read relax relbar relpenalty removelastskip repeat %
//[c]~ rfloor rgroup rho rhook right rightarrow rightarrowfill rightharpoondown %
//[c]~ rightharpoonup rightleftharpoons rightline rightskip rlap rlh@ rm rmoustache %
//[c]~ romannumeral root rootbox rq s@tcols s@tt@b sb scriptfont scriptscriptfont %
//[c]~ scriptscriptstyle scriptspace scriptstyle scrollmode searrow sec setbox %
//[c]~ setminus sett@b settabs sevenbf seveni sevenrm sevensy sfcode sharp shipout %
//[c]~ show showbox showboxbreadth showboxdepth showhyphens showlists showthe sigma %
//[c]~ sim simeq sin sinh sixt@@n skew skewchar skip skip@ skipdef sl slash slfam %
//[c]~ smallbreak smallint smallskip smallskipamount smash smile sp sp@n space %
//[c]~ spacefactor spaceskip spadesuit span special splitbotmark splitfirstmark %
//[c]~ splitmaxdepth splittopskip sqcap sqcup sqrt sqsupseteq ss star string strut %
//[c]~ strutbox subset subseteq succ succeq sum sup supereject supset supseteq surd %
//[c]~ swarrow t t@bb@x t@bbox tabalign tabs tabsdone tabskip tabsyet tan tanh tau %
//[c]~ tenbf tenex teni tenit tenrm tensl tensy tentt textfont textindent textstyle %
//[c]~ the theta thickmuskip thinmuskip thinspace thr@@ tilde time times to toks toks@ %
//[c]~ toksdef tolerance top topins topinsert topmark topskip tracingall %
//[c]~ tracingcommands tracinglostchars tracingmacros tracingonline tracingoutput %
//[c]~ tracingpages tracingparagraphs tracingrestores tracingstats triangle %
//[c]~ triangleleft triangleright tt ttfam ttraggedright tw@ u uccode uchyph undefined %
//[c]~ underbar underbrace underline unhbox unhcopy unkern unpenalty unskip unvbox %
//[c]~ unvcopy uparrow upbracefill updownarrow uplus uppercase upsilon us@false %
//[c]~ us@true v v@false v@true vadjust valign varepsilon varphi varpi varrho varsigma %
//[c]~ vartheta vbadness vbox vcenter vdash vdots vec vee vert vfil vfill vfilneg %
//[c]~ vfootnote vfuzz vgl@ vglue voffset voidb@x vphantom vrule vsize vskip vsplit %
//[c]~ vss vtop wd wedge widehat widetilde widowpenalty wlog wp wr write xdef xi %
//[c]~ xleaders xspaceskip year z@ z@skip zeta
//[cf]
//[of]LaTeX:LaTeX
words-1 = %
Huge LARGE LaTeX LaTeXe Large NewDocumentEnvironment TeX addcontentsline %
address addtocontents addtocounter addtolength addvspace alph alpha appendix %
arabic author backslash baselineskip baselinestretch begin beta bf bfseries %
bibitem bigskip bigskipamount blindtext boldmath cal caption cdots centering %
cftchapnumwidth cftsecindent cftsecnumwidth cftsetpnumwidth cftsetrmarg chapter %
circle cite cleardoublepage clearpage cline closing colorlet copyright csname %
dashbox date ddots dickens documentclass documentstyle dotfill draw em emph end %
endcsname endlist ensuremath enumsentence etocsettocstyle euro evensidemargin %
ex fbox flushbottom fnsymbol footnote footnotemark footnotesize footnotetext %
frac frame framebox frenchspacing hfill hline hrule hrulefill hspace huge %
hyphenation include includegraphics includeonly indent input it item kill label %
large ldots left lefteqn leftmargin line linebreak linethickness linewidth %
lipsum listoffigures listoftables localtableofcontents location makebox %
maketitle markboth markright mathcal mathop mbox medskip multicolumn multiput %
newcommand newcounter newenvironment newfont newlength newline newpage %
newsavebox newtcolorbox newtheorem nobreak nocite node nodeconnect noindent %
nolinebreak nopagebreak normalsize not oddsidemargin onecolumn opening oval %
overbrace overline pagebreak pagenumbering pageref pagestyle par paragraph %
parbox parindent parskip part printindex protect providecommand put qquad quad %
raggedbottom raggedleft raggedright raisebox ref renewcommand right rightmargin %
rm roman rule savebox sbox sc scriptsize section setcounter setlength %
setmainfont setmonofont setsansfont settowidth sf shortex shortstack signature %
sl small smallskip sout space sqrt stackrel subparagraph subsection %
subsubsection tableofcontents telephone textbf textheight textit textmd %
textnormal textrm textsc textsf textsl texttt textup textwidth thanks %