summaryrefslogtreecommitdiffstats
path: root/tde-i18n-nl/docs/tdebase/kate/menus.docbook
blob: 569c834fe486520cf33c890f0544a6d95368414c (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
<chapter id="menu-entries">
<title>Menu Entries</title>

<sect1 id="file-menu">
<title>The <guimenu>File</guimenu> Menu</title>

<variablelist>
<varlistentry>
<term>
<anchor id="new"/>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>N</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>New</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
This command <action>starts a new document</action> in the editing
window.  In the <guibutton>Filelist</guibutton> on the left the new file
is named <emphasis>Untitled</emphasis>.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="open"/>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>O</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>Open</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
This command does not <action>open a file</action>. It
launches &kde;'s open file dialog box which waits for you
to select the files you want to open.
</para>

<para>
<!-- TODO: sorry, isn't this *way* to detailed??? (dnaber) -->
The open file dialog box works like a simple version of &konqueror;. Use
your &LMB; to click on a file name to select it. Double-click on a file
name to open that file. Once you've selected a file name, you can also
press the <guibutton>OK</guibutton> button to open the
file.
</para>
<tip>
<para>
Select multiple files by holding down the &Ctrl; or the
&Shift; key along with the &LMB;.
<keycombo action="simul">
&Ctrl;<mousebutton>Left</mousebutton>
</keycombo>
click selects one file at a time.
<keycombo action="simul">
&Shift;<mousebutton>Left</mousebutton>
</keycombo>
click selects a contiguous set of files.
</para>
</tip>

<para>
Clicking on a directory name in the file selection window
opens that directory and displays its contents.
Clicking on a file name shows a thumbnail view of the file in the
preview window to the right of the file system window.
</para>

<para>
Use the buttons and combo box on the toolbar above the file selection
window to move through the file system or to adjust the properties of
the open file dialog box.
</para>

<para>
Below the file selection window is the Location
combo  box. Type the name of the file you want to edit
here. If you click the arrow on the right of the drop down
box, you can choose from recently used files. Open several
files at once by quoting each file name.
</para>

<para>
Below the Location combo box is the Filter combo box.  Enter file masks
here to filter the kinds of files shown in the selection window. For
example, typing the filter <literal role="extension">*.txt</literal> and
pressing <keycap>Enter</keycap> will limit the display to files with a
<literal role="extension">.txt</literal> extension.  The Filter combo
contains a list of your most recently used filters.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="open-recent"/>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Open Recent</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
This command allows you to <action>open a file</action> from a submenu
that contains a list of recently edited files.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="save"/>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>S</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>Save</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
This command <action>saves your file</action>. Use it often. If the file is
<emphasis>Untitled</emphasis> then
<guimenuitem>Save</guimenuitem> becomes
<guimenuitem>Save As</guimenuitem>.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="save-as"/>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Save As</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Name and rename files</action> with this command.
It launches the save file dialog box. This dialog works just as
the open file dialog box does. You can use it to navigate through
your file system, preview existing files, or filter your file
view with file masks.
</para>

<para>
Type the name you want to give the file you are saving in the
Location combo box and press the
<guibutton>OK</guibutton> button.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="save-all"/>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>L</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>Save All</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
This command <action>saves all open files</action>.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="reload"/>
<menuchoice>
<shortcut>
<keycombo action="simul"><keycap>F5</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>Reload</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Reloads the active file from disk</action>.  This command is
useful if another program or process has changed the file while you have
it open in &kate;
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="open-with"/>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Open with</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
This command launches the open with dialog box that allows you to
<action>select another application to open the active
file</action>. Your file will still be open in &kate;.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="print"/>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>P</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>Print</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Print the active file</action>.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="close"/>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>W</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>Close</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Close the active file</action> with this command. If you
have made unsaved changes, you will be prompted to save
the file before &kate; closes it.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="close-all"/>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Close All</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
This command <action>closes all the files you have open</action>
in &kate;.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="new-window"/>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>New Window</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Opens another instance of &kate;</action>.
The new instance will be identical to your previous instance.
</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="quit"/>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>Q</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>Quit</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
This command <action>closes &kate;</action> and any files you were
editing. If you have made unsaved changes to any of the files you were
editing, you will be prompted to save them.
</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>

<sect1 id="edit-menu">
<title>The <guimenu>Edit</guimenu> Menu</title>
<para>The <guimenu>Edit</guimenu> menu contains a host of commands,
all to work with the currently active document.</para>

<variablelist>
<title>Menu Entries</title>
<varlistentry>
<term>
<anchor id="edit-undo"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Undo</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Undo the last editing command (typing, copying, cutting etc.)</para>
<note><para>If grouped undo is enabled, this may undo several editing commands of the same type, like typing in characters.</para></note>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-redo"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;&Shift;<keycap>Z</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Redo</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Redo the last undo step.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-cut"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>X</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Cut</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Removes selected text if any, and places a copy of the removed text in the clipboard.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-copy"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>C</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Copy</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Copies selected text, if any, to the clipboard.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-paste" />
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>V</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Paste</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Copies the first item in the clipboard into the editor at cursor position.</para>
<note><para>If Overwrite Selection is enabled, the pasted text will overwrite the selection, if any.</para></note>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-select-all"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>A</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Select All</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Selects all text in the editor.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-deselect"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;&Shift;<keycap>A</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Deselect</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Deselects the selected text in the editor if any.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-toggle-block-selection"/>
<menuchoice>
<shortcut><keycombo action="simul"><keycap>F4</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Toggle Block Selection</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Toggles Selection Mode. When the Selection Mode is <quote>BLOCK</quote>, you can make vertical selections,
ie select column 5 to 10 in lines 9 to 15.</para>
<para>The status bar shows the current state of the Selection Mode, either <quote>NORM</quote> or <quote>BLK</quote>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-find"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>F</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Find</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Launch the Find Dialog to allow you to search for text in the edited document.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-find-next"/>
<menuchoice>
<shortcut><keycombo action="simul"><keycap>F3</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Find Next</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Go to the nearest downwards match of the last text or regular expression searched for, starting from cursor position</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-find-previous"/>
<menuchoice>
<shortcut><keycombo action="simul">&Shift;<keycap>F3</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Find Previous</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Go to the nearest upwards match of the last text or regular expression searched for, starting from cursor position</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-replace"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>R</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Replace</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Launch the Replace Dialog to replace one or more instances of a defined text with something else.</para>
</listitem>
</varlistentry>


<varlistentry>
<term>
<anchor id="edit-indent"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>I</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Indent</guimenuitem>
</menuchoice>
</term>
<listitem><!-- FIXME LINK -->
<para>Adds one indent step to the current line, or all lines covered by a possible selection.</para>
<para>The indentation depends on the settings in the Indent Page of the Configuration Dialog.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-unindent"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;&Shift;<keycap>I</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Unindent</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Removes one indent step from the current line, or all lines covered by a possible selection.</para>
<para>The indentation depends on the settings in the Indent Page of the Configuration Dialog.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-comment"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>#</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Comment</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Enclose or prepend the current line, or any selected text, with (a) comment marker(s), according to the rules defined by the
syntax rules for the document. Does nothing if no comment rules are defined.</para>
<para>This is interesting mostly when working with source code, for example with C/C++, perl, python &etc;,
as well as with markup text like <acronym>HTML</acronym>, &XML;, <acronym>CSS</acronym> and so on.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-uncomment"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;&Shift;<keycap>#</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem></guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Remove comment marker(s) from the current line, or a possible selection, according to the
syntax rules for the document.
</para>
<para>See also <link linkend="edit-comment"><guimenu>Edit</guimenu><guimenuitem>Comment</guimenuitem></link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="edit-go-to-line"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>G</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Go to line...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Launches the Go To Line Dialog, allowing you to enter the number of a line to find in
the document</para>
</listitem>
</varlistentry>

</variablelist>

</sect1>

<sect1 id="document-menu">
<title>The <guimenu>Document</guimenu>Menu</title>
<para>The <guimenu>Document</guimenu> menu has two purposes:</para>
<itemizedlist>
<listitem><para>Allowing you to change the document-specific settings for the
currently active document.</para></listitem>
<listitem><para>Choosing which of the open documents to work on</para></listitem>
</itemizedlist>
<para>A menu entry for each open document will be available below the entries documented here.
Clicking one of these will bring the requested document to focus. If you have multiple
frames, an editor for that document will be displayed in the currently active frame.</para>
<variablelist>
<title>Menu items</title>

<varlistentry>
<term>
<anchor id="document-back"/>
<menuchoice>
<shortcut><keycombo action="simul">&Alt;<keycap>Left</keycap></keycombo></shortcut>
<guimenu>Document</guimenu>
<guimenuitem>Back</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>This will bring the previous document in the stack in focus. If you have
multiple frames, an editor for the document will be displayed in the currently
active frame.</para> <para>The order is the order in which documents were
opened, rather than a logical history.  This behavior may change in future
versions of &kate;.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="document-forward"/>
<menuchoice>
<shortcut><keycombo action="simul">&Alt;<keycap>Right</keycap></keycombo></shortcut>
<guimenu>Document</guimenu>
<guimenuitem>Forward</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>This will bring the previous document in the stack in focus. If you have
multiple frames, an editor for the document will be displayed in the currently
active frame.</para>
<para>The order is the order in which the documents were opened,
rather than a logical history.  This behavior may change in future versions of
&kate;.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="document-highlight-mode"/>
<menuchoice>
<guimenu>Document</guimenu>
<guisubmenu>Highlight Mode</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>The <guimenu>Highlight Mode</guimenu> menu allows you to manually
decide which syntax rules to use for highlighting and
<link linkend="edit-comment"><guimenuitem>comment</guimenuitem></link>'ing
the active document. The menu groups the available syntax rule sets into logical groups.</para>
<!-- FIXME link to syntax rules chapter, when written :) -->
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="document-end-of-line"/>
<menuchoice>
<guimenu>Document</guimenu>
<guisubmenu>End of Line</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>This menu allows you to manually set the End of Line mode for
the active document. Changing the mode will replace all line
separators in the document with the character sequence for the new
mode.</para>

