forked from amagnasco/xwpe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.xwpe_eng
2459 lines (1793 loc) · 84.1 KB
/
help.xwpe_eng
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
XWindow Programming Environment (XWPE)
xwpe [ options ] file ...
xwe [ options ] file ...
wpe [ options ] file ...
we [ options ] file ...
XWPE can be used with or without the programming interface.
It has its own X interface but can be used also on a charac-
ter terminal. xwpe fires up the X interface together with
the programming interface. xwe is the X version but without
the special features of the programming interface. In con-
nection with a simple character terminal you can use wpe to
programme and we as editor.
Table of Contents:
What is xwpe ?
The Command-line
The initialization files
The main-menu
Control-character sequences used by xwpe
Changing the Control-character sequences
(Common User Access)
The editor
The Programming-Environment
The debugging-environment
The file-manager
Search and replace functions
The project-file
Commands used for Programming C
Using the help-functions
The GNU General Public License
Credits
What is xwpe ?
xwpe is a X-window programming environment designed for use
on UNIX-systems. It is similar to 'Borland C++ or Turbo Pas-
cal' environments. The differences between the programming
environments from Borland and xwpe is that many compilers
and linkers may be started. From a menu three different
debuggers can be chosen. And of course not only key strokes
can select these options you can also use a mouse.
Errors that occur while compiling and linking a program can
be examined in the sources: The cursor will jump to the
corresponding line in the source-file. Programs using more
than one source-file can be managed with the so called
project-option (see also project-file). The programme can
be started from within the Programming-Environment and
errors may be found using a debugger. The
debugging-environment allows the user to set and unset
breakpoints directly in the source code. The contents of
variables may be displayed in a special window, the
Watch-Window. This window is updated while reaching a
breakpoint. The Stack-Window displays the programme stack.
Help is available for xwpe and the man-pages installed on
the system may be displayed. All this can be reached via the
help-functions.
The editor may be used to edit up to 35 files at the same
time. They are all displayed in a window of their own. A
mouse is used to select special editor function from the top
menu. These function can also be selected by hitting a
special key or combinations of keys. Some of these features
are a complete search and replace function (yes, it can
search for regular expressions) and a file-manager. The
file-manager is used to open, copy, rename and move or
delete files.
The X-window programming environment can be used without the
special programming features. If it is invoked as `xwe'
(`we' if used with a character terminal) it can be used as a
editor e.g. for shell-programming.
Special thanks to all who contribute to this program (see
Credits)
Send questions or problems to Dennis Payne,
Copyright (C) 1993 Fred Kruse xwpe is free. Anyone may
redistribute copies of xwpe to anyone under the terms stated
in the GNU General Public License. The author assumes no
responsibility for errors or omissions or damages resulting
from the use of xwpe or this manual.
Credits
The original xwpe was developed by Fred Kruze.
The manual was translated to English by Lothar Schuette.
Faster screen displaying was provided by Axel Rohde.
The xwpe alpha project was started by Dennis Payne
Additional contributers include:
Anthony Barbachan <[email protected]>
Harry Berman <[email protected]>
Alex Buell <[email protected]>
Guido Draheim <[email protected]>
Kenn Flynn <[email protected]>
German Gomez Garcia <[email protected]>
Stefan Hille <[email protected]>
Roman Levenstein <[email protected]>
Mark Loftis <[email protected]>
Brian O'Donnell <[email protected]>
Alexander Neundorf <[email protected]>
Alexei Pavlov <[email protected]>
Pedro <[email protected]>
Duane Penzien <[email protected]>
Paulo César Pereira de Andrade <[email protected]>
Yarick Rastrigin <[email protected]>
Sebastiano Suraci <[email protected]>
Mark Spieth <[email protected]>
Arjan van Dijk <[email protected]>
Matej Vela <[email protected]>
Brian White <[email protected]>
Martin Zampach <[email protected]>
Special thanks to:
Jussi Hamalainen <[email protected]>
Ronald Holzloehner <[email protected]>
James M. <[email protected]>
Andrei Malyshev <[email protected]>
Tony Stout
Oliver Wilson
and all other testers.
The command-line
xwpe [ options ] file ...
xwe [ options ] file ...
wpe [ options ] file ...
we [ options ] file ...
The possible options are:
-pm The next file is a message-file.
-r Start xwpe in the recover mode. The internal
buffers are saved in files with the postfix `.ESV'
in the name if a signal is caught by xwpe (except
for SIGKILL). If the editor is invoked with the
`-r' option is specified in the command line, the
old session will be recovered.
-sf file
file will be used instead of the personal option
file, $HOME/.xwpe/xwperc.
-so The default options are used. The option file will
not be read.
The following standard X command line options are
available for the X-Window versions.
-display display
This option specifies the X server to contact; see
X(1).
-font font, -fn font
The font to used for the text can be specified with
this option. The default is 8x13.
-geometry geometry, -g geometry
This option specifies the preferred size and and
position of the editor; see X(1).
-iconic
This indicates that xwpe should ask the window man-
ager to start as icon rather than a normal window.
-pcmap This starts xwpe with a private colormap.
The initialization files
On startup (subject to the -sf and -so options), xwpe
reads the personal initialization file $HOME/.xwpe/xwperc.
If no such file exists, the system wide initialization
file, /usr/local/lib/xwpe/xwperc, is read. If neither
file exists, the default options will be used.
xwperc is a text file written by the programming environ-
ment. Although modification by hand is possible comments
will be erased if the options are latter saved from within
xwpe.
X-Resources:
The following resources are available. The application
name is either "xwe" or "xwpe". Both belong to the "Xwpe"
class.
font (class Font)
Specifies the name of the font to use. The default
is ``8x13.''
geometry (class Geometry)
Specifies the preferred size and position of the
editor. Sizes of less than 80 x 25 are ignored.
color1 (class Color1)
...
color16 (class Color16)
xwpe uses 16 colors. The default setting is similar
to the PC-color set.
The main-menu
The WE-menu system is entered by pressing F10, ALT-<SP> (or
<ESC>) from within the editor window. It can be left by
pressing <ESC>. A sub menu can be called directly by press-
ing ALT-<highlighted letter>.
Here is a list of those sub menus:
System-Menu Environment-management
File-Menu file managing
Edit-Menu all functions used for editing
Search-Menu search and replace
Block-Menu block-commands used in the editing
windows.
Run-Menu Programming-Environment (only available
for wpe and xwpe)
Debug-Menu Debugging-Environment (not available for
we and xwe)
Project-Menu programming with more than one source
file (only wpe and xwpe)
Options-Menu toggle options
Window-Menu window management
Help-Menu yes, this is the help system
The System-Menu (Alt-#):
About WE A Display version number and
copyright.
Clear Desktop C Close all windows.
Repaint Desktop R Initialize the desktop and
reopens all windows.
System Info S Displays the current filename,
directory, ...
Show Wastebasket W Display the files saved in the
wastebasket (file-manager).
Delete Wastebasket D Empty wastebasket.
The File-Menu (Alt-F):
File-Manager M Puts the file-manager-window on top.
If it is not found a new one is
opened.
New N Open a new file 'Noname'.
Save S Save this file using the `old' name.
Save As A Use a new name to save this file
(see also file-manager)
Save ALl L Save all files that were changed.
Execute E Execution-Manager
SHell H Start a UNIX-Shell.
Find F Search for a file name (see Find).
Grep G Search for a regular expression in
files (see also Grep)
Print P Print this file.
Quit Q Quitting XWPE
The Edit-Menu (Alt-E):
Cut T Delete the marked text and copy it
into the clipboard.
Copy C Copy the marked text into the
clipboard.
Paste P Insert the buffer behind the cursor.
Show Clipboard S
Delete D Delete the marked text.
Undo U Undo the last change in the text.
Redo R Do the last change one time more.
Load XBuffer L Copy the XWindow-buffer into xwpe's
paste-buffer.
Write to XBuffer W Just the other way round.
The Search-Menu (Alt-S):
Find F Search for a regular expression.
(see also
Search and Replace Functions)
Replace R Search and replace a regular
expression. (see also
Search and Replace Functions)
Search again S Repeat the last Find/Replace.
Go to Line G
The Block-Menu (Alt-B):
Begin Mark B Mark the beginning of a block.
End Mark E Set the end-mark.
Mark Line L Mark this line.
Mark Whole W Mark the entire scope.
Goto Begin G Jump to the beginning of this block.
Goto End N Jump to the end of this block.
Copy C Copy this block.
Move M Move this block.
Delete D Delete this block.
Hide H Delete the set block-marks.
Read R Insert a file at the cursor position.
Write W Write a block to a file.
Move to Right I Move a block to the right.
Move to Left T Move a block to the left.
A block can also be marked by pressing `^k b' at the
entire beginning and `^k k' at the end of the desired block.
xwpe (and xwe) allows marking a block with the mouse:
Holding down the left button and moving over the text marks
it as block.
Holding down Shift and moving with the text cursor around
also marks a block.
The Run-Menu (Alt-R):
Compile C Compile a programme.
(see Programming-Environment)
Make M Create an executable.
Run R Create an executable and start
it.
Install I Install a project.
(see also project-file)
Execute make E Start make(1).
Next Error N Jump to the next Error.
Previous Error P Jump to the previous Error.
Show Definition S Find the definition of an
expression. (see also
Commands used for Programming C
Show Next Def. X Find next definition of an
expression. (see also
Commands used for Programming C
Matching Bracket K Find the matching bracket.
(see also
Commands used for Programming C
Beautify B Beautify a programme.
(see also
Commands used for Programming C
Arguments A Enter the arguments used to
start a programme.
The Debug-Menu (Alt-D):(see also Debugging-Environment)
Toggle Breakpoint B Set/remove a breakpoint.
ReMove all Breakp. M Remove all Breakpoints.
Make Watch W Select a variable to watch.
(see also Watch-Window)
Edit Watch E Edit a watched variable.
Delete Watch D Delete a watched variable.
Remove All Watches A Delete all watched variables.
Show StacK K Show the stack. (see also
Stack-Window)
Goto cursor G Execute to the cursor.
Finish Function F Finish the current function.
Trace T Execute next programme line
(step into any function).
Step S Execute next programme line
(step over any function).
Run/Continue R Start/continue debugging.
Quit Q Exit the debugger.
The Project-Menu (Alt-P):
Open Project P Input a project-file.
The Project-Window is opened.
Close Project C Stop using a project.
Add Item A Add a file to this project.
Delete Item D Delete this file from the project.
Options O Project-Options
The Options-Menu (Alt-O):
Adjust Colors A Change the colors.
Save Options S Save all changes to the options.
Editor E Options used by the editor.
(see also Editor-Options)
File-Manager F Options used by the file-manager
(see also File-Manager-Options)
Programming G Options used by the programming-
environment (Stop at error/warning)
(see also Syntax-Support)
Compiler C Change the options for compilers
(see also Compiler-Options)
Debugger D Select the debugger (gdb, sdb, dbx)
and full-screen/normal mode.
The Window-Menu (Alt-W):
Size/Move S Resize and move this window.
Zoom Z Maximize this window.
Tile T Put all windows one beside the
other.
Cascade A Put all windows like a cascade
one over another.
Next X Choose the next window in the list.
Close C Close this window.
List All L Display a list of all windows. A
window can be selected by pressing
<CR> or Alt-<s>.
Output Window O Display the output (not X11).
Messages M The Message-Window will be opened.
Project P The Project-Window will be opened.
Watches W The Watch-Window will be opened.
The Help-Menu (Alt-H):
Editor E Help to the editor (WE)
Topic Search T UNIX man-pages.
FUnction Index U Index to all UNIX-functions
(see also Function-Index)
Info I The GNU-infosystem.
Goto G Goto help page
Back B Goto the page you see before
Next N Goto the next page
Previous P Goto the previous page
Control-character sequences (special keys) used by xwpe
How to enter the special keys Alt and ESC on a UNIX system
(without XWindow):
Alt-X - is realized by pressing <ESC> X. (X is a printable
character.)
ESC - is realized by the sequence <ESC> <Return>.
The following functions can be reached by control-character
sequences:
Cursor-Movement
Editing
Deleting
Block-Commands
Marker-Commands
Search- and Replace-Commands
Buffer-Commands
Read and Save
Window-Commands
Run-Commands
Commands used for Programming C
Debug-Commands
Help-Commands
Help Editing-Commands
Quit XWPE
Cursor-Movement:
up arrow
Ctrl P move the cursor one line up
down arrow
Ctrl N move the cursor one line down
right arrow
Ctrl F move the cursor one character right
left arrow
Ctrl B move the cursor one character left
Ctrl right arrow
Alt right arrow move the cursor one word right
Ctrl left arrow
Alt left arrow move the cursor one word left
Home
Ctrl A move the cursor to column 1
End
Ctrl E move the cursor to the last column
Ctrl up arrow
Page Up move the cursor one window up
Ctrl down arrow
Page Down move the cursor one window down
Ctrl Page Up
Alt Ctrl A goto first row
Ctrl Page Down
Alt Ctrl E goto last row
Ctrl Home
Alt Ctrl P goto first row of this window
Ctrl End
Alt Ctrl N goto last row of this window
Editing:
<Return> Insert a line-break.
(see also Automatic Indentation)
Ctrl H
<Backspace> Delete a character backwards.
(see also Automatic Indentation)
Ctrl D
Del Delete the character the cursor is on.
<Tab> Indent the text.
(see also Automatic Indentation)
Alt-I Switch insert to overwrite mode and
Insert vice versa.
Alt-J Switch to special-character-insert-mode.
Deleting:
Ctrl T Kill the next word after the cursor.
Ctrl O T Kill the word immediately before the
cursor.
Ctrl Y Delete a whole line
Ctrl Z
Ctrl O Y Kill from the cursor position to the end
of line.
Block-Commands:
Shift + Cursor-movement
mark a block
Ctrl K B Set the beginning mark
Ctrl K K Set the end mark
Ctrl K L Mark this line
Ctrl K X Mark the whole document
Ctrl K A Jump to the beginning mark
Ctrl K Z Jump to the end mark
Ctrl K C Copy block
Ctrl K V Move block
Ctrl K Y Kill block
Ctrl K H Hide block
Ctrl K R Insert a file at the cursor position
Ctrl K W Write a block to a file
Ctrl K I Shift a block to the right
Ctrl K U Shift a block to the left
Marker-Commands:
Ctrl K n Set the marker no. n ( n = 1 - 9 )
Ctrl O n Jump to the marker no. n
Search- and Replace-Commands:
Find
F4
Ctrl O F Search for a string
Alt-F4
Ctrl O A Replace a string with another string
Ctrl-F4
Ctrl L Repeat the last search or replace
Alt G Goto line
Buffer-Commands:
Cut
Shift Del
Ctrl X Kill the marked text to the kill-buffer
Copy
Shift Insert
Ctrl C Copy the marked text to the kill-buffer
Paste
Ctrl Insert
Ctrl V Copy the kill-buffer to the cursor
Ctrl W Display the kill-buffer
UNDO
Ctrl U Undo an unwanted change
REDO
Ctrl R Undo the last undo
Alt Delete Copy the marked text to the X-buffer
Alt Insert Copy the X-buffer to the cursor
Read and Save:
Open
F3 Start the file-manager (Open a file etc.)
F2 Save the file
Window-Commands:
Alt-Z
F5 Zoom the window (maximum size)
Ctrl F5
Alt-F2 Resize and move the window
F6
Alt-N Switch to the next window
Alt-F3 Close this window
Shift F4 Put all windows one beside the other
Shift F5 Put all windows like a cascade one
over another.
Run-Commands:
Alt F9
Alt C Compile (see also Programming-Environment)
F9
Alt M Create an executable
Ctrl F9
Alt R Create an executable and start it
Alt L Install a project (see also project-file)
Alt A Start make(1)
Alt V Jump to the previous error
(see also Message-Window)
Alt T Jump to the next error (see Message-Window)
Commands used for Programming C:
Ctrl O S Search the definition of an expression
(see Programming C)
Ctrl O N Search for the next definition of an
expression (see Programming C)
Ctrl O K Search for a corresponding bracket
(see Programming C)
Ctrl O B Beautify C-source code (see Programming C)
Debug-Commands:
Ctrl F10
Ctrl G R Start the debugger (see
Debugging-Environment)
Ctrl F2
Ctrl G Q Quit the debugger
F7
Ctrl G S Execute next programme line
(step into any function)
F8
Ctrl G N Execute next programme line
(step over any function)
Ctrl F8
Ctrl G B Set/remove a breakpoint
Ctrl G M Remove all Breakpoints
Ctrl F7
Ctrl G W Select a variable to watch
(see also Watch-Window)
Ctrl G E Edit a watched variable
(see also Watch-Window)
Ctrl G D Delete a watched variable
(see also Watch-Window)
Ctrl F6
Ctrl G K Show the stack. (see also Stack-Window)
Ctrl G O Display the output (not X11)
Help-Commands:
F1 Help to the editor (WE)
Ctrl F1 UNIX man-pages
Alt F1 Index to all UNIX-functions
(see also Function-Index)
Help Editing-Commands:
Ctrl O E Insert end of section marker
Ctrl O H Insert header around text block
Ctrl O M Insert highlight marker around text block
Ctrl O U Insert button around text block
Quit XWPE
Alt-X Quit from XWPE
Changing the Control-character sequences
(Common User Access):
Some function-keys may be used in a second form which is
compatible to OSF-Motif and MS-Windows.
These are the changes:
Window management:
F6 -> Ctrl F6 Select next window
Alt F3 -> Ctrl F4 Close window
F5 -> Shift F6 Zoom
Search and Replace:
Ctrl F4 -> F3 Search again
F4 -> Alt F3 Search
Alt F4 -> Ctrl F3 Replace
File operations:
F3 -> F2 Start the file-manager
F2 -> Alt F2 Save
Debugger:
Ctrl F8 -> F5 Set a breakpoint
Ctrl F7 -> Ctrl F5 Watch
Ctrl F6 -> Ctrl F3 Call stack
Quit from XWPE:
Alt X -> Alt F4
Quitting XWPE:
Files that are NOT changed will be closed without any
warning after the Quit-command is send. If any changes have
not been saved, xwpe displays a warning message and allows
the user to save these files:
Yes Save the file
No Close without save
ESC Cancel from quit (no more files are closed)
The editor
The editor may be used to edit up to 35 files at the same
time. They are all displayed in a window of their own
(Editor-Window).
The functions of this editor may be selected by pressing a
special key, using the mouse or selecting it from the menu.
These functions are, besides killing or inserting single
characters from/into the text:
Copy, move and delete a block in one file (see also
Block-Menu).
Copy, move and delete a block between different files (see
also Edit-Menu).
Search and replace strings (see also Search-Menu).
Resize and move the windows used to edit files (see also
(Window-Menu).
Change the behavior of the editor (see also Options-Menu).
Edit, save and manipulate files (see also File-Menu).
Using the help-functions
If the help is selected, a separate window is opened which
displays a case-sensitive help. If Help/Editor is selected
the contents of the editor-functions-help will be displayed.
Most documents include links to other help-pages. They are
highlighted and may be selected by clicking on them with the
mouse or pressing <CR> after the cursor is moved over them.
By pressing <Backspace> the last visited help-page is re-
displayed. This can be done also by clicking on the
highlighted title.
Programmer also want to take a look at Help-Menu.
The file-manager
The purpose of the file-manager is to select files, create
new directories, copy files and directories, move and rename
files and directories, delete and change the access permis-
sions of files and directories.
Alt-N
Select the 'Name'-line where the default entry may be
changed. If the entry is
1. a existing file, pressing <Return> will open this
file for editing
2. a new (non-existing) file, pressing <Return> will
be created
3. a mask (regular expression) selecting the files for
the 'Files'-menu. '*' matches all characters, one char-
ter in the range of "a..z". Pressing <Return> will
select all matching files and the
Alt-F
Select the 'Files'-menu which shows all files in the
selected directory. The marked file can be opened by
pressing <Return> or Alt-E.
Alt-D
Select the 'Directory'-line. The working directory may
be entered here. <Return> selects the w.d.
Alt-T
Select the tree of directories. Pressing the cursor
keys walks through the tree, <Return> selects the work-
ing directory.
Alt-C
Change the working directory to the one entered in the
'Directory'-line.
Alt-E
The file selected in the 'Name'-line will be opened for
editing.
Alt-M
Rename or move into another directory.
Alt-R
Delete the marked file. The file will be moved into the
wastebasket or removed from the disk, this can be
selected from File-Manager-Options.
Alt-L
Create a link for the marked file. If possible, a hard
link will be created. Only if a directory or files that
are saved on different disk-partitions are selected a
soft link will be used.
Alt-O
The file will be copied. The new name must be entered.
Alt-K
Make a new directory named "new.dir". This name may be
changed.
Alt-A
Change the file attributes.
Alt-S
(only avail-able in function Save As) The file will be
saved using the name displayed in the line 'Name'.
<ESC>
Quit the file-manager.
The Execution-Manager:
The purpose of the execution-manager is to start executable
files and shell-scripts. Only files with execute-attribute
will be selected in the 'Files'-menu.
Alt-N
Select the 'Name'-line where the default entry may be
changed. If the entry is
1. a existing file, pressing <Return> will be exe-
cuted.
2. a mask (regular expression) selecting the files for
the 'Files'-menu. '*' matches all characters, one char-
acter in the range of "a..z". Pressing <Return> will
select all matching files and the