-
Notifications
You must be signed in to change notification settings - Fork 7
/
install.inf
1143 lines (987 loc) · 21.7 KB
/
install.inf
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
[info]
title=CudaExt
desc=Additional commands for CudaText in Commands dialog and Plugins menu
type=cudatext-plugin
subdir=cuda_ext
homepage=https://github.com/kvichans/cuda_ext
api=1.0.299
[item1]
section=events
events=on_console_nav
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Find_repl_cmds
[item9]
section=commands
caption=Cuda&-Ext\&Find/Replace\Find in &Lines...
hotkey=Shift+Ctrl+F
method=dlg_find_in_lines
[item10]
section=commands
caption=Cuda&-Ext\&Find/Replace\-
hotkey=
method=_
[item11]
section=commands
caption=Cuda&-Ext\&Find/Replace\Find clipboard: &next
hotkey=Alt+PgDn
method=find_cb_string_next
[item12]
section=commands
caption=Cuda&-Ext\&Find/Replace\Find clipboard: &previous
hotkey=Alt+PgUp
method=find_cb_string_prev
[item13]
section=commands
caption=Cuda&-Ext\&Find/Replace\Replace &all occurrences of selected string with clipboard
hotkey=Shift+Ctrl+A
method=replace_all_sel_to_cb
[item14]
section=commands
caption=Cuda&-Ext\&Find/Replace\Replace &all in Lines...
hotkey=
method=dlg_replace_in_lines
[item15]
section=commands
caption=Cuda&-Ext\&Find/Replace\Replace &all in Lines with kit...
hotkey=
method=kit_replace_in_lines
[item16]
section=commands
caption=Cuda&-Ext\&Find/Replace\-
hotkey=
method=_
[item17]
section=commands
caption=Cuda&-Ext\&Find/Replace\&Copy word or [string] or 'string' (no selection)
hotkey=
method=copy_term
[item18]
section=commands
caption=Cuda&-Ext\&Find/Replace\&Replace word or [string] or 'string' with clipboard (no selection)
hotkey=
method=replace_term
[item19]
section=commands
caption=Cuda&-Ext\&Find/Replace\E&xpand selection to word or "string" or (string)
hotkey=Alt+'
method=expand_sel
[item20]
section=commands
caption=Cuda&-Ext\&Find/Replace\Expand and Cop&y selection to word or "string" or (string)
hotkey=Shift+Alt+'
method=expand_sel_copy
[item21]
section=commands
caption=Cuda&-Ext\&Find/Replace\-
hotkey=
method=_
[item22]
section=commands
caption=Cuda&-Ext\&Find/Replace\Remove all ASCII chars 0..31 (excluding 9,10,13)
hotkey=
method=remove_unprinted
[item23]
section=commands
caption=Cuda&-Ext\&Find/Replace\Strip HTML tags (without Undo)
hotkey=
method=remove_xml_tags
[item24]
section=commands
caption=Cuda&-Ext\&Find/Replace\Remove lines containing text...
hotkey=
method=remove_lines_with
[item24b]
section=commands
caption=Cuda&-Ext\&Find/Replace\Remove lines containing RegEx...
hotkey=
method=remove_lines_regex
[item25]
section=commands
caption=Cuda&-Ext\&Find/Replace\-
hotkey=
method=_
[item26]
section=commands
caption=Cuda&-Ext\&Find/Replace\Set carets aligned as column...
hotkey=
method=add_carets_for_rect
[item27]
section=commands
caption=Cuda&-Ext\&Find/Replace\Convert multi-line selection to column selection
hotkey=
method=convert_sel_to_column
[item28]
section=commands
caption=Cuda&-Ext\&Find/Replace\Reverse selection text, by lines
hotkey=
method=convert_reverse_selection
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Insert_cmds
[item31]
section=commands
caption=Cuda&-Ext\&Insert\Add indented line abo&ve
hotkey=
method=add_indented_line_above
[item32]
section=commands
caption=Cuda&-Ext\&Insert\Add indented line &below
hotkey=
method=add_indented_line_below
[item33]
section=commands
caption=Cuda&-Ext\&Insert\Add indent and surround selection with { }
hotkey=
method=indent_and_surround_curl_brackets
[item34]
section=commands
caption=Cuda&-Ext\&Insert\-
hotkey=
method=_
[item44]
section=commands
caption=Cuda&-Ext\&Insert\Paste to &first column
hotkey=Shift+Ctrl+V
method=paste_to_1st_col
[item45]
section=commands
caption=Cuda&-Ext\&Insert\Paste with indent ab&ove
hotkey=
method=paste_with_indent_above
[item46]
section=commands
caption=Cuda&-Ext\&Insert\Paste with indent belo&w
hotkey=
method=paste_with_indent_below
;[item47]
;section=commands
;caption=Cuda&-Ext\&Insert\Paste like La&zarus IDE
;hotkey=
;method=paste_as_lazarus
[item48]
section=commands
caption=Cuda&-Ext\&Insert\-
hotkey=
method=_
[item49]
section=commands
caption=Cuda&-Ext\&Insert\Paste trimmed text
hotkey=
method=paste_trimmed
[item50]
section=commands
caption=Cuda&-Ext\&Insert\Trim spaces in selection, left
hotkey=
method=trim_sel_left
[item51]
section=commands
caption=Cuda&-Ext\&Insert\Trim spaces in selection, right
hotkey=
method=trim_sel_right
[item52]
section=commands
caption=Cuda&-Ext\&Insert\Trim spaces in selection, all
hotkey=
method=trim_sel_all
[item53]
section=commands
caption=Cuda&-Ext\&Insert\-
hotkey=
method=_
[item54]
section=commands
caption=Cuda&-Ext\&Insert\F&ill selection by string...
hotkey=
method=fill_by_str
[item55]
section=commands
caption=Cuda&-Ext\&Insert\-
method=_
[item56]
section=commands
caption=Cuda&-Ext\&Insert\Copy Unicode char name
hotkey=
method=copy_unicode_char_name
[item57]
section=commands
caption=Cuda&-Ext\&Insert\Insert &Unicode char...
hotkey=
method=insert_char_by_hex
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Jumps_cmds
[item71]
section=commands
caption=Cuda&-Ext\&Jump\To matching bracket
hotkey=Ctrl+]
method=jump_to_matching_bracket
[item72]
section=commands
caption=Cuda&-Ext\&Jump\-
hotkey=
method=_
[item73]
section=commands
caption=Cuda&-Ext\&Jump\To next changed lines
hotkey=
method=jump_to_next_mod_lines
[item74]
section=commands
caption=Cuda&-Ext\&Jump\To previous changed lines
hotkey=
method=jump_to_prev_mod_lines
[item75]
section=commands
caption=Cuda&-Ext\&Jump\To next saved lines
hotkey=
method=jump_to_next_sav_lines
[item76]
section=commands
caption=Cuda&-Ext\&Jump\To previous saved lines
hotkey=
method=jump_to_prev_sav_lines
[item77]
section=commands
caption=Cuda&-Ext\&Jump\To next working lines
hotkey=
method=jump_to_next_wrk_lines
[item78]
section=commands
caption=Cuda&-Ext\&Jump\To previous working lines
hotkey=
method=jump_to_prev_wrk_lines
[item79]
section=commands
caption=Cuda&-Ext\&Jump\-
hotkey=
method=_
[item80]
section=commands
caption=Cuda&-Ext\&Jump\To line with number in clipboard
hotkey=
method=jump_to_line_by_cb
[item81]
section=commands
caption=Cuda&-Ext\&Jump\-
hotkey=
method=_
[item82]
section=commands
caption=Cuda&-Ext\&Jump\Left into CamelCase/snake_case
hotkey=Shift+Ctrl+Alt+Left
method=jump_left_ccsc
[item83]
section=commands
caption=Cuda&-Ext\&Jump\Right into CamelCase/snake_case
hotkey=Shift+Ctrl+Alt+Right
method=jump_right_ccsc
[item84]
section=commands
caption=Cuda&-Ext\&Jump\Left into CamelCase/snake_case and select
hotkey=
method=jump_sel_left_ccsc
[item85]
section=commands
caption=Cuda&-Ext\&Jump\Right into CamelCase/snake_case and select
hotkey=
method=jump_sel_right_ccsc
[item86]
section=commands
caption=Cuda&-Ext\&Jump\-
hotkey=
method=_
[item87]
section=commands
caption=Cuda&-Ext\&Jump\Bookmark list for current tab...
hotkey=Ctrl+Alt+B
method=dlg_bms_in_tab
[item88]
section=commands
caption=Cuda&-Ext\&Jump\Bookmark list for all tabs...
hotkey=Shift+Alt+B
method=dlg_bms_in_tabs
[item89]
section=commands
caption=Cuda&-Ext\&Jump\Numbered bookmark list for all tabs...
hotkey=Shift+Ctrl+Alt+B
method=dlg_nbms_in_tabs
[item90]
section=commands
caption=Cuda&-Ext\&Jump\-
hotkey=
method=_
[item91]
section=commands
caption=Cuda&-Ext\&Jump\To start of the nearest left staple
hotkey=Shift+Ctrl+PgUp
method=jump_staple_start
[item92]
section=commands
caption=Cuda&-Ext\&Jump\To end of the nearest left staple
hotkey=Shift+Ctrl+PgDn
method=jump_staple_end
[item93]
section=commands
caption=Cuda&-Ext\&Jump\To begin of the current fold-range
method=jump_foldrange_begin
[item94]
section=commands
caption=Cuda&-Ext\&Jump\To end of the current fold-range
method=jump_foldrange_end
[item95]
section=commands
caption=Cuda&-Ext\&Jump\To begin of the parent fold-range
method=jump_foldrange_parent_begin
[item96]
section=commands
caption=Cuda&-Ext\&Jump\To end of the parent fold-range
method=jump_foldrange_parent_end
[item97]
section=commands
caption=Cuda&-Ext\&Jump\To begin of the current/parent fold-range
method=jump_foldrange_combined_begin
[item98]
section=commands
caption=Cuda&-Ext\&Jump\To end of the current/parent fold-range
method=jump_foldrange_combined_end
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Scroll_cmds
[item111]
section=commands
caption=Cuda&-Ext\Scr&oll\Current line to screen ¢er
hotkey=
method=scroll_to_center
[item112]
section=commands
caption=Cuda&-Ext\Scr&oll\Current line to screen &top
hotkey=
method=scroll_to_top
[item113]
section=commands
caption=Cuda&-Ext\Scr&oll\Current line to screen &bottom
hotkey=
method=scroll_to_bottom
[item114]
section=commands
caption=Cuda&-Ext\Scr&oll\-
hotkey=
method=_
[item115]
section=commands
caption=Cuda&-Ext\Scr&oll\Screen to &left
hotkey=
method=scroll_to_left
[item116]
section=commands
caption=Cuda&-Ext\Scr&oll\Screen to &right
hotkey=
method=scroll_to_right
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Nav_cmds
[item141]
section=commands
caption=Cuda&-Ext\&Navigate\Open file by &selected name
hotkey=Shift+Ctrl+O
method=open_selected
[item142]
section=commands
caption=Cuda&-Ext\&Navigate\-
hotkey=
method=_
[item143]
section=commands
caption=Cuda&-Ext\&Navigate\Open file(s) in nearest &right tab(s)...
hotkey=
method=open_file_near_right
[item144]
section=commands
caption=Cuda&-Ext\&Navigate\Open file(s) in nearest &left tab(s)...
hotkey=
method=open_file_near_left
[item145]
section=commands
caption=Cuda&-Ext\&Navigate\-
hotkey=
method=_
[item146]
section=commands
caption=Cuda&-Ext\&Navigate\Navigate by &error in console
hotkey=
method=nav_by_console_err
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Tabs_cmds
[item160]
section=commands
caption=Cuda&-Ext\Ta&bs\Choose tab/panel to switch to
hotkey=Ctrl+P
method=go_back_dlg
menu=0
[item161]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate previously active tab (go &back)
hotkey=Ctrl+[
method=go_back
[item162]
section=commands
caption=Cuda&-Ext\Ta&bs\-
hotkey=
method=_
[item163]
section=commands
caption=Cuda&-Ext\Ta&bs\Move tab to &position...
hotkey=
method=move_tab
[item164]
section=commands
caption=Cuda&-Ext\Ta&bs\Move tab left
hotkey=
method=move_tab_left
[item165]
section=commands
caption=Cuda&-Ext\Ta&bs\Move tab right
hotkey=
method=move_tab_right
[item172]
section=commands
caption=Cuda&-Ext\Ta&bs\&Find tab by title...
hotkey=
method=find_tab
[item173]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab by &number...
hotkey=
method=to_tab_ask_num
[item174]
section=commands
caption=Cuda&-Ext\Ta&bs\-
hotkey=
method=_
[item175]
section=commands
caption=Cuda&-Ext\Ta&bs\Arrange tabs across groups
hotkey=
method=arrange_tabs_grps
[item176]
section=commands
caption=Cuda&-Ext\Ta&bs\-
hotkey=
method=_
[item177]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #1 in group #1
hotkey=Ctrl+1
method=to_tab_g1_t1
[item178]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #2 in group #1
hotkey=Ctrl+2
method=to_tab_g1_t2
[item179]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #3 in group #1
hotkey=Ctrl+3
method=to_tab_g1_t3
[item180]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #4 in group #1
hotkey=Ctrl+4
method=to_tab_g1_t4
[item181]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #5 in group #1
hotkey=Ctrl+5
method=to_tab_g1_t5
[item182]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #6 in group #1
hotkey=Ctrl+6
method=to_tab_g1_t6
[item183]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #7 in group #1
hotkey=Ctrl+7
method=to_tab_g1_t7
[item184]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #8 in group #1
hotkey=Ctrl+8
method=to_tab_g1_t8
[item185]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #9 in group #1
hotkey=Ctrl+9
method=to_tab_g1_t9
[item186]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #1 in group #2
hotkey=Alt+1
method=to_tab_g2_t1
[item187]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #2 in group #2
hotkey=Alt+2
method=to_tab_g2_t2
[item188]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #3 in group #2
hotkey=Alt+3
method=to_tab_g2_t3
[item189]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #4 in group #2
hotkey=Alt+4
method=to_tab_g2_t4
[item190]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #5 in group #2
hotkey=Alt+5
method=to_tab_g2_t5
[item191]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #6 in group #2
hotkey=Alt+6
method=to_tab_g2_t6
[item192]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #7 in group #2
hotkey=Alt+7
method=to_tab_g2_t7
[item193]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #8 in group #2
hotkey=Alt+8
method=to_tab_g2_t8
[item194]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate tab #9 in group #2
hotkey=Alt+9
method=to_tab_g2_t9
[item195]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate last tab in group #1
hotkey=Ctrl+0
method=to_tab_g1_last
[item196]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate last tab in group #2
hotkey=Alt+0
method=to_tab_g2_last
[item197]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate next tab (global loop)
hotkey=
method=to_next_tab
[item198]
section=commands
caption=Cuda&-Ext\Ta&bs\Activate previous tab (global loop)
hotkey=
method=to_prev_tab
[item199]
section=commands
caption=Cuda&-Ext\Ta&bs\-
hotkey=
method=_
[item200]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Close tab in next group
hotkey=
method=close_tab_from_next_group
[item201]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Close tab in previous group
hotkey=
method=close_tab_from_prev_group
[item202]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\-
hotkey=
method=_
[item203]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Switch tab to next in next group
hotkey=
method=view_next_tab_from_next_group
[item204]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Switch tab to next in previous group
hotkey=
method=view_next_tab_from_prev_group
[item205]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Switch tab to previous in next group
hotkey=
method=view_prev_tab_from_next_group
[item206]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Switch tab to previous in previous group
hotkey=
method=view_prev_tab_from_prev_group
[item207]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\-
hotkey=
method=_
[item208]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Switch tab to first in next group
hotkey=
method=view_first_tab_from_next_group
[item209]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Switch tab to first in previous group
hotkey=
method=view_first_tab_from_prev_group
[item210]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Switch tab to last in next group
hotkey=
method=view_last_tab_from_next_group
[item211]
section=commands
caption=Cuda&-Ext\Ta&bs\&Other group\Switch tab to last in previous group
hotkey=
method=view_last_tab_from_prev_group
[item219]
section=commands
caption=Cuda&-Ext\Ta&bs\Close all untitled tabs without confirmation
hotkey=
method=close_all_untitled_wo_ask
[item220]
section=commands
caption=Cuda&-Ext\Ta&bs\Close pair-tab, reopen 2 separate files
hotkey=
method=close_pair_and_reopen
[item220_1]
section=commands
caption=Cuda&-Ext\Ta&bs\Close all unmodified tabs
hotkey=
method=close_saved
[item220_2]
section=commands
caption=Cuda&-Ext\Ta&bs\Sort tabs by title
hotkey=
method=sort_tabs_by_title
[item220_3]
section=commands
caption=Cuda&-Ext\Ta&bs\-
hotkey=
method=_
[item220_4]
section=commands
caption=Cuda&-Ext\Ta&bs\Duplicate tab
hotkey=
method=duplicate_tab
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Move_sep_cmds
[item221]
section=commands
caption=Cuda&-Ext\&Splitters\Expand side panel
hotkey=Shift+Ctrl+.
method=more_tree
[item222]
section=commands
caption=Cuda&-Ext\&Splitters\Shrink side panel
hotkey=Shift+Ctrl+,
method=less_tree
[item223]
section=commands
caption=Cuda&-Ext\&Splitters\-
hotkey=
method=-
[item224]
section=commands
caption=Cuda&-Ext\&Splitters\Expand bottom panel
hotkey=Alt+.
method=more_bottom
[item225]
section=commands
caption=Cuda&-Ext\&Splitters\Shrink bottom panel
hotkey=Alt+,
method=less_bottom
[item226]
section=commands
caption=Cuda&-Ext\&Splitters\-
hotkey=
method=-
[item227]
section=commands
caption=Cuda&-Ext\&Splitters\Expand top-left group
hotkey=Ctrl+.
method=more_main_grp
[item228]
section=commands
caption=Cuda&-Ext\&Splitters\Shrink top-left group
hotkey=Ctrl+,
method=less_main_grp
[item229]
section=commands
caption=Cuda&-Ext\&Splitters\-
hotkey=
method=-
[item230]
section=commands
caption=Cuda&-Ext\&Splitters\Expand active group
hotkey=Shift+Alt+.
method=more_curr_grp
[item231]
section=commands
caption=Cuda&-Ext\&Splitters\Shrink active group
hotkey=Shift+Alt+,
method=less_curr_grp
[item232]
section=commands
caption=Cuda&-Ext\&Splitters\-
hotkey=
method=_
[item233]
section=commands
caption=Cuda&-Ext\&Splitters\&Remove group/panel layout...
hotkey=
method=remove_layout
[item234]
section=commands
caption=Cuda&-Ext\&Splitters\&Save group/panel layout...
hotkey=
method=save_layout
[item235]
section=commands
caption=Cuda&-Ext\&Splitters\&Restore group/panel layout...
hotkey=
method=restore_layout
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Paragraph_cmds
[item241]
section=commands
caption=Cuda&-Ext\Para&graph\Go to beginning
hotkey=Ctrl+Alt+Left
method=go_prgph_bgn
[item242]
section=commands
caption=Cuda&-Ext\Para&graph\Go to end
hotkey=Ctrl+Alt+Right
method=go_prgph_end
[item243]
section=commands
caption=Cuda&-Ext\Para&graph\Go to next
hotkey=
method=go_prgph_nxt
[item244]
section=commands
caption=Cuda&-Ext\Para&graph\Go to previous
hotkey=
method=go_prgph_prv
[item249]
section=commands
caption=Cuda&-Ext\Para&graph\-
hotkey=
method=_
[item250]
section=commands
caption=Cuda&-Ext\Para&graph\Align: Configure...
hotkey=
method=align_prgph_cfg
[item251]
section=commands
caption=Cuda&-Ext\Para&graph\Align: Left justify
hotkey=
method=align_prgph_l
[item252]
section=commands
caption=Cuda&-Ext\Para&graph\Align: Right justify
hotkey=
method=align_prgph_r
[item253]
section=commands
caption=Cuda&-Ext\Para&graph\Align: Center justify
hotkey=
method=align_prgph_c
[item254]
section=commands
caption=Cuda&-Ext\Para&graph\Align: Fully justify
hotkey=
method=align_prgph_f
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Tree_cmds
[item268]
section=commands
caption=Cuda&-Ext\Code &Tree\&Symbols list...
hotkey=Alt++
method=symbol_menu
[item269]
section=commands
caption=Cuda&-Ext\Code &Tree\Symbols list (only &1 up level)...
hotkey=
method=symbol_menu_up1
[item270]
section=commands
caption=Cuda&-Ext\Code &Tree\Symbols list (only &2 up level)...
hotkey=Shift+Alt++
method=symbol_menu_up2
[item271]
section=commands
caption=Cuda&-Ext\Code &Tree\-
hotkey=
method=_
[item272]
section=commands
caption=Cuda&-Ext\Code &Tree\Show ¤t path in statusbar
hotkey=
method=tree_path_to_status
[item273]
section=commands
caption=Cuda&-Ext\Code &Tree\Set &active node, nearest to caret
hotkey=
method=set_nearest_tree_node
[item274]
section=commands
caption=Cuda&-Ext\Code &Tree\&Find node...
hotkey=
method=find_tree_node
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Align_cmds
[item311]
section=commands
caption=Cuda&-Ext\&Align\Reindent selected lines...
hotkey=
method=reindent
[item312]
section=commands
caption=Cuda&-Ext\&Align\Indent lines like the first selected
hotkey=
method=indent_sel_as_1st
;[item313]
;section=commands
;caption=Cuda&-Ext\&Align\Align indentation of selection(s)
;hotkey=
;method=indent_sel_as_bgn
[item314]
section=commands
caption=Cuda&-Ext\&Align\Align in lines by separator...
hotkey=
method=align_in_lines_by_sep
[item315]
section=commands
caption=Cuda&-Ext\&Align\Align comma-separated columns in selected lines
hotkey=
method=align_sel_by_sep
[item316]
section=commands