<para>The available modes are:</para>

<variablelist>
<varlistentry>
<term><guimenuitem>Unix</guimenuitem></term>
<listitem>
<para>On &UNIX; systems, end of line is a single newline
character.</para></listitem>
</varlistentry>
<varlistentry>
<term><guimenuitem>DOS</guimenuitem></term>
<listitem><para>On <acronym>DOS</acronym> (and &Windows;) systems, end
of line is represented by a carriage return followed by a
newline.</para></listitem>
</varlistentry>

<varlistentry>
<term><guimenuitem>Mac</guimenuitem></term>
<listitem><para>On &Mac; systems, end of line is represented by a by a
carriage return.</para></listitem>
</varlistentry>
</variablelist>
</listitem>
</varlistentry>
</variablelist>
</sect1>

<sect1 id="view-menu">
<title>The <guimenu>View</guimenu> menu</title>

<para>The <guimenu>View</guimenu> menu allows you to manage settings
specific to the active editor, and to manage frames.</para>

<variablelist>
<title>Menu Items</title>

<varlistentry>
<term>
<anchor id="view-split-vertical"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;&Shift;<keycap>L</keycap></keycombo></shortcut>
<guimenu>View</guimenu>
<guimenuitem>Split Vertical</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>This will split the frame (which may be the main editing area) in two equally sized frames,
the new one to the left of the current one. The new frame gets the focus, and will display the
same document as the old one.</para>
<para>See also <link linkend="kate-mdi">Working with the &kate; MDI</link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="view-split-horizontal"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;&Shift;<keycap>T</keycap></keycombo></shortcut>
<guimenu>View</guimenu>
<guimenuitem>Split Horizontal</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Splits the current frame (which may be the main editing area) in two equally sized frames,
the new one at the bottom half. The new frame gets the focus, and displays the same document as
the old one.</para>
<para>See also <link linkend="kate-mdi">Working with the &kate; MDI</link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="view-close-current"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;&Shift;<keycap>R</keycap></keycombo></shortcut>
<guimenu>View</guimenu>
<guimenuitem>Close Current</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Closes the active frame. This is disabled, if there is only one frame
(the main editing area).</para> <para>No documents get closed by closing a
frame &ndash; they will still be available in the <link
linkend="document-menu"><guimenu>Documents</guimenu> Menu</link> as well as in
the File List.</para> <para>See also <link linkend="kate-mdi">Working with the
&kate; MDI</link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="view-show-icon-border"/>
<menuchoice>
<shortcut><keycombo action="simul"><keycap>F6</keycap></keycombo></shortcut>
<guimenu>View</guimenu>
<guimenuitem>Show Icon Border</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>This is a toggle item. Setting it on checked will make the
<!--<link linkend="katepart-iconborder">Icon Border</link> visible in the left//-->
side of the active editor, and vice versa.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="view-show-line-numbers"/>
<menuchoice>
<shortcut><keycombo action="simul"><keycap>F11</keycap></keycombo></shortcut>
<guimenu>View</guimenu>
<guimenuitem>Show Line Numbers</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>This is a toggle Item. Setting it on checked will make a pane displaying
the line numbers of the document visible in the left border of the active editor,
and vice versa.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="view-go"/>
<menuchoice>
<guimenu>View</guimenu>
<guisubmenu>Go</guisubmenu>
</menuchoice>
</term>
<listitem>

