-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreadme.crt
1321 lines (683 loc) · 33.2 KB
/
readme.crt
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
VEDIT PLUS
A P P E N D I X A
N O T E S F O R C R T V E R S I O N S
A N D
E X A M P L E K E Y B O A R D L A Y O U T S
-1-
VEDIT PLUS Appendix A
CRT Notes
IMPORTANT NOTES FOR CRT VERSIONS
(Televideo Users: See next page!!)
The CRT versions of VEDIT PLUS are very generic in that they can run on
almost any hardware configuration. They are primarily intended to be
used with CRT terminals connected to a micro-computer. (The connection
may be direct, via a network, or over a telephone line.)
Although the CRT versions will even run on an IBM PC, whenever possible,
you should use a "memory mapped" version for the IBM PC, Tandy 2000, DEC
Rainbow, Wang PC and TI Professional. The memory mapped versions have
the advantage of updating the screen about 10 to 20 times faster than
CRT versions. Please contact us if you receive a CRT version when you
should have a memory mapped version.
VEDIT PLUS supports "windows" on CRT terminals. Screen updating is
faster if the terminal has "Insert Line" and "Delete Line" capability.
Fortunately, most terminals and the Z-100 have this. On some
(relatively obscure) MS-DOS machines you will have to install the MS-DOS
ANSI.SYS driver to run VEDIT PLUS. Unfortunately, most ANSI.SYS do not
support Insert Line/Delete line. This slows down screen updating when
using windows.
When using "windows" with the CRT versions, you will find screen
updating faster when using vertical (top/bottom) windows. Horizontal
(left/right) windows can also be used, but scrolling then requires that
the entire window be rewritten. Remember that you can edit multiple
files without having to split the screen into windows.
If your terminal (computer) does not scroll properly with VEDIT PLUS, it
is often due to incorrect installation for the "Number of Screen Lines".
Some terminals and computers have 25 line displays, others have 24
lines.
Please contact us if you have any questions concerning the compatibility
of VEDIT PLUS with your machine.
If you have MS-DOS and a hard disk you should create the subdirectory
"\VEDIT" on the hard disk and copy all files to it. Follow the
directions under "Setting up VEDIT PLUS on an IBM PC-XT or AT" in the
Introduction.
IMPORTANT NOTE ABOUT "STATUS LINES"
The "status line" on the Zenith Z19 and Televideo 950 terminals is not
supported. They must be installed as 24 line terminals.
-2-
VEDIT PLUS Appendix A
CRT Notes
IMPORTANT NOTE ABOUT TELEVIDEO TERMINALS
(For models 910, 912, 920, 925 and 950)
Most Televideo terminals (and terminals emulating a Televideo) do not
support reverse video on individual characters. (A reverse video
character is surrounded by two blank spaces.) Therefore, VEDIT PLUS does
not support reverse video on these terminals. Without reverse video, it
is impossible to see the location of the cursors in multiple windows.
(The main cursor is always visible.)
However, VEDIT PLUS can display the text using the "dim" attribute, and
display messages, the status line and multiple cursors in the "normal"
attribute. This may require an intensity adjustment when using VEDIT
PLUS, but is the preferred setup.
Therefore, the CRT Installation menu has multiple entries for Televideo
terminals. Those marked "DIM" use the "dim" attribute feature. The
alternate entries do not use reverse video or dim characters.
To improve the visibility of the status line, you may want to display it
with dashes "-". This is selected by setting Task 7.4 to "2D" hex.
Task 7.5 should also be set to "2D" hex.
Note: The Televideo models 914, 924 and 970 support reverse video
properly. Therefore, the above discussion does not apply to
them. The 914/924 entry is marked with "REVERSE" as a reminder
that reverse video is supported. The 970 user should select the
"ANSI 3.64" entry.
Note: Since the BACKSPACE key on most Televideo terminals sends the
same code as "Left Arrow" key, the [BACKSPACE] function cannot be
assigned to the BACKSPACE key.
IMPORTANT NOTE ABOUT WYSE 50 TERMINALS
The Wyse 50 can emulate Televideo terminals, but then has the same
problem with reverse video characters. However, VEDIT PLUS uses a
"trick" to support reverse video in the WY50 mode - it writes reverse
video characters as "protected characters" without entering "protected
mode". For this to work you must set up the terminal as follows:
WYSE 50 Setup:
PROT = REV
COMPATIBLE MODE = WY50
You can optionally install VEDIT PLUS to support the WY50 with 132
columns. Select the WYSE 50 (132 COLUMN) from the CRT menu AND set
installation Task 10.2 to 132.
-3-
VEDIT PLUS Appendix A
CRT Notes
INSTALLING THE CRT VERSIONS
The CRT versions are NOT supplied ready to run since we have no way of
knowing what hardware configuration you have. Therefore, there is no
".COM" file on your disk, but rather a ".SET" file. You must perform
the installation before you can use VEDIT PLUS for the first time.
Give the DOS command:
INSTALL VPLUS86C.SET VPLUS.COM
Initially you only have to perform Step 2 of the Installation on pages
299 - 300 in the manual. This will give you the "Default Keyboard
Layout" listed later in this file.
IMPORTANT NOTE FOR NEC APC AND Z-100
The function keys on the NEC APC and Zenith Z-100 can send 8 bit
characters, i.e. characters which have their "high" bit set. To enable
these functions keys for editing purposes you must set Task 7.2 to a "0"
during Installation. (Note: Task 7.2 has a totally different meaning on
the IBM PC. The manual describes the IBM PC meaning.)
-4-
VEDIT PLUS Appendix A
CRT Notes
DESCRIPTION OF FILES ON DISK
General 8080 / Z80 / 8086 Versions
The files actually supplied on your diskette depend upon which version
of VEDIT PLUS you purchased. You will have to perform the Installation,
described in the manual, to produce a runnable VEDIT PLUS.
INSTALL.EXE The program used to perform the Installation. The manual
describes the use of this program and the "SET" files
below. (Note: file name is INSTALL.CMD for CP/M-86 and
INSTALL.COM for CP/M.)
INSTALL.INI Data file needed to perform CRT version Installation.
Must be on same drive as INSTALL.EXE.
INTMOD.EXE The program used to add, delete or change entries from
the CRT terminal menu during Installation. Modifies the
file INSTALL.INI. The program is self-prompting and its
operation is described in the file NEWCRT.DOC.
VPLUSZC.SET File for producing the Z80 CRT version.
VPLUS8C.SET File for producing the 8080 CRT version.
VPLUSZM.SET File for producing the Z80 Memory mapped version.
VPLUS8M.SET File for producing the 8080 Memory mapped version.
VPLUS86C.SET File for producing the 8086 CRT version.
VPHELP.HLP Help file accessed by "H" command. The help file may be
edited to better fit your needs.
VPEHELP.HLP Help file accessed by "EH" command.
VVHELP.HLP Help file accessed by [HELP] function.
PRINT.VDM Simple print formatting command macro.
COMPARE.VDM Sophisticated split screen file comparison/merge command
macro.
SORT.VDM Command macro to sort a mailing list.
CV203.VDM Command macro which converts version 2.02 macros into
2.03 macros.
-5-
VEDIT PLUS Appendix A
CRT Notes
STRIPV.VDM Command macro which strips comments from VEDIT PLUS
macros. Primarily for CP/M (8080 / Z80) machines, where
it is important to save memory space.
MENU.VDM Macro to make Command Mode "Menu" driven.
MENU.INI Macro which should be renamed to "VEDIT.INI" to enable
the MENU.VDM file.
KEYS.ART Graphic representation of the Default Keyboard Layout.
This file can be used to replace the first two "screens"
of the VVHELP.HLP file.
WHATS.NEW Overview for existing VEDIT users of the new features in
this release.
ERRATA.DOC IMPORTANT documentation about corrections in the manual
and last minute enhancements.
NEWCRT.DOC Description of how to use INTMOD program to add new CRT
terminals to the customization menu or modify existing
entries.
README.CRT This appendix supplied on disk.
-6-
VEDIT PLUS Appendix A
CRT Notes
PERSONAL KEYBOARD LAYOUT
[CURSOR UP]
[CURSOR DOWN]
[CURSOR RIGHT]
[CURSOR LEFT]
[BACK TAB]
[TAB CURSOR]
[ZIP]
[LINE TOGGLE]
[NEXT LINE]
[SCROLL UP]
[SCROLL DOWN]
[SCROLL RIGHT]
[SCROLL LEFT]
[PREVIOUS WORD]
[NEXT WORD]
[PREVIOUS PARAGRAPH]
[NEXT PARAGRAPH]
[PAGE UP]
[PAGE DOWN]
[SCREEN TOGGLE]
[INSERT]
[DELETE]
[BACKSPACE]
[DEL PREVIOUS WORD]
[DEL NEXT WORD]
[ERASE TO END OF LINE]
[ERASE LINE]
[UNDO]
[TAB CHARACTER]
[NEXT CHAR LITERAL]
[REPEAT]
[FIND]
[REPLACE]
[CANCEL]
[INDENT]
[UNDENT]
[FORMAT PARAGRAPH]
[MACRO]
[VISUAL EXIT]
[VISUAL ESCAPE]
[DEFINE]
[HELP]
[GOTO]
[FILE]
[BLOCK]
[PRINT]
[WINDOW]
[USER]
[MISC]
-7-
VEDIT PLUS Appendix A
CRT Notes
DEFAULT KEYBOARD LAYOUT
"UPPER/LOWER CASE ESCAPE SEQUENCES EQUIVALENT?" Yes
[CURSOR UP] <CTRL-E>
[CURSOR DOWN] <CTRL-C>
[CURSOR RIGHT] <CTRL-D>
[CURSOR LEFT] <CTRL-S>
[BACK TAB] <CTRL-Q>
[TAB CURSOR] <CTRL-B>
[ZIP] <CTRL-G>
[LINE TOGGLE] NOT USED
[NEXT LINE] <CTRL-J> Often labeled LINE FEED
[SCROLL UP] <CTRL-R>
[SCROLL DOWN] <CTRL-V>
[SCROLL RIGHT] <CTRL-Y>
[SCROLL LEFT] <CTRL-T>
[PREVIOUS WORD] <CTRL-A>
[NEXT WORD] <CTRL-F>
[PREVIOUS PARAGRAPH] ESC - W
[NEXT PARAGRAPH] ESC - X
[PAGE UP] <CTRL-W>
[PAGE DOWN] <CTRL-X>
[SCREEN TOGGLE] NOT USED
[INSERT] <CTRL-N> Think I[N]sert
[DELETE] <DEL>
[BACKSPACE] <CTRL-H> Often labeled BACKSPACE
[DEL PREVIOUS WORD] ESC - A
[DEL NEXT WORD] ESC - F
[ERASE TO END OF LINE] <CTRL-L>
[ERASE LINE] <CTRL-K> Think [K]ill Line
[UNDO] <CTRL-U>
[TAB CHARACTER] <CTRL-I> Often labeled TAB
[NEXT CHAR LITERAL] ESC - Q
[REPEAT] ESC - R
[FIND] ESC - 2
[REPLACE] ESC - 3
[CANCEL] <CTRL-Z>
[INDENT] <CTRL-P>
[UNDENT] <CTRL-O>
[FORMAT PARAGRAPH] ESC - J Think [J]ustify
[MACRO] ESC - C Think [C]ommand Macro
[VISUAL EXIT] ESC - E
[VISUAL ESCAPE] ESC - ESC
[DEFINE] ESC - D
[HELP] ESC - ?
[GOTO] ESC - G
[FILE] ESC - 0 ESC - "Zero"
[BLOCK] ESC - B
[PRINT] ESC - P
[WINDOW] ESC - 9
[USER] ESC - U
[MISC] ESC - M
-8-
VEDIT PLUS Appendix A
CRT Notes
DEFAULT KEYBOARD LAYOUT (Page 2)
(Built-in Keystroke Macros)
[BLOCK]-C ESC - 4 "Copy to text register"
[BLOCK]-M ESC - 5 "Move to text register"
[BLOCK]-I ESC - 6 "Insert text register"
[GOTO]-M ESC - 7 "Set text marker"
[GOTO]-J ESC - 8 "Jump to text marker"
[GOTO]-H ESC - H "Home"
[GOTO]-Z ESC - Z "Zend"
[CANCEL] ESC - 1 Alternate key for CANCEL
These commonly used menu functions are built-in as keystroke macros.
-9-
VEDIT PLUS Appendix A
CRT Notes
DEFAULT CRT CUSTOMIZATION
4.) PHYSICAL LINES PER PAGE 66
PRINTED LINES PER PAGE 60
LEFT MARGIN FOR PRINTING 12
USE FORM-FEED FOR NEW PAGE Yes
5.) CURSOR TYPE Not Applicable
CURSOR BLINK RATE Not Applicable
INDENT INCREMENT 4
LOWER/UPPER CASE CONVERSION No Conversion
CONDITIONAL CONVERSION CHARACTER ;
DELAY FOR COMMAND MODE SCROLLING 0
RIGHT MARGIN FOR WORD WRAP (0 = OFF) 0
HIGH BIT PROCESSING ON INPUT/OUTPUT 1
CURSOR POSITIONING OPTION 1
HORIZONTAL SCROLL MARGIN 210
HORIZONTAL SCROLL INCREMENT 20
6.) EXPAND TAB WITH SPACES No
AUTO-BUFFERING IN VISUAL MODE Forward & Backward
AUTO-INDENT MODE No
POINT PAST TEXT REGISTER INSERT Yes
EQUATE UPPER/LOWER CASE WHEN SEARCHING Yes
MS-DOS END-OF-FILE PADDING No
REVERSE ALL UPPER AND LOWER CASE KEYS No
SUPPRESS ERROR HANDLING No
USE EXPLICIT TEXT DELIMITERS No
GLOBAL FILE OPERATIONS No
JUSTIFY PARAGRAPHS No
7.) TAB POSITIONS Every 8
KEYBOARD INPUT System
BEGIN IN INSERT MODE No
STATUS LINE CHARACTER 20 hex
SCREEN CONTINUATION CHARACTER AD hex
TAB FILL CHARACTER 20 hex
END-OF-LINE CHARACTER 20 hex
8.) PATTERN MATCH CHARACTER |
COMMAND ITERATION LEFT BRACKET [
COMMAND ITERATION RIGHT BRACKET ]
COMMAND ESCAPE CHARACTER ESC
COUNT FOR COMMAND MODE HELP MESSAGE 3
START UP IN COMMAND MODE No
SPEED OF YOUR COMPUTER IN MHZ 4
-10-
VEDIT PLUS Appendix A
CRT Notes
DEFAULT CRT CUSTOMIZATION (PAGE 2)
9.) ENABLE AUTO-STARTUP (EXECUTE VEDIT.INI) Yes
LOOK FOR HELP AND VEDIT.INI ON CURRENT DRIVE Yes (2)
ALTERNATE DRIVE FOR HELP AND VEDIT.INI FILES None
SIZE OF FREE MEMORY AFTER AUTO-READ (K BYTES) 6
SIZE OF FILE BUFFERING "PAGE" (K BYTES) 12
10.) NUMBER OF SCREEN LINES 24
LENGTH OF DISPLAYED LINE 80
LINE MOVEMENT FOR PAGING 20
TOP LINE FOR CURSOR 3
BOTTOM LINE FOR CURSOR 20
ATTRIBUTE FOR TEXT CHARACTERS 0
ATTRIBUTE FOR SCREEN ERASE 0
ATTRIBUTE FOR STATUS LINE 1
ATTRIBUTE FOR STATUS LINE MESSAGES 1
ATTRIBUTE FOR WINDOW BORDER 0
ATTRIBUTE FOR WINDOW BORDER MESSAGE 1
11.) Not Applicable
12.) Select CRT Terminal Type
Select your terminal (or computer type) from the multi-page menu of
supported terminals. In the unlikely event your terminal is not
listed, you can add it to the menu using the supplied INTMOD
program. This program is documented in the file NEWCRT.DOC.
-11-
VEDIT PLUS Appendix A
CRT Notes
NOTES FOR HEATH H19 / ZENITH Z19 TERMINALS
The example keyboard layout assumes that the terminal is in the "Heath"
mode and not in the ANSI mode. VEDIT PLUS and INSTALL automatically put
the keypad into "Alternate Keypad Mode" and disable this mode on exit.
You may experience extra characters appearing when using the cursor UP
and DOWN keys, especially in conjunction with the REPEAT key. This is
caused by the function keys sending their multi character codes at 9600
Baud, which is too fast for non-interrupt driven software. This is best
solved by making your system interrupt driven. If this is not possible,
implement the cursor movements with control characters and use the
keypad for other functions. It may help to reduce the entered value in
Task 8.8 (relating to processor speed) during Installation, or to use
the "Shifted Keypad Mode".
If you are using your terminal at the undocumented 19,200 baud, you will
need to modify the CRT terminal entry (see NEWCRT.DOC) and increase the
delays for EOS, EOL, INSERT LINE and DELETE LINE. The cursor addressing
will also require a delay of about 4 milliseconds.
Note: The 25th status line on the H19/Z19 is not supported. The
H19/Z19 must be installed as a 24 line terminal.
NOTES FOR Z-100
Be sure you have installed TASK 7.2 to a value of "0".
VEDIT PLUS automatically puts the Z-100 into a mode of "disabled key
expansion" since this allows maximum flexibility in the keyboard layout.
In particular, it allows use of the Shifted arrow keys, and the use of
[CANCEL] in Command Mode.
Normal key expansion is restored when VEDIT PLUS is exited. INSTALL
also puts the Z-100 into this mode. (The Z100SET file used in previous
versions of VEDIT PLUS is no longer needed.)
-12-
VEDIT PLUS Appendix A
CRT Notes
EXAMPLE KEYBOARD LAYOUT FOR THE ZENITH Z19
"UPPER/LOWER CASE ESCAPE SEQUENCES EQUIVALENT?" Yes
[CURSOR UP] <Up Arrow>
[CURSOR DOWN] <Down Arrow>
[CURSOR RIGHT] <Right Arrow>
[CURSOR LEFT] <Left Arrow>
[BACK TAB] <HOME> On Keypad
[TAB CURSOR] <.> On Keypad
[ZIP] <0> On Keypad
[LINE TOGGLE] <CTRL-A>
[NEXT LINE] <LINE FEED>
[SCROLL UP] SHIFT <Up Arrow>
[SCROLL DOWN] SHIFT <Down Arrow>
[SCROLL RIGHT] SHIFT <Right Arrow>
[SCROLL LEFT] SHIFT <Left Arrow>
[PREVIOUS WORD] <BLUE>
[NEXT WORD] <RED>
[PREVIOUS PARAGRAPH] SHIFT <IC>
[NEXT PARAGRAPH] SHIFT <IL>
[PAGE UP] <IC>
[PAGE DOWN] <IL>
[SCREEN TOGGLE] <CTRL-W>
[INSERT] <ENTER> "ENTER" on Keypad
[DELETE] <DELETE>
[BACKSPACE] <BACK SPACE>
[DEL PREVIOUS WORD] <CTRL-S>
[DEL NEXT WORD] <CTRL-D>
[ERASE TO END OF LINE] <CTRL-Z>
[ERASE LINE] <CTRL-X>
[UNDO] <CTRL-U>
[TAB CHARACTER] <TAB>
[NEXT CHAR LITERAL] <CTRL-Q>
[REPEAT] <CTRL-R>
[FIND] <F2>
[REPLACE] <F3>
[CANCEL] <F1>
[INDENT] <CTRL-L>
[UNDENT] <CTRL-K>
[FORMAT PARAGRAPH] <CTRL-F>
[MACRO] ESC - /
[VISUAL EXIT] <CTRL-E> Used to exit to command mode.
[VISUAL ESCAPE] ESC - ESC
[DEFINE] ESC - K Think [K]eystroke macro
[HELP] ESC - <Space Bar>
[GOTO] <DC> On Keypad
[FILE] ESC - F
[BLOCK] <WHITE>
[PRINT] <CTRL-P>
[WINDOW] ESC - W
[USER] SHIFT <DL>
[MISC] <DL>
-13-
VEDIT PLUS Appendix A
CRT Notes
EXAMPLE KEYBOARD LAYOUT FOR THE ZENITH Z19
(Built-in Keystroke Macros)
[BLOCK]-C <F5> "Copy to text register"
[BLOCK]-M <ERASE> "Move to text register"
[BLOCK]-I <F4> "Insert text register"
[GOTO]-H ESC - <CTRL-H> "Home"
[GOTO]-Z ESC - <CTRL-Z> "Zend"
-14-
VEDIT PLUS Appendix A
CRT Notes
EXAMPLE KEYBOARD LAYOUT FOR THE Z-100
"UPPER/LOWER CASE ESCAPE SEQUENCES EQUIVALENT?" No
[CURSOR UP] <Up Arrow>
[CURSOR DOWN] <Down Arrow>
[CURSOR RIGHT] <Right Arrow>
[CURSOR LEFT] <Left Arrow>
[BACK TAB] <HOME> on keypad
[TAB CURSOR] <.> on keypad
[ZIP] <0> on keypad
[LINE TOGGLE] <-> on keypad
[NEXT LINE] <LINE FEED>
[SCROLL UP] SHIFT <Up Arrow>
[SCROLL DOWN] SHIFT <Down Arrow>
[SCROLL RIGHT] SHIFT <Right Arrow>
[SCROLL LEFT] SHIFT <Left Arrow>
[PREVIOUS WORD] <8> on keypad
[NEXT WORD] <9> on keypad
[PREVIOUS PARAGRAPH] <5> on keypad
[NEXT PARAGRAPH] <2> on keypad
[PAGE UP] <4> on keypad
[PAGE DOWN] <1> on keypad
[SCREEN TOGGLE] <CTRL-S>
[INSERT] <ENTER> on keypad
[DELETE] <DELETE>
[BACKSPACE] <BACK SPACE>
[DEL PREVIOUS WORD] <SHIFT-8> <8> on keypad
[DEL NEXT WORD] <SHIFT-9> <9> on keypad
[ERASE TO END OF LINE] <CTRL-Z>
[ERASE LINE] <CTRL-X>
[UNDO] <CTRL-U>
[TAB CHARACTER] <TAB>
[NEXT CHAR LITERAL] <CTRL-Q>
[REPEAT] <CTRL-R>
[FIND] <F1>
[REPLACE] <SHIFT- F1>
[CANCEL] <F0>
[INDENT] <F8>
[UNDENT] <F7>
[FORMAT PARAGRAPH] <CTRL-F>
[MACRO] <F2>
[VISUAL EXIT] <INS LINE> Exit to command mode
[VISUAL ESCAPE] ESC - ESC
[DEFINE] <CTRL-D>
[HELP] <HELP>
[GOTO] <3> On Keypad
[FILE] <F3>
[BLOCK] <F9>
[PRINT] <CTRL-P>
[WINDOW] <F4>
[USER] <F5>
[MISC] <F6>
-15-
VEDIT PLUS Appendix A
CRT Notes
EXAMPLE KEYBOARD LAYOUT FOR THE Z-100
(Built-in Keystroke Macros)