<variablelist>

<varlistentry>
<term>
<anchor id="view-go-next-view"/>
<menuchoice>
<shortcut><keycombo action="simul"><keycap>F8</keycap></keycombo></shortcut>
<guimenuitem>Next View</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Move focus to the next frame; the order is following order of creation rather than
that of visual logic. This behavior may change in a future version of &kate;</para>
<para>See also <link linkend="kate-mdi">Working with the &kate; MDI</link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="view-go-previous-view"/>
<menuchoice>
<shortcut><keycombo action="simul">&Shift;<keycap>F8</keycap></keycombo></shortcut>
<guimenuitem>Previous View</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Move focus to the previous frame; the order is following order of creation rather than
that of visual logic. This behavior may change in a future version of &kate;</para>
<para>See also <link linkend="kate-mdi">Working with the &kate; MDI</link></para>
</listitem>
</varlistentry>

</variablelist>

</listitem>

</varlistentry>



</variablelist>

</sect1>

<sect1 id="bookmarks-menu">
<title>The <guimenu>Bookmarks</guimenu> Menu</title>

<para>The <guimenu>Bookmarks</guimenu> menu allows you to work with
the bookmarks in the currently active document.</para>

<para>Below the entries described here, one entry for each bookmark in
the active document will be available. The text will be the first few
words of the marked line. Choose an item to move the cursor to the
start of that line. The editor will scroll as necessary to make that
line visible.</para>

<variablelist>

<title>Menu Items</title>

<varlistentry>
<term>
<anchor id="bookmarks-toggle-bookmark"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>B</keycap></keycombo></shortcut>
<guimenu>Bookmarks</guimenu>
<guimenuitem>Toggle Bookmark</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Sets or removes a bookmark in the current line of the active document. (If it's there, it is removed, otherwise one is set.)</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="bookmarks-clear-bookmarks"/>
<menuchoice>
<guimenu>Bookmarks</guimenu>
<guimenuitem>Clear Bookmarks</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Clears (removes) all bookmarks of the active document.</para>
</listitem>
</varlistentry>


</variablelist>

</sect1>

<sect1 id="tools-menu">

<title>The <guimenu>Tools</guimenu> Menu</title>

<para>The <guimenu>Tools</guimenu> menu contains commands of two categories:
<itemizedlist>
<listitem><para>Tools doing advanced editing of the current document,
for example <link
linkend="tools-menu-editing-command"><guimenuitem>Editing
Command</guimenuitem></link>.</para>
</listitem>
<listitem><para>Tools adding functionality to the application, for example the
<link linkend="tools-menu-find-in-files"><guimenuitem>Find in
Files</guimenuitem></link> tool.</para>
</listitem>
</itemizedlist>
</para>

<variablelist>

<varlistentry>
<term>
<anchor id="tools-menu-editing-command"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;<keycap>M</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Editing Command...</guimenuitem>
</menuchoice>
</term>
<listitem><!-- FIXME LINK, DOCUMENT THAT TODO: add a minimal desc here-->
<para>Launch the Editing Command Dialog</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="tools-menu-find-in-files"/>
<menuchoice>
<shortcut><keycombo action="simul">&Ctrl;&Shift;<keycap>F</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Find in Files...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Launch the Find In Files Dialog to search for a specified text in files on disk.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="tools-menu-apply-word-wrap"/>
<menuchoice>
<guimenu>Edit</guimenu>
<guimenuitem>Apply Word Wrap</guimenuitem>
</menuchoice>
</term>
<listitem><!-- FIXME LINKS TEST MORE? //-->
<para>Apply word wrap to ? according to the settings in the ? </para>
</listitem>
</varlistentry>


<varlistentry>
<term>
<anchor id="tools-menu-spelling"/>
<menuchoice>
<!-- <shortcut><keycombo action="simul"><keycap></keycap><keycap></keycap></keycombo></shortcut> -->
<guimenu>Edit</guimenu>
<guimenuitem>Spelling...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Spell check the current document using the &kde; spell checker</para>
</listitem>
</varlistentry>


</variablelist>


</sect1>

<sect1 id="settings-menu">

<title>The <guimenu>Settings</guimenu> Menu</title>

<para>The <guimenu>Settings</guimenu> menu allows you to change the properties
of the main window, such as showing/hiding toolbars and boxes, and provides
access to the configuration dialogs.</para>

<variablelist>

<varlistentry>
<term>
<anchor id="settings-show-toolbar"/>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Show Toolbar</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Toggles the display of the main toolbar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="settings-show-filelist"/>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Show Filelist</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Toggle the display of the &kate; Filelist</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="settings-show-fileselector"/>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Show Fileselector</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Toggle the display of the &kate; File Selector</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="settings-show-konsole"/>
<menuchoice>
<shortcut><keycombo action="simul"><keycap>F7</keycap></keycombo></shortcut>
<guimenu>Settings</guimenu>
<guimenuitem>Show Konsole</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Toggles the display of the built in terminal emulator.</para>
<para>When activated the first time, the terminal will be created.</para>
<para>When the terminal emulator is displayed, it will get the focus, so that you can start
typing in commands immediately. If the <link linkend="config-dialog-general-sync-konsole">Sync Konsole with Active
Document</link> option is enabled in the <link linkend="config-dialog-general">General Page</link> of the
<link linkend="config-dialog">Main configuration dialog</link>
the shell session will be <command>cd</command>'d to the directory of the active document, if it
is a local file.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="settings-configure-shortcuts"/>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Configure Shortcuts</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Display the the familiar &kde; Keyboard Shortcut Configuration Dialog.</para>
</listitem>
</varlistentry>


<varlistentry>
<term>
<anchor id="settings-configure-toolbars"/>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Configure Toolbars</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Display the the familiar &kde; Toolbar Configuration Dialog.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<anchor id="settings-configure-kate"/>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Configure &kate;</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Launch the <link linkend="config-dialog">Main Configuration Dialog</link></para>
</listitem>
</varlistentry>


</variablelist>

</sect1>

<sect1 id="help-menu">

<title>The <guimenu>Help</guimenu> Menu</title>

<para><!--Surprisingly enough, //-->The <guimenu>Help</guimenu> menu provides
access to the online help available for &kate;; as well as to the usual about
dialogs.</para>

<para>As well as the standard &kde; <guimenu>Help</guimenu> menu items
described below, if you have installed the tdeaddons package with
additional &kate; plugins, you will have a menu entry to show the
Plugins User Manuals.</para>

&help.menu.documentation;

</sect1>

</chapter>