-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaee.1.ps
1192 lines (1192 loc) · 66.4 KB
/
aee.1.ps
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
%!PS-Adobe-3.0
%%Creator: groff version 1.09
%%CreationDate: Sun May 4 21:25:36 1997
%%DocumentNeededResources: font Times-Roman
%%+ font Times-Bold
%%+ font Times-Italic
%%DocumentSuppliedResources: procset grops 1.09 0
%%Pages: 11
%%PageOrder: Ascend
%%Orientation: Portrait
%%EndComments
%%BeginProlog
%%BeginResource: procset grops 1.09 0
/setpacking where{
pop
currentpacking
true setpacking
}if
/grops 120 dict dup begin
/SC 32 def
/A/show load def
/B{0 SC 3 -1 roll widthshow}bind def
/C{0 exch ashow}bind def
/D{0 exch 0 SC 5 2 roll awidthshow}bind def
/E{0 rmoveto show}bind def
/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def
/G{0 rmoveto 0 exch ashow}bind def
/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/I{0 exch rmoveto show}bind def
/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def
/K{0 exch rmoveto 0 exch ashow}bind def
/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/M{rmoveto show}bind def
/N{rmoveto 0 SC 3 -1 roll widthshow}bind def
/O{rmoveto 0 exch ashow}bind def
/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/Q{moveto show}bind def
/R{moveto 0 SC 3 -1 roll widthshow}bind def
/S{moveto 0 exch ashow}bind def
/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def
/SF{
findfont exch
[exch dup 0 exch 0 exch neg 0 0]makefont
dup setfont
[exch/setfont cvx]cvx bind def
}bind def
/MF{
findfont
[5 2 roll
0 3 1 roll
neg 0 0]makefont
dup setfont
[exch/setfont cvx]cvx bind def
}bind def
/level0 0 def
/RES 0 def
/PL 0 def
/LS 0 def
/PLG{
gsave newpath clippath pathbbox grestore
exch pop add exch pop
}bind def
/BP{
/level0 save def
1 setlinecap
1 setlinejoin
72 RES div dup scale
LS{
90 rotate
}{
0 PL translate
}ifelse
1 -1 scale
}bind def
/EP{
level0 restore
showpage
}bind def
/DA{
newpath arcn stroke
}bind def
/SN{
transform
.25 sub exch .25 sub exch
round .25 add exch round .25 add exch
itransform
}bind def
/DL{
SN
moveto
SN
lineto stroke
}bind def
/DC{
newpath 0 360 arc closepath
}bind def
/TM matrix def
/DE{
TM currentmatrix pop
translate scale newpath 0 0 .5 0 360 arc closepath
TM setmatrix
}bind def
/RC/rcurveto load def
/RL/rlineto load def
/ST/stroke load def
/MT/moveto load def
/CL/closepath load def
/FL{
currentgray exch setgray fill setgray
}bind def
/BL/fill load def
/LW/setlinewidth load def
/RE{
findfont
dup maxlength 1 index/FontName known not{1 add}if dict begin
{
1 index/FID ne{def}{pop pop}ifelse
}forall
/Encoding exch def
dup/FontName exch def
currentdict end definefont pop
}bind def
/DEFS 0 def
/EBEGIN{
moveto
DEFS begin
}bind def
/EEND/end load def
/CNT 0 def
/level1 0 def
/PBEGIN{
/level1 save def
translate
div 3 1 roll div exch scale
neg exch neg exch translate
0 setgray
0 setlinecap
1 setlinewidth
0 setlinejoin
10 setmiterlimit
[]0 setdash
/setstrokeadjust where{
pop
false setstrokeadjust
}if
/setoverprint where{
pop
false setoverprint
}if
newpath
/CNT countdictstack def
userdict begin
/showpage{}def
}bind def
/PEND{
clear
countdictstack CNT sub{end}repeat
level1 restore
}bind def
end def
/setpacking where{
pop
setpacking
}if
%%EndResource
%%IncludeResource: font Times-Roman
%%IncludeResource: font Times-Bold
%%IncludeResource: font Times-Italic
grops begin/DEFS 1 dict def DEFS begin/u{.001 mul}bind def end/RES 72
def/PL 792 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron/Zcaron
/scaron/zcaron/Ydieresis/trademark/quotesingle/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef
/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent
/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen
/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon
/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O
/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex
/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y
/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft
/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl
/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut
/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash
/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen
/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft
/logicalnot/minus/registered/macron/degree/plusminus/twosuperior
/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior
/ordmasculine/guilsinglright/onequarter/onehalf/threequarters
/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE
/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex
/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis
/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn
/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash
/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def
/Times-Italic@0 ENC0/Times-Italic RE/Times-Bold@0 ENC0/Times-Bold RE
/Times-Roman@0 ENC0/Times-Roman RE
%%EndProlog
%%Page: 1 1
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R/F1 9
/Times-Bold@0 SF -.18(NA)72 84 S(ME).18 E F0
(aee - another \(easy\) editor)108 96 Q F1(SYNOPSIS)72 112.8 Q/F2 10
/Times-Bold@0 SF(aee)108 124.8 Q F0 2.5([o)2.5 G
(ptions ... ] [\214le[s]])-2.5 E F2(rae)108 136.8 Q F0 2.5([o)2.5 G
(ptions ... ] \214le[s])-2.5 E F2(xae)108 148.8 Q F0 2.5([o)2.5 G
(ptions ... ] [\214le[s]])-2.5 E F2(rxae)108 160.8 Q F0 2.5([o)2.5 G
(ptions ... ] \214le[s])-2.5 E F1(DESCRIPTION)72 189.6 Q/F3 10
/Times-Italic@0 SF(aee)108 201.6 Q F0(and)3.298 E F3(xae)3.298 E F0 .798
(are non-modal editors, that is, the user does not need to switch from \
one mode to another to)3.298 F .465(insert and delete te)108 213.6 R
2.965(xt. The)-.15 F .465(editor is al)2.965 F -.1(wa)-.1 G .465
(ys in te).1 F .465(xt mode.)-.15 F .465
(Control sequences and function k)5.465 F -.15(ey)-.1 G 2.965(sa).15 G
.465(re used to)-2.965 F .935(perform the editing functions.)108 225.6 R
.934(In the case of)5.935 F F3(xae)3.434 E F0 3.434(,t)C .934
(he mouse can also be used to position the cursor)-3.434 F 3.434(,a)-.4
G(nd)-3.434 E(perform te)108 237.6 Q(xt selection and pasting.)-.15 E F3
-.15(ra)108 254.4 S(e).15 E F0(and)3.304 E F3(rxae)3.304 E F0 .804
(are the same as)3.304 F F3(aee)3.304 E F0(and)3.304 E F3(xae)3.304 E F0
(respecti)3.304 E -.15(ve)-.25 G(ly).15 E 3.304(,e)-.65 G .804
(xcept that the)-3.454 F 3.304(ya)-.15 G .805
(re restricted to editing the \214le\(s\))-3.304 F .646(named on the in)
108 266.4 R -.2(vo)-.4 G .646(king command line.).2 F .646
(No other \214les may be opened or written, nor may shell operations)
5.646 F(be performed.)108 278.4 Q .391(The arro)108 295.2 R 2.891(wk)
-.25 G -.15(ey)-2.991 G 2.891(s\().15 G .391(up, do)-2.891 F .391
(wn, left, right\) may be used to mo)-.25 F .691 -.15(ve t)-.15 H .391
(he cursor).15 F 5.391(.I)-.55 G 2.891(ft)-5.391 G .391(he k)-2.891 F
-.15(ey)-.1 G .391(board is so equipped, the).15 F F2(pr)108 307.2 Q
-.15(ev)-.18 G F0(and)2.65 E F2(next)2.5 E F0 -.1(ke)2.5 G(ys will mo)
-.05 E .3 -.15(ve t)-.15 H(he cursor to the pre).15 E(vious and ne)-.25
E(xt pages, respecti)-.15 E -.15(ve)-.25 G(ly).15 E(.)-.65 E(The)108 324
Q F2(gold)2.513 E F0 -.1(ke)2.513 G 2.513(yi)-.05 G 2.513(sa)-2.513 G
-.1(ke)-.001 G 2.512(yt)-.05 G .012(hat is used to pro)-2.512 F .012
(vide alternate beha)-.15 F .012(vior for a k)-.2 F -.15(ey)-.1 G 2.512
(,m)-.5 G .012(uch lik)-2.512 F 2.512(eag)-.1 G .012(old function k)
-2.512 F .312 -.15(ey o)-.1 H 2.512(na).15 G .095(calculator k)108 336 R
-.15(ey)-.1 G 2.595(board. So,).15 F .096(for e)2.596 F .096
(xample, function k)-.15 F .396 -.15(ey n)-.1 H .096(umber 7 \().15 F F2
(f7)A F0 2.596(\)m)C .096(ay be used for initiating a search, while)
-2.596 F .06(pressing the)108 348 R F2(gold)2.56 E F0 -.1(ke)2.56 G 2.56
(ya)-.05 G .06(nd then)-2.56 F F2(f7)2.56 E F0 .06
(will produce a prompt for the string to be searched for)2.56 F 5.06(.T)
-.55 G .06(he gold function)-5.06 F 1.206(can be assigned to an)108 360
R 3.706(ya)-.15 G 1.206(ssignable k)-3.706 F -.15(ey)-.1 G 6.207(.B)-.5
G 3.707(yd)-6.207 G(ef)-3.707 E 1.207(ault, the k)-.1 F -.15(ey)-.1 G(s)
.15 E F2(f1)3.707 E F0(and)3.707 E F2(contr)3.707 E(ol-g)-.18 E F0(\()
3.707 E F2(^g)A F0 3.707(\)a)C 1.207(re assigned the gold)-3.707 F
(function.)108 372 Q(The rest of the k)108 388.8 Q -.15(ey)-.1 G 2.5(sb)
.15 G 2.5(yd)-2.5 G(ef)-2.5 E(ault will beha)-.1 E .3 -.15(ve a)-.2 H
2.5(sd).15 G(escribed belo)-2.5 E -.65(w.)-.25 G F1(OPTIONS)72 405.6 Q
F0(The follo)108 417.6 Q(wing are accepted as options when starting)-.25
E F3(aee)2.5 E F0(or)2.5 E F3(xae)2.5 E F0(:)A 99.73(-e T)144 434.4 R
(urn of)-.45 E 2.5(fe)-.25 G(cho from initialization \214le.)-2.5 E
101.39(-i T)144 451.2 R(urn of)-.45 E 2.5(fi)-.25 G(nfo windo)-2.5 E
-.65(w.)-.25 G 101.39(-j T)144 468 R(urn of)-.45 E 2.5(fj)-.25 G
(ournaling.)-2.5 E 99.17(-n T)144 484.8 R(urn of)-.45 E 2.5(fh)-.25 G
(ighlighting of menu and info windo)-2.5 E 2.5(wb)-.25 G(orders.)-2.5 E
100.84(-r Reco)144 501.6 R -.15(ve)-.15 G 2.5(rf).15 G(rom f)-2.5 E
(ailed edit session \(using journal \214le from that session\).)-.1 E
101.39(-t Expand)144 518.4 R(tabs to spaces.)2.5 E(+)144 535.2 Q F3
(number)A F0(Mo)73.81 E .3 -.15(ve c)-.15 H(ursor to start of line).15 E
F3(number)2.5 E F0(.)A(The follo)108 559.2 Q
(wing additional options are a)-.25 E -.25(va)-.2 G(ilable for).25 E F3
(xae)2.5 E F0(only:)2.5 E(-fn)144 576 Q F3(font)2.5 E F0
(Specify a font for use with)80.28 E F3(xae)2.5 E F0 5(.R)C
(esource name)-5 E F2(BaseF)2.5 E(ont)-.25 E F0(.)A(-fg)144 592.8 Q F3
(color)2.5 E F0 2.948(Specify a fore)74.73 F 2.948
(ground color \(color of te)-.15 F 5.448(xt\). Resource)-.15 F(name)
5.447 E F2 -.25(Fo)5.447 G -.18(re).25 G(-).18 E(gr)254 604.8 Q
(oundColor)-.18 E F0(.)A(-bg)144 621.6 Q F3(color)2.5 E F0
(Specify a background color)73.06 E 5(.R)-.55 G(esource name)-5 E F2
(Backgr)2.5 E(oundColor)-.18 E F0(.)A(-geometry)144 638.4 Q F3(=columns)
2.5 E F2(x)A F3(lines)A F0(Specify a geometry for)254 650.4 Q F3(xae)2.5
E F0 5(.R)C(esource name)-5 E F2(Geometry)2.5 E F0(.)A(The)108 667.2 Q
F3(xae)2.536 E F0 .036(speci\214c options may be speci\214ed in the)
2.536 F F2(X-W)2.536 E(indo)-.18 E .036(ws V)-.1 F .036(ersion 11)-1 F
F0(def)2.536 E .036(aults \214le for the user)-.1 F 5.037(.S)-.55 G .037
(ee your)-5.037 F(X-W)108 679.2 Q(indo)-.4 E
(ws documentation for more details.)-.25 E F2(Function K)87 696 Q(eys)
-.25 E F3(aee)108 708 Q F0 1.431(uses the terminal')3.931 F 3.931(sf)
-.55 G 1.431(unction k)-3.931 F -.15(ey)-.1 G 3.931(st).15 G 3.931(op)
-3.931 G 1.431(erform editing tasks.)-3.931 F 1.43(By def)6.431 F 1.43
(ault, only k)-.1 F -.15(ey)-.1 G(s).15 E F2(f1)3.93 E F0(through)3.93 E
F2(f8)3.93 E F0(are)3.93 E 2.606(de\214ned. \(Although)108 720 R 2.606
(at)2.606 G .106(erminal may ha)-2.606 F .406 -.15(ve f)-.2 H .106
(unction k).15 F -.15(ey)-.1 G .106(s, the k).15 F -.15(ey)-.1 G 2.607
(sm).15 G .107(ay not send unique sequences that can be)-2.607 F(1)535
768 Q EP
%%Page: 2 2
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R .585
(recognized by softw)108 84 R .585
(are, or may require particular settings in order to be useful.)-.1 F
.584(If in doubt, ask your sys-)5.584 F(tem administrator)108 96 Q(.\))
-.55 E(center; l l l.)108 120 Q(KEY N)5 E 17.36(AME NORMAL)-.35 F 9.12
(FUNCTION GOLD)2.5 F(FUNCTION)2.5 E 22.94(F1 GOLD)108 144 R 4.39
(GOLD F2)8.23 F 4.39(undel character)25.44 F 4.39(undel line F3)10.64 F
4.39(delete w)25.44 F 22.67(ord undel)-.1 F -.1(wo)6.89 G(rd).1 E 22.94
(F4 adv)108 156 R 6.029(ance w)-.25 F 26.2(ord be)-.1 F 6.028
(gin of line F5)-.15 F 7.96(search search)25.44 F 6.028(prompt F6)8.528
F 12.95(mark cop)25.44 F(y)-.1 E 22.94(F7 cut)108 168 R(paste F8)23.78 E
(adv)25.44 E(ance line)-.25 E(command)21.99 E/F1 10/Times-Bold@0 SF
(Contr)87 184.8 Q(ol K)-.18 E(eys)-.25 E F0 .006(Control k)108 196.8 R
-.15(ey)-.1 G 2.506(sa).15 G .006(re the re)-2.506 F .006
(gular alphabetic k)-.15 F -.15(ey)-.1 G 2.506(sp).15 G .006
(ressed in conjunction with the)-2.506 F F1(contr)2.506 E(ol)-.18 E F0
-.1(ke)2.506 G 2.506(y\()-.05 G .006(sometimes spelled)-2.506 F F1(CTRL)
108 208.8 Q F0 3.995(\). T)B 3.995(op)-.8 G 1.495
(ress control-a \(also noted as)-3.995 F F1(^a)3.995 E F0 1.495
(\), \214rst press)B F1(contr)3.995 E(ol)-.18 E F0 3.995(,t)C 1.495
(hen press ')-3.995 F F1(a)A F0 1.495(', so that both k)B -.15(ey)-.1 G
3.995(sa).15 G(re)-3.995 E(pressed at the same time.)108 220.8 Q
(center; l l l.)128 232.8 Q(KEY N)5 E 17.36(AME NORMAL)-.35 F 9.12
(FUNCTION GOLD)2.5 F(FUNCTION)2.5 E 5.017(Control A)128 256.8 R 5.017
(ascii code)31.72 F 5.017(match Control B)32.29 F 5.017(bottom of te)
32.27 F 12.98(xt append)-.15 F(Control)7.518 E 32.27(Cc)128 268.8 S
30.06(ommand clear)-32.27 F 7.677(to eol control D)10.178 F(be)33.95 E
7.677(gin of line)-.15 F 7.677(pre\214x Control)21.6 F 32.83(Ec)128
280.8 S 5.026(ommand Control F)-32.83 F(forw)33.38 E 1.95(ard format)-.1
F 5.026(Control G)7.526 F 5.73(GOLD GOLD)31.72 F(Control)7.526 E 31.72
(Hb)128 292.8 S 3.536(ackspace Control J)-31.72 F 3.536
(carriage-return Control K)35.05 F 3.536(delete character)31.72 F
(undelete)8.98 E 4.277(char Control L)128 304.8 R 4.277(delete line)
32.83 F 4.277(undelete line Control M)30.62 F 4.278
(carriage-return Control)30.05 F 31.72(Nn)128 316.8 S -.15(ex)-31.72 G
2.907(tp).15 G 3.61(age ne)-2.907 F .407(xt b)-.15 F(uf)-.2 E .407
(fer Control O)-.25 F .407(end of line Control P)31.72 F(pre)33.38 E
2.906(vp)-.25 G 30.6(age pre)-2.906 F(v)-.25 E -.2(bu)128 328.8 S -.25
(ff).2 G 8.066(er Control R).25 F(redra)32.27 E 10.566(ws)-.15 G 13.85
(creen re)-10.566 F -.15(ve)-.25 G 8.066(rse Control T).15 F 8.066
(top of te)32.83 F 8.067(xt Control)-.15 F 31.72(Uc)128 340.8 S 21.28
(ut paste)-31.72 F 1.258(Control V)3.758 F 12.95(mark cop)31.72 F 3.758
(yC)-.1 G 1.258(ontrol W)-3.758 F 1.258(delete w)29.5 F 22.67
(ord undelete)-.1 F -.1(wo)128 352.8 S .511(rd Control X).1 F 7.96
(search search)31.72 F .511(prompt Control Y)3.011 F(adv)31.72 E .511
(ance w)-.25 F 14.04(ord pre)-.1 F 3.012(vw)-.25 G .512(ord Control)
-3.112 F 32.83(Zr)128 364.8 S 4.63(eplace replace)-32.83 F
(prompt Control [ \(Escape\))2.5 E(menu)34.13 E F1(Menu Operations)87
381.6 Q F0 .379(Pop-up menus can be obtained by pressing the)108 393.6 R
F1(escape)2.879 E F0 -.1(ke)2.879 G 2.879(y\()-.05 G(or)-2.879 E F1(^[)
2.879 E F0 .379(if no)2.879 F F1(escape)2.879 E F0 -.1(ke)2.879 G 2.879
(yi)-.05 G 2.879(sp)-2.879 G 2.879(resent\). When)-2.879 F .379(in the)
2.879 F .882(menu, the escape k)108 405.6 R 1.182 -.15(ey c)-.1 H .883
(an be used to lea).15 F 1.183 -.15(ve t)-.2 H .883
(he menu without performing an).15 F 3.383(yo)-.15 G 3.383
(perations. Use)-3.383 F .883(the up and)3.383 F(do)108 417.6 Q .252
(wn arro)-.25 F 2.752(wk)-.25 G -.15(ey)-2.852 G(s,).15 E F1(^u)2.752 E
F0(and)2.752 E F1(^d)2.752 E F0 .252(or the)2.752 F F1(space)2.752 E F0
(or)2.752 E F1(backspace)2.752 E F0 -.1(ke)2.752 G .252(ys to mo)-.05 F
.552 -.15(ve t)-.15 H 2.752(ot).15 G .252
(he desired items in the menu, then)-2.752 F(press)108 429.6 Q F1 -.18
(re)2.5 G(tur).18 E(n)-.15 E F0(to perform the indicated task.)2.5 E
(The main menu in)108 446.4 Q/F2 10/Times-Italic@0 SF(aee)2.5 E F0
(is as follo)2.5 E(ws:)-.25 E F1(lea)128 463.2 Q .2 -.1(ve e)-.25 H
(ditor).1 E F0 .801(If changes ha)164 475.2 R 1.101 -.15(ve b)-.2 H .801
(een made, the user will get a menu prompting whether or not the change\
s).15 F(should be sa)164 487.2 Q -.15(ve)-.2 G(d.).15 E F1(help)128 504
Q F0(Displays a help screen, with all of the k)17.66 E -.15(ey)-.1 G
(board operations and commands.).15 E F1(edit)128 520.8 Q F0 .037
(Pops up a menu to allo)19.89 F 2.537(wt)-.25 G .037(he user to)-2.537 F
F1(mark)2.537 E F0(,)A F1(copy)2.537 E F0(mark)2.537 E .037(ed te)-.1 F
(xt,)-.15 E F1(cut)2.536 E F0(mark)2.536 E .036(ed te)-.1 F .036(xt, or)
-.15 F F1(paste)2.536 E F0(pre)2.536 E(vi-)-.25 E(ously mark)164 532.8 Q
(ed te)-.1 E(xt.)-.15 E F1(\214le operations)128 549.6 Q F0 .031(Pops u\
p a menu for selecting whether to read a \214le, write to a \214le, or \
sa)164 561.6 R .331 -.15(ve t)-.2 H .031(he current contents).15 F .524
(of the editor)164 573.6 R 3.024(,s)-.4 G .524
(end the contents of the editor to a print command \(see the section)
-3.024 F F1(Initializing)3.023 E(aee fr)164 585.6 Q(om a \214le)-.18 E
F0(\), as well as reco)A -.15(ve)-.15 G(ring from a pre).15 E
(vious edit session \(see)-.25 E F1(Reco)2.5 E -.1(ve)-.1 G(ry).1 E F0
(belo)2.5 E(w\).)-.25 E F1 -.18(re)128 602.4 S(draw scr).18 E(een)-.18 E
F0(Pro)164 614.4 Q
(vides a means to repaint the screen if the screen has been corrupted.)
-.15 E F1(settings)128 631.2 Q F0(Sho)164 643.2 Q .54(ws the current v)
-.25 F .541(alues of the operating modes, and mar)-.25 F 3.041(gins. By)
-.18 F .541(pressing return when the)3.041 F .163
(cursor is on a particular item, the v)164 655.2 R .162
(alue can be changed.)-.25 F 1.762 -.8(To l)5.162 H(ea).8 E .462 -.15
(ve t)-.2 H .162(his menu, press the).15 F F1(escape)2.662 E F0 -.1(ke)
164 667.2 S 3.8 -.65(y. \()-.05 H(See).65 E F1(Modes)2.5 E F0(belo)2.5 E
-.65(w.)-.25 G(\)).65 E F1(sear)128 684 Q(ch/r)-.18 E(eplace)-.18 E F0
.588(Pops up a menu in which the user may choose to enter a string to s\
earch for)164 696 R 3.088(,o)-.4 G 3.088(rs)-3.088 G .588(earch for a)
-3.088 F(string already entered, or perform a replace string operation.)
164 708 Q(2)535 768 Q EP
%%Page: 3 3
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R/F1 10
/Times-Bold@0 SF(miscellaneous)128 84 Q F0 1.161
(Pops up a menu that allo)164 96 R 1.161
(ws the user to format the current paragraph, e)-.25 F -.15(xe)-.15 G
1.16(cute a shell com-).15 F(mand, or check the spelling of the te)164
108 Q(xt in the current b)-.15 E(uf)-.2 E(fer)-.25 E(.)-.55 E F1
(Commands)87 124.8 Q F0 1.31
(Some operations require more input than one k)108 136.8 R 1.61 -.15
(ey c)-.1 H 1.311(an pro).15 F 1.311
(vide, or do not need to be so easily accessed.)-.15 F .931
(These commands are entered using the prompt pro)108 148.8 R .931
(vided by pressing the)-.15 F F1(command)3.431 E F0 .931
(\(^E or ^C or gold f8\))3.431 F -.1(ke)108 160.8 S 3.8 -.65(y. T)-.05 H
(he line commands are:).65 E F1(auto)128 189.6 Q F0(format *)A -.45(Tu)
56.95 G(rn automatic paragraph formatting on.).45 E F1(noauto)128 206.4
Q F0(format *)A -.45(Tu)46.39 G(rn automatic paragraph formatting of).45
E 2.5(f\()-.25 G(def)-2.5 E(ault\).)-.1 E F1 -.2(bu)128 223.2 S(f).2 E
F0(fer [)A/F2 10/Times-Italic@0 SF(name)A F0 46.33(]* This)B 1.613
(command will mo)4.113 F 1.913 -.15(ve f)-.15 H 1.613(rom the current b)
.15 F(uf)-.2 E 1.614(fer to the b)-.25 F(uf)-.2 E 1.614(fer with the)
-.25 F .355(name gi)238 235.2 R -.15(ve)-.25 G 2.855(nb).15 G 2.855(yt)
-2.855 G .355(he user)-2.855 F 5.354(.I)-.55 G 2.854(ft)-5.354 G .354
(he b)-2.854 F(uf)-.2 E .354(fer did not pre)-.25 F .354(viously e)-.25
F .354(xist, it is created.)-.15 F .801(If no parameter is gi)238 247.2
R -.15(ve)-.25 G .802(n, then the name of the current b).15 F(uf)-.2 E
.802(fer is displayed.)-.25 F .534(Note: a b)238 259.2 R(uf)-.2 E .534
(fer created with this command is not associated with a \214le, nor)-.25
F(is it journalled.)238 271.2 Q F1(ca)128 288 Q F0 79.73
(se*\210 Speci\214es)B 1.939(that the case of each letter is to be tak)
4.439 F 1.94(en into account in the)-.1 F(search operation.)238 300 Q F1
(noca)128 316.8 Q F0 69.17(se*\210 Speci\214es)B .739
(that there is no distinction between upper and lo)3.24 F .739
(wer case during)-.25 F(search and replace operations \(def)238 328.8 Q
(ault\).)-.1 E F1(cd)128 345.6 Q F2(dir)2.5 E(ectory)-.37 E F0
(Change directory)61.21 E F1(ch)128 362.4 Q F0 70.3(aracter Displays)B
(the ascii code of the character the cursor is on.)2.5 E F1(def)128
379.2 Q F0(ine [gold])A F2 -.1(ke)2.5 G 2.5(ys)-.2 G(tring)-2.5 E F0
11.25(*A)C .105(ssigns all of the string follo)-11.25 F .105(wing the k)
-.25 F .405 -.15(ey d)-.1 H .106(e\214nition to the k).15 F .406 -.15
(ey s)-.1 H .106(peci\214ed by).15 F .84(the user)238 391.2 R 5.84(.T)
-.55 G .839(he commands allo)-5.84 F .839
(wed in the string are described in the SYM-)-.25 F(BOLS section.)238
403.2 Q F1(del)128 420 Q F0 83.06(ete Deletes)B(the current b)2.5 E(uf)
-.2 E(fer \(the initial b)-.25 E(uf)-.2 E(fer may not be deleted\).)-.25
E F1(echo)128 436.8 Q F2(string)2.5 E F0 57.22<8745>2.5 G
(choes the string to the terminal during startup of)-57.22 E F2(aee)2.5
E F0(.)A F1(ed)128 453.6 Q F0(it)A F2(\214lename)2.5 E F0 .237
(Edit another \214le.)58.06 F 2.737(An)5.237 G .737 -.25(ew b)-2.737 H
(uf).05 E .237(fer will be created in which the named \214le can)-.25 F
.161(be edited.)238 465.6 R .161
(If no \214le is speci\214ed, a temporary b)5.161 F(uf)-.2 E .16
(fer name is created for use)-.25 F(within)238 477.6 Q F2(aee)3.107 E F0
5.607(.I)C 3.107(fj)-5.607 G .608
(ournalling is on for the initial \214le being edited, journalling)
-3.107 F(will occur for the ne)238 489.6 Q 2.5(we)-.25 G(dit b)-2.5 E
(uf)-.2 E(fer as well.)-.25 E F1(ei)128 506.4 Q F0 82.5(ght* If)B 1.183
(your terminal has an eight bit character set, then use this command to)
3.684 F(cause)238 518.4 Q F2(aee)3.261 E F0 .761
(to send the eight bit v)3.261 F .762(alue to your terminal.)-.25 F .762
(The def)5.762 F .762(ault condi-)-.1 F .364
(tion is to display the eight bit character as the decimal v)238 530.4 R
.363(alue of the charac-)-.25 F(ter between angle brack)238 542.4 Q
(ets.)-.1 E F1(noei)128 559.2 Q F0 71.94(ght* If)B .313
(your terminal does not ha)2.813 F .613 -.15(ve a)-.2 H 2.813(ne).15 G
.313(ight bit character set, use this command)-2.813 F .062(to cause)238
571.2 R F2(aee)2.562 E F0 .061
(to display eight bit characters as the decimal v)2.562 F .061
(alue of the char)-.25 F(-)-.2 E 2.175(acter between angle brack)238
583.2 R 2.175(ets \(251 is displayed as <251>\).)-.1 F 2.176
(This is the)7.176 F(def)238 595.2 Q(ault condition.)-.1 E F1(exi)128
612 Q F0 77.51(t[!]\210 Exit)B 1.238
(the current edit session writing out the main b)3.738 F(uf)-.2 E 1.237
(fer to the \214le name)-.25 F .851(used in entering the editor)238 624
R 5.852(.T)-.55 G .852(he optional e)-5.852 F .852(xclamation mark allo)
-.15 F .852(ws you to)-.25 F(lea)238 636 Q .985 -.15(ve w)-.2 H .685(it\
hout editing the rest of the \214les in the list of \214les speci\214ed\
when).15 F(the edit session w)238 648 Q(as in)-.1 E -.2(vo)-.4 G -.1
(ke).2 G(d.).1 E F1(exp)128 664.8 Q F0 68.06(and*\210 Causes)B .203
(spaces to be inserted when the tab k)2.703 F .504 -.15(ey i)-.1 H 2.704
(sp).15 G 2.704(ressed. Spaces)-2.704 F .204(\214ll to the)2.704 F(ne)
238 676.8 Q(xt tab stop.)-.15 E F1(noex)128 693.6 Q F0 58.06
(pand*\210 T)B(abs are)-.8 E F2(not)2.5 E F0(replaced with spaces \(def)
2.5 E(ault\).)-.1 E F1<8c6c>128 710.4 Q F0 97.22(eD)C
(isplay the name of the \214le being edited.)-97.22 E(3)535 768 Q EP
%%Page: 4 4
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R/F1 10
/Times-Bold@0 SF(help)128 84 Q F0 86.66<8850>C(ro)-86.66 E .505(vides t\
he user with information about using the editor while in the edi-)-.15 F
(tor)238 96 Q(.)-.55 E F1(help\214le)128 112.8 Q F0 73.88<8754>C
(he location and name of the \214le containing help information.)-73.88
E F1(ind)128 129.6 Q F0 71.38(ent*\210 When)B .326(creating a ne)2.826 F
2.826(wl)-.25 G .326(ine by pressing the carriage return, the ne)-2.826
F 2.827(wl)-.25 G .327(ine will)-2.827 F(ha)238 141.6 Q .406 -.15(ve t)
-.2 H .106(he same indentation \(number of spaces and tabs\) as the pre)
.15 F .105(vious line.)-.25 F F1(noind)128 158.4 Q F0 60.82(ent*\210 T)B
(urns of)-.45 E 2.5(ft)-.25 G(he indent mode \(def)-2.5 E(ault\).)-.1 E
F1(inf)128 175.2 Q(o)-.25 E F0 86.08(*T)2.5 G(urn info windo)-86.53 E
2.5(wo)-.25 G 2.5(n\()-2.5 G(def)-2.5 E(ault\).)-.1 E F1(noinf)128 192 Q
(o)-.25 E F0 75.52(*T)2.5 G(urn info windo)-75.97 E 2.5(wo)-.25 G -.25
(ff)-2.5 G(.).25 E F1(jour)128 208.8 Q(naldir)-.15 E F0(Speci\214es the\
path to the directory where journal \214les are to be created.)65.7 E
F1(justify)128 225.6 Q F0 .055(Justify the right side of the te)82.78 F
.055(xt when using the)-.15 F F1 -.25(fo)2.555 G(rmat).25 E F0 .055
(function to format a)2.555 F(paragraph.)238 237.6 Q F1(nojustify)128
254.4 Q F0 -.45(Tu)72.22 G(rn of).45 E 2.5(fr)-.25 G
(ight justi\214cation of a paragraph \(def)-2.5 E(ault\).)-.1 E F1(li)
128 271.2 Q F0 92.5(ne Displays)B(the current line number)2.5 E(.)-.55 E
F1(lit)128 288 Q F0 73.62(eral*\210 Causes)B 1.042
(characters in search string to be matched one-to-one with charac-)3.542
F(ters in the te)238 300 Q(xt.)-.15 E F1(nolit)128 316.8 Q F0 63.06
(eral*\210 Allo)B(ws metacharacters in the search string \(def)-.25 E
(ault\).)-.1 E F1(mar)128 333.6 Q(g)-.1 E F0(ins *\210)A 1.714
(Causes left and right mar)63.16 F 1.715(gins to be observ)-.18 F 1.715
(ed \(set using)-.15 F F1(leftmar)4.215 E(gin)-.1 E F0(and)4.215 E F1
(rightmar)238 345.6 Q(gin)-.1 E F0(\).)A F1(nomar)128 362.4 Q(g)-.1 E F0
(ins *\210)A(Allo)52.6 E(ws lines to be an)-.25 E 2.5(yl)-.15 G
(ength \(disre)-2.5 E -.05(ga)-.15 G(rds the mar).05 E(gin settings\).)
-.18 E F1(left)128 379.2 Q F0(mar)A(gin [)-.18 E/F2 10/Times-Italic@0 SF
(number)A F0 13.26 2.5(]* S)D .77(et the left mar)-2.5 F .769(gin to)
-.18 F F2(number)3.269 E F0 5.769(.I)C 3.269(fn)-5.769 G 3.269(on)-3.269
G .769(umber is speci\214ed, then the current)-3.269 F -.25(va)238 391.2
S(lue is displayed.).25 E F1(right)128 408 Q F0(mar)A(gin [)-.18 E F2
(number)A F0 6.03 2.5(]* S)D .681(et the right mar)-2.5 F .681(gin to)
-.18 F F2(number)3.181 E F0(\()3.181 E F1(no)A(wrap)-.1 E F0 .682
(must be set for mar)3.182 F .682(gin setting to)-.18 F 2.126(be observ)
238 420 R 4.626(ed\). If)-.15 F 2.126
(no number is speci\214ed, then the current v)4.626 F 2.125
(alue is dis-)-.25 F(played.)238 432 Q F1 -.1(ove)128 448.8 S(r).1 E F0
(strik)A 56.7(e*\210 Causes)-.1 F 1.929(characters to o)4.428 F -.15(ve)
-.15 G(rstrik).15 E 4.429(eo)-.1 G 4.429(rr)-4.429 G 1.929(eplace e)
-4.429 F 1.929(xisting characters instead of)-.15 F(inserting.)238 460.8
Q F1(noo)128 477.6 Q -.1(ve)-.1 G(r).1 E F0(strik)A 46.14(e*\210 Causes)
-.1 F .262
(characters to be inserted into line at current cursor position without)
2.762 F(replacing e)238 489.6 Q(xisting characters \(def)-.15 E(ault\).)
-.1 E F1(print)128 506.4 Q F0 .717(Sends the contents of the current b)
88.33 F(uf)-.2 E .718(fer to the printer)-.25 F 5.718(.T)-.55 G .718
(he command that)-5.718 F 2.159(is used can be speci\214ed in the)238
518.4 R F2(init.ae)4.659 E F0 2.159(\214le, see section)4.659 F F1 2.159
(Initializing aee)4.659 F(Fr)238 530.4 Q(om A File)-.18 E F0(.)A F1
(printcommand)128 547.2 Q F0 38.61<8741>2.5 G(llo)-38.61 E
(ws the setting of the print command \(def)-.25 E(ault: "lp"\).)-.1 E F1
(pwd)128 564 Q F0(Display the current directory)91.66 E(.)-.65 E F1
(quit)128 580.8 Q F0 75.28([!]\210 Quit)B .526
(the current edit session without writing a \214le.)3.026 F .527
(The optional e)5.527 F(xclama-)-.15 E
(tion mark has the same meaning as for the)238 592.8 Q F1(exit)2.5 E F0
(command.)2.5 E F1 -.18(re)128 609.6 S(ad).18 E F2(\214le)2.5 E F0
(Read a \214le into the current b)76.02 E(uf)-.2 E(fer after the cursor)
-.25 E(.)-.55 E F1 -.18(re)128 626.4 S(seq).18 E F0 61.59
(uence Renumber)B(the lines.)2.5 E F1(sa)128 643.2 Q -.1(ve)-.25 G F0
(Sa)92.12 E .3 -.15(ve t)-.2 H(he contents of the main b).15 E(uf)-.2 E
(fer to the \214le being edited.)-.25 E F1(sho)128 660 Q F0 2.5(w[)C
(gold])-2.5 E F2 -.1(ke)2.5 G(y)-.2 E F0
(Displays the function\(s\) assigned to the speci\214ed k)45.97 E -.15
(ey)-.1 G(.)-.5 E F1(status)128 676.8 Q F0 72.5(*\210 A)B
(status line is displayed on the bottom line of the screen.)2.5 E F1
(nostat)128 693.6 Q F0 58.42(us*\210" T)B(urns of)-.45 E 2.5(ft)-.25 G
(he status line \(def)-2.5 E(ault\).)-.1 E F1(stops)128 710.4 Q F2
(number)2.5 E F0 47.78(*T)2.5 G 1.129(abs will be spaced e)-48.58 F -.15
(ve)-.25 G(ry).15 E F2(number)3.628 E F0 1.128
(spaces, unless other tabs are set using)3.628 F(the)238 722.4 Q F1
(tabs)2.5 E F0(command.)2.5 E(4)535 768 Q EP
%%Page: 5 5
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R/F1 10
/Times-Bold@0 SF(tabs)128 84 Q F0([)2.5 E/F2 10/Times-Italic@0 SF
(stops ...)A F0 37.5 2.5(]* S)D .522(ets tabs to)-2.5 F F2(stops)3.022 E
F0 5.522(.A)C .522
(fter the last user de\214ned tab stop, tabs are the normal)-5.522 F
.459(sequence of e)238 96 R -.15(ve)-.25 G .458
(ry eight columns, or as set using the).15 F F1(stops)2.958 E F0 2.958
(command. The)2.958 F(\214rst column is 0.)238 108 Q F1(unta)128 124.8 Q
F0(bs)A F2(stops ...)2.5 E F0 41.1(*R)2.5 G(emo)-41.1 E -.15(ve)-.15 G
2.5(st).15 G(he speci\214ed tab stops.)-2.5 E F1(wind)128 141.6 Q F0
-.25(ow)C 60.52(s*\210 This).25 F .304
(command speci\214es whether or not b)2.804 F(uf)-.2 E .305
(fers are displayed on the screen)-.25 F(simultaneously)238 153.6 Q 5.32
(.I)-.65 G(f)-5.32 E F1(windo)2.82 E(ws)-.1 E F0(\(def)2.82 E .32
(ault\) is speci\214ed, then b)-.1 F(uf)-.2 E .32(fers e)-.25 F .32
(xist on the)-.15 F(screen together)238 165.6 Q(.)-.55 E F1(no)128 182.4
Q(wind)-.1 E F0 -.25(ow)C 50.06(s*\210 This).25 F 1.581
(command speci\214es that there is only one b)4.081 F(uf)-.2 E 1.582
(fer on the screen at a)-.25 F(time.)238 194.4 Q F1(write)128 211.2 Q F2
(\214le)2.5 E F0(Write the current b)73.07 E(uf)-.2 E
(fer out to the speci\214ed \214le.)-.25 E 57.5(0123456789 Enter)128 228
R 2.5(an)2.5 G(umber to go to the line corresponding to that number)-2.5
E(.)-.55 E F1(+)128 244.8 Q F0(or)2.5 E F1(-)2.5 E F2(number)2.5 E F0
47.09<884d>2.5 G -.15(ove)-47.09 G 2.5(sf).15 G(orw)-2.5 E
(ard or back the number of lines speci\214ed.)-.1 E([<)128 261.6 Q F2
(inb)A(uf)-.2 E(f)-.18 E F0 2.5(][)C(>)-2.5 E F2(outb)A(uf)-.2 E(f)-.18
E F0(])2.5 E F1(!)2.5 E F0(command)A(Ex)238 273.6 Q .676
(ecute the command follo)-.15 F .676(wing the e)-.25 F .676
(xclamation mark in the UNIX shell.)-.15 F 1.819
(The shell used is the one speci\214ed in the shell v)238 285.6 R
(ariable)-.25 E F1(SHELL)4.32 E F0 1.82(in the)4.32 F(user')238 297.6 Q
3.979(se)-.55 G -.4(nv)-3.979 G 1.479(ironment, or).4 F F1(/bin/sh)3.978
E F0(if)3.978 E F1(SHELL)3.978 E F0 1.478(is not de\214ned.)3.978 F -1.1
(Yo)6.478 G 3.978(um)1.1 G 1.478(ay send)-3.978 F .05(data from the b)
238 309.6 R(uf)-.2 E(fer)-.25 E F2(outb)2.551 E(uf)-.2 E(f)-.18 E F0
.051(\(or the current b)2.551 F(uf)-.2 E .051(fer if)-.25 F F2(outb)
2.551 E(uf)-.2 E(f)-.18 E F0 .051(is not speci\214ed\))2.551 F 1.297
(out to the shell by using the right angle brack)238 321.6 R 1.296
(et \(>\).)-.1 F -1.1(Yo)6.296 G 3.796(um)1.1 G 1.296(ay read into)
-3.796 F F2(inb)238 333.6 Q(uf)-.2 E(f)-.18 E F0 .113
(\(or the current b)2.612 F(uf)-.2 E .113(fer if)-.25 F F2(inb)2.613 E
(uf)-.2 E(f)-.18 E F0 .113(is not speci\214ed\) by using the left angle)
2.613 F(brack)238 345.6 Q .714(et \(<\) as sho)-.1 F 3.214(wn. The)-.25
F .714(data read in from the command will be placed)3.214 F
(after the current cursor location in the b)238 357.6 Q(uf)-.2 E(fer)
-.25 E/F3 6/Times-Roman@0 SF 1.5(*m)238 381.6 S
(ay be used in init \214le, see section)-1.5 E/F4 6/Times-Bold@0 SF
(Initializing aee Fr)1.5 E(om A File)-.108 E F3 1.5<876f>238 393.6 S
(nly used in initialization \214le)-1.5 E 1.5<886d>238 405.6 S
(ay also be assigned to a k)-1.5 E .18 -.09(ey u)-.06 H(sing the).09 E
F4(de\214ne)1.5 E F3(command)1.5 E F1(Sear)87 446.4 Q(ch and Replace)
-.18 E F2(aee)108 458.4 Q F0 1.677 -.55('s s)D .577(earch f).55 F .577
(acility pro)-.1 F .577(vides se)-.15 F -.15(ve)-.25 G .577
(ral abilities.).15 F .578
(The user may choose for the search to be case sensiti)5.577 F -.15(ve)
-.25 G 3.078(,o).15 G(r)-3.078 E .189(ignore the case \(upper or lo)108
470.4 R .189(wer\) of a character \()-.25 F F1(nocase)A F0 .189
(is the def)2.689 F 2.689(ault\). The)-.1 F .189(user may also choose)
2.689 F F1(literal)2.689 E F0 2.688(,o)C(r)-2.688 E F1(noliteral)108
482.4 Q F0 .609(\(the def)3.109 F .609(ault\) modes for the search f)-.1
F(acility)-.1 E 5.609(.T)-.65 G(he)-5.609 E F1(literal)3.109 E F0 .61
(mode interprets the search string literally)3.109 F(,)-.65 E F1
(noliteral)108 494.4 Q F0
(means that some characters \(called metacharacters\) ha)2.5 E .3 -.15
(ve s)-.2 H(pecial meaning, as described belo).15 E(w:)-.25 E
(center; l l.)108 518.4 Q 4.05(symbol meaning)5 F 32.67(^b)108 542.4 S
-.15(eg)-32.67 G 1.394(inning of line $).15 F 1.393(end of line \\\\x)31
F 1.393(interpret 'x' literally [abc])25.44 F 1.393(T{ match a single)
15.46 F .13(character in the te)108 554.4 R .13(xt to one in brack)-.15
F .13(ets T} [a-z])-.1 F .13(T{ match a single character in the te)17.13
F .13(xt to one in range a-)-.15 F 2.504(zT)108 566.4 S 2.504(}[)-2.504
G 9.63(^abc] T{)-2.504 F .004(match a single character in the te)2.504 F
.004(xt that is not within the brack)-.15 F .004
(ets after '^' \('^' means 'not'\))-.1 F .021(T} *)108 578.4 R .021
(T{ match an)31 F 2.522(ys)-.15 G .022
(equence of characters, useful in middle of string with kno)-2.522 F
.022(wn be)-.25 F .022(ginning and end,)-.15 F -.2(bu)108 590.4 S 2.5
(tv).2 G(ariable middle T})-2.75 E .44
(The carat \(^\) within the square brack)108 619.2 R .44
(ets \([]\) means that the search will match an)-.1 F 2.94(yc)-.15 G
(haracters)-2.94 E F2(not)2.94 E F0 .44(within the)2.94 F(brack)108
631.2 Q 2.5(ets. The)-.1 F(carat)2.5 E F2(must)2.5 E F0
(be the \214rst character after the opening brack)2.5 E(et.)-.1 E .608(\
The asterisk \(*\) may be useful when searching for a string to which y\
ou kno)108 648 R 3.109(wt)-.25 G .609(he be)-3.109 F .609
(ginning and end, b)-.15 F(ut)-.2 E .125(not what characters \(if an)108
660 R .125(y\) or ho)-.15 F 2.625(wm)-.25 G(an)-2.625 E 2.625(ym)-.15 G
.125(ay be in the middle.)-2.625 F .124
(The \214rst character after the asterisk should)5.125 F
(not be a metacharacter \(a character with special meaning\).)108 672 Q
.139(The replace f)108 688.8 R .139
(acility uses the same modes as the search f)-.1 F(acility)-.1 E 5.14
(.T)-.65 G .14(he prompt for the replace operation sho)-5.14 F(ws)-.25 E
(the syntax for the input:)108 700.8 Q(5)535 768 Q EP
%%Page: 6 6
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R
(/string1/string2/)128 84 Q .705
(where the slash \('/'\) may be replaced by an)108 120 R 3.204(yc)-.15 G
.704(haracter that is not in the search or replacement string, and)
-3.204 F .92("string1" is to be replaced by "string2".)108 132 R .92
(When in)5.92 F/F1 10/Times-Bold@0 SF(noliteral)3.421 E F0 .921
(mode, the search string may be placed in the)3.421 F
(replacement string by using the ampersand \('&'\), lik)108 144 Q 2.5
(es)-.1 G(o:)-2.5 E(/old/abc&123/)128 180 Q
(Where "old" will be inserted between "abc" and "123".)108 216 Q F1
(Reco)87 232.8 Q -.1(ve)-.1 G(ry).1 E F0 .192(If for some reason an edi\
t session is interrupted, it is possible to reco)108 244.8 R -.15(ve)
-.15 G 2.692(rt).15 G .192(he w)-2.692 F .192(ork done in the session.)
-.1 F(This)5.192 E .401(is accomplished via the information stored in t\
he journal \214le, which is a record of the changes made to the)108
256.8 R(te)108 268.8 Q .502(xt in the b)-.15 F(uf)-.2 E .502
(fer while in the editor)-.25 F 5.502(.T)-.55 G 3.002(or)-6.302 G(eco)
-3.002 E -.15(ve)-.15 G 3.001(ras).15 G .501
(ession in which a \214le named)-3.001 F/F2 10/Times-Italic@0 SF(foo)
3.001 E F0 -.1(wa)3.001 G 3.001(sb).1 G .501(eing edited, use)-3.001 F
(the command:)108 280.8 Q(aee -r)144 304.8 Q F2(foo)2.5 E F0
(This is only possible if the)108 321.6 Q F1(-j)2.5 E F0(option w)2.5 E
(as not used, since the)-.1 E F1(-j)2.5 E F0(option turns journaling of)
2.5 E(f.)-.25 E .129(It is also possible to start)108 338.4 R F2(aee)
2.629 E F0 .129(with no ar)2.629 F .13(guments, and then to bro)-.18 F
.13(wse the journal \214les.)-.25 F .13(This is accomplished)5.13 F .263
(through the menus.)108 350.4 R 1.863 -.8(To p)5.263 H .262
(erform this task, bring up the menu by pressing the).8 F F1(Esc)2.762 E
F0 -.1(ke)2.762 G 1.562 -.65(y, s)-.05 H(elect).65 E F2 .262
(\214le oper)2.762 F(ations)-.15 E F0(,)A(then select)108 362.4 Q F2
-.37(re)2.5 G(co).37 E(ver fr)-.1 E(om journal)-.45 E F0 5(.Y)C
(ou should then be presented with a list of \214les to reco)-6.1 E -.15
(ve)-.15 G -.55(r.).15 G F1 -.25(Ke)87 379.2 S 2.5(yD).25 G
(e\214nitions)-2.5 E F0 .455(The function k)108 391.2 R -.15(ey)-.1 G
2.955(sa).15 G .455(nd control sequences \(alphabetic k)-2.955 F -.15
(ey)-.1 G 2.955(sp).15 G .455(ressed with the control k)-2.955 F -.15
(ey)-.1 G 2.955(\)m).15 G .455(ay be de\214ned by)-2.955 F
(the user to perform an)108 403.2 Q 2.5(yo)-.15 G 2.5(ft)-2.5 G
(he functions described belo)-2.5 E -.65(w.)-.25 G .593
(The user may assign more than one function to each k)108 420 R -.15(ey)
-.1 G 3.092(,a)-.5 G 3.092(sl)-3.092 G .592
(ong as each one is separated by one or more)-3.092 F 2.71(spaces. The)
108 432 R(follo)2.71 E .21(wing describes the functions of the k)-.25 F
-.15(ey)-.1 G 2.71(sa).15 G .21(nd ho)-2.71 F 2.71(wt)-.25 G .21
(he user may rede\214ne the k)-2.71 F -.15(ey)-.1 G .21(board dur).15 F
(-)-.2 E(ing the edit session on the command line.)108 444 Q
(The same syntax is used in the)5 E F2(initialization \214le)2.5 E F0(.)
A .054(Note that the '^' is typed by the user in the follo)108 460.8 R
.053(wing e)-.25 F .053(xamples, and is)-.15 F F1(not)2.553 E F0 .053
(generated by pressing the control)2.553 F -.1(ke)108 472.8 S 2.5(ya)
-.05 G(nd letter)-2.5 E 2.5(,a)-.4 G
(nd that f2 is entered by typing an 'f)-2.5 E 2.5('a).55 G
(nd then a '2'.)-2.5 E(Examples:)108 496.8 Q F1(de\214ne ^b dl)180 520.8
Q F0(will de\214ne the k)108 544.8 Q .3 -.15(ey c)-.1 H(ontrol b to ha)
.15 E .3 -.15(ve t)-.2 H(he function delete line.).15 E F1
(de\214ne gold ^b udl)180 568.8 Q F0
(assigns the function undelete line to GOLD control b)108 592.8 Q(.)-.4
E F1(de\214ne f2 /this is an inserted string/ cr)180 616.8 Q F0 .97(wil\
l cause the string between the delimiters \(/\) to be inserted follo)108
640.8 R .971(wed by a carriage-return whene)-.25 F -.15(ve)-.25 G 3.471
(rt).15 G(he)-3.471 E(function k)108 652.8 Q .3 -.15(ey f)-.1 H 2.5(2i)
.15 G 2.5(sp)-2.5 G(ressed.)-2.5 E .122(If you wish to ha)108 669.6 R
.422 -.15(ve a k)-.2 H .422 -.15(ey t).05 H .122
(hat deletes to the end of line without appending the ne).15 F .121
(xt line to the end, you may)-.15 F(mak)108 681.6 Q 2.5(et)-.1 G
(he follo)-2.5 E(wing k)-.25 E .3 -.15(ey d)-.1 H(e\214nition:).15 E F1
(de\214ne f3 dl cr left)180 705.6 Q F0 .603
(This set of functions will delete to the end of line and append the ne)
108 729.6 R .603(xt to the end of the line, then insert a)-.15 F(6)535
768 Q EP
%%Page: 7 7
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R 1.012
(line at the cursor)108 84 R 3.512(,a)-.4 G 1.012(nd then mo)-3.512 F
1.312 -.15(ve t)-.15 H 1.012(he cursor back to the end of the pre).15 F
1.012(vious line, the position where you)-.25 F 2.5(started. This)108 96
R(may of course be assigned to an)2.5 E 2.5(yv)-.15 G(alid k)-2.75 E
-.15(ey)-.1 G(.)-.5 E/F1 10/Times-Bold@0 SF(Symbols)87 124.8 Q F0 .441
(The follo)108 136.8 R .442(wing symbols, as well as the commands noted\
by \(\210\) in the list of commands may be assigned to)-.25 F -.1(ke)
108 148.8 S(ys using the)-.05 E F1(de\214ne)2.5 E F0(command.)2.5 E
5.916(ll)128 172.8 S 8.416(.S)-5.916 G 2.38(ymbol Description)-8.416 F
5.916(_m)5.916 G 11.28(enu pop)-5.916 F 3.416(up menu dl)5.916 F 3.416
(delete line dc)28.22 F 3.416(delete character)26.56 F 21.28(dw delete)
128 184.8 R -.1(wo)5.77 G 3.27(rd und).1 F 3.271
(T{ undelete last thing deleted, k)21 F 3.271
(eeps last 128 things deleted T})-.1 F 20.72(udl undelete)128 196.8 R
4.563(line udc)7.063 F 4.563(undelete character udw)21.56 F 4.562
(undelete w)18.78 F 4.562(ord eol)-.1 F 4.562(end of line)23.78 F 20.72
(bol be)128 208.8 R .553(gin of line bot)-.15 F(be)23.22 E .553
(gin of te)-.15 F .554(xt eot)-.15 F .554(end of te)23.78 F .554(xt np)
-.15 F(ne)26 E .554(xt page pp)-.15 F(pre)26 E(vious)-.25 E 1.67
(page nb)128 220.8 R(ne)26 E 1.67(xt b)-.15 F(uf)-.2 E 1.67(fer pb)-.25
F(pre)26 E 1.67(vious b)-.25 F(uf)-.2 E 1.67(fer gold)-.25 F 1.67
(gold il)18.22 F 1.67(insert line psrch)30.44 F(search)14.34 E .83
(prompt srch)128 232.8 R .83(search prp)19.34 F .83(replace prompt rp)
22.67 F .83(replace fwd)27.67 F(forw)20.45 E .83(ard \(search forw)-.1 F
.83(ard of)-.1 F 5.502(cursor\) re)128 244.8 R 23.48(vr)-.25 G -2.15
-.25(ev e)-23.48 H 5.501(rse \(search before cursor\) al).25 F(adv)28.78
E 5.501(ance line a)-.25 F 24.49(wa)-.15 G(dv)-24.49 E 5.501(ance w)-.25
F(ord)-.1 E 21.28(pw pre)128 256.8 R .447(vious w)-.25 F .447
(ord format)-.1 F .447(format paragraph mark)9.34 F .447(mark te)15.45 F
.447(xt pre\214x)-.15 F .447(T{ mark te)12.67 F .447(xt and place)-.15 F
/F2 10/Times-Italic@0 SF(befor)128 268.8 Q(e)-.37 E F0 -.15(ex)4.112 G
1.612(isting te).15 F 1.612(xt in paste b)-.15 F(uf)-.2 E 1.612
(fer T} append)-.25 F 1.612(T{ mark te)7.12 F 1.612(xt and place)-.15 F
F2(after)4.112 E F0 -.15(ex)4.112 G 1.612(isting te).15 F 1.611
(xt in paste)-.15 F -.2(bu)128 280.8 S -.25(ff).2 G .641(er T} cut).25 F
.641(cut mark)23.78 F .641(ed te)-.1 F .641(xt cop)-.15 F 17.301(yc)-.1
G(op)-17.301 E 3.142(ym)-.1 G(ark)-3.142 E .642(ed te)-.1 F .642(xt pst)
-.15 F .642(paste pre)24.33 F .642(viously cut or copied)-.25 F(te)128
292.8 Q .554(xt unmark)-.15 F .554(T{ unmark te)5.45 F .554(xt, doesn')
-.15 F 3.053(ta)-.18 G -.25(ff)-3.053 G .553(ect pre).25 F .553
(vious paste b)-.25 F(uf)-.2 E .553(fer contents T} ac)-.25 F .553
(ascii character)27.12 F 21.28(mc match)128 304.8 R 5.098
(\(\), {}, [], or <> cmd)7.598 F 5.098(command up)18.78 F 5.098(up arro)
26 F 7.598(wd)-.25 G -.25(ow)-7.598 G 14.03(nd).25 G -.25(ow)-14.03 G
7.598(na).25 G(rro)-7.598 E(w)-.25 E 20.17(left left)128 316.8 R(arro)
3.886 E 3.886(wr)-.25 G 14.61(ight right)-3.886 F(arro)3.886 E 3.886(wr)
-.25 G 27.67(dr)-3.886 G(edra)-27.67 E 3.886(ws)-.15 G 1.385(creen bck)
-3.886 F 1.385(backspace cr)21.56 F(carriage)28.23 E 1.563(return /,.)
128 328.8 R 1.563
(T{ the \214rst non-alpha character will act as a separator to allo)
28.22 F 4.063(wf)-.25 G 1.564(or single line te)-4.063 F(xt)-.15 E(inse\
rtion, the second occurrence of the same character will end the inserti\
on T})128 340.8 Q F1(Initializing aee Fr)87 357.6 Q(om A File)-.18 E F2
(aee)108 369.6 Q F0 .412(checks for a \214le named)2.912 F F2(init.ae)
2.912 E F0(in)2.912 E F2(/usr/local/lib)2.912 E F0(,)A F2(.init.ae)2.912
E F0 .412(in the user')2.912 F 2.911(sh)-.55 G .411(ome directory)-2.911
F 2.911(,t)-.65 G .411(hen for)-2.911 F F2(.init.ae)2.911 E F0(in)2.911
E .532(the current directory)108 381.6 R 5.532(.I)-.65 G 3.032(ft)-5.532
G .532(he \214le e)-3.032 F .532(xists, it is read and initializes)-.15
F F2(aee)3.033 E F0 .533(to the parameters as de\214ned in the \214le.)
3.033 F .475(By ha)108 393.6 R .474(ving initialization \214les in mult\
iple places, the user may specify settings for global use, and then sup\
-)-.2 F .392(plement these with customization for the local directory)
108 405.6 R 5.392(.T)-.65 G .393(he parameters allo)-5.392 F .393
(wed in the)-.25 F F2(init.ae)2.893 E F0 .393(\214le are k)2.893 F -.15
(ey)-.1 G .008(de\214nitions, turning of)108 417.6 R 2.508(fw)-.25 G
(indo)-2.508 E .008(wing, case sensiti)-.25 F(vity)-.25 E 2.508(,l)-.65
G .008(iteral searching, eight bit characters, as well as the abil-)
-2.508 F .576(ity to echo strings to the terminal \(see the)108 429.6 R
F1(Commands)3.076 E F0 .576(section for the commands allo)3.076 F .576
(wed in the initializa-)-.25 F(tion \214le\).)108 441.6 Q(An e)5 E
(xample follo)-.15 E(ws:)-.25 E(de\214ne ^z rp)180 465.6 Q
(de\214ne gold ^z prp)180 477.6 Q(de\214ne f3 und)180 489.6 Q
(de\214ne f4 unmark)180 501.6 Q(de\214ne k0 srch)180 513.6 Q
(de\214ne gold k0 psrch)180 525.6 Q(case)180 537.6 Q
(printcommand lp -dlaser)180 549.6 Q(echo \\033&jB)180 561.6 Q .927
(The abo)108 585.6 R 1.227 -.15(ve ex)-.15 H .927
(ample assigns the command).15 F F1 -.18(re)3.427 G(place).18 E F0 .927
(to control-z, and)3.427 F F1 -.18(re)3.427 G .926(place pr).18 F(ompt)
-.18 E F0 .926(to gold control-z, as)3.426 F 1.045(well as setting)108
597.6 R F2(aee)3.546 E F0 1.046(to be sensiti)3.546 F 1.346 -.15(ve t)
-.25 H 3.546(ot).15 G 1.046
(he case of characters during search and replacement operations.)-3.546
F(It)6.046 E .213(also de\214nes the function k)108 609.6 R -.15(ey)-.1
G(s).15 E F1(f3)2.713 E F0(and)2.713 E F1(f4)2.713 E F0 .213(to be)2.713
F F1(undelete)2.713 E F0(and)2.713 E F1(unmark)2.713 E F0(respecti)2.713
E -.15(ve)-.25 G(ly).15 E 5.213(.T)-.65 G(he)-5.213 E F1(print)2.713 E
F0 .212(command will)2.713 F 1.382(send its output to the de)108 621.6 R
1.383(vice ')-.25 F 1.383(laser' through the)-.1 F/F3 9/Times-Roman@0 SF
(UNIX)3.883 E F0(command)3.883 E F1(lp)3.883 E F0 6.383(.A)C 1.383
(string is)-2.5 F F1(echo)3.883 E F0 1.383(ed to the terminal)B
(which will "turn on" the user function k)108 633.6 Q -.15(ey)-.1 G 2.5
(so).15 G 2.5(na)-2.5 G 2.5(nH)-2.5 G 2.5(Pt)-2.5 G(erminal.)-2.5 E
1.585(The user may wish to)108 650.4 R F1(echo)4.085 E F0 1.585
(strings to the terminal when starting)4.085 F F2(aee)4.085 E F1 1.584
(to set up the terminal or other)4.085 F(de)108 662.4 Q .829
(vices, so the echo)-.15 F F0 -.1(fa)3.329 G .829(cility is pro).1 F
(vided.)-.15 E F1(Echo)5.829 E F0 .829(is applicable)3.329 F F2(only)
3.329 E F0 .83(in the initialization \214le.)3.33 F .83(No quotes are)
5.83 F .305(required around the string to be echoed.)108 674.4 R .305
(Characters may be literal or escaped \(using the backslash con)5.305 F
-.15(ve)-.4 G(n-).15 E 2.725(tion\). The)108 686.4 R F1(-e)2.725 E F0
.225(option on the in)2.725 F -.2(vo)-.4 G .225
(king command line turns of).2 F 2.725(ft)-.25 G(he)-2.725 E F1(echo)
2.725 E F0 2.725(operation. This)2.725 F .226(may be useful if you)2.726
F .558
(normally use one type of terminal \(and echo strings for its use\), b)
108 698.4 R .558(ut occasionally use another terminal and)-.2 F
(do not wish the strings to be)108 710.4 Q F1(echo)2.5 E F0(ed.)A
(Operations allo)108 727.2 Q(wed in the initialization \214le are noted\
in the list of commands with an asterisk \(*\).)-.25 E(7)535 768 Q EP
%%Page: 8 8
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R/F1 10
/Times-Bold@0 SF(Shell Escapes)87 84 Q F0 .77
(Sometimes it is desirable to e)108 96 R -.15(xe)-.15 G .771
(cute shell commands outside of the editor).15 F 5.771(.T)-.55 G .771
(his may be accomplished by)-5.771 F .733(pressing a k)108 108 R 1.033
-.15(ey a)-.1 H .733(ssigned to the).15 F F1(command)3.233 E F0 .733
(function \()3.233 F F1(^C)A F0(,)A F1(^E)3.233 E F0 3.233(,o)C(r)-3.233
E F1 .733(gold F8)3.233 F F0 .733(\), and then entering an e)B
(xclamation)-.15 E .353(mark \(!\) follo)108 120 R .353
(wed by the shell command\(s\) to be e)-.25 F -.15(xe)-.15 G 2.853
(cuted. It).15 F .353(is possible to send data from the editor to be)
2.853 F .451(processed by a shell command and/or read data from a shell\
command into a b)108 132 R(uf)-.2 E .451(fer in the editor)-.25 F 5.451
(.T)-.55 G .451(he for)-5.451 F(-)-.2 E(mat for this is as follo)108 144
Q(ws:)-.25 E(<)180 168 Q/F2 10/Times-Italic@0 SF(inb)A(uf)-.2 E(f)-.18 E
F0(>)2.5 E F2(outb)A(uf)-.2 E(f)-.18 E F0(!)2.5 E F2(command)A F0(where)
108 192 Q F2(inb)2.99 E(uf)-.2 E(f)-.18 E F0 .491(is the name of the b)
2.99 F(uf)-.2 E .491(fer to recei)-.25 F .791 -.15(ve t)-.25 H .491
(he data and).15 F F2(outb)2.991 E(uf)-.2 E(f)-.18 E F0 .491
(is the name of the b)2.991 F(uf)-.2 E .491(fer to output to)-.25 F .914
(the shell command.)108 204 R .914(By omitting the name of the b)5.914 F
(uf)-.2 E(fer)-.25 E 3.413(,t)-.4 G .913(he current b)-3.413 F(uf)-.2 E
.913(fer will be used.)-.25 F -.15(Fo)5.913 G 3.413(re).15 G .913
(xample, if)-3.563 F .855(you ha)108 216 R 1.155 -.15(ve a l)-.2 H .856
(ist of names and wish them sorted, you could use the).15 F/F3 8
/Times-Roman@0 SF(UNIX)3.356 E F0(command)3.356 E F2(sort)3.356 E F0
5.856(.I)C 3.356(fy)-5.856 G .856(ou wished to)-3.356 F(vie)108 228 Q
2.5(wt)-.25 G
(hem while in the current edit session, you could use the follo)-2.5 E
(wing sequence:)-.25 E(<sorted >list !sort)180 252 Q(where)108 276 Q F2
(list)2.968 E F0 .468(is the name of the b)2.968 F(uf)-.2 E .468
(fer containing the unsorted list,)-.25 F F2(sorted)2.967 E F0 .467
(is the name of the b)2.967 F(uf)-.2 E .467(fer to contain)-.25 F .509
(the sorted list, and)108 288 R F2(sort)3.01 E F0 .51
(is the name of the)3.01 F F3(UNIX)3.01 E F0 .51(command to be e)3.01 F
-.15(xe)-.15 G 3.01(cuted. The).15 F .51(data read in from the com-)3.01
F .15
(mand will be placed after the current cursor location in the recei)108
300 R .15(ving b)-.25 F(uf)-.2 E(fer)-.25 E 5.15(.I)-.55 G 2.65(ft)-5.15
G .15(he speci\214ed b)-2.65 F(uf)-.2 E .15(fer does not)-.25 F -.15(ex)
108 312 S .025(ist when the command is entered, it will be created.).15
F -1.1(Yo)5.026 G 2.526(us)1.1 G .026
(hould be sure of the spelling of the name of the)-2.526 F -.2(bu)108
324 S -.25(ff).2 G
(er to be the input of the command if you are specifying one.).25 E F1
(PRINT Command)87 340.8 Q F0(The)108 352.8 Q F1(print)2.839 E F0 .339
(command allo)2.839 F .338(ws you to send the contents of the current b)
-.25 F(uf)-.2 E .338(fer to a command speci\214ed by using)-.25 F(the)
108 364.8 Q F1(printcommand)2.5 E F0
(operation in the initialization \214le.)2.5 E(The def)5 E(ault is ')-.1
E F1(lp)A F0(', using the def)A(ault de)-.1 E(vice.)-.25 E .079
(If you choose to specify something other than the def)108 381.6 R .079
(ault command, the command should be able to tak)-.1 F 2.579(ei)-.1 G
(ts)-2.579 E(input from)108 393.6 Q F2(stdin)2.5 E F0 2.5(,s)C(ince)-2.5
E F2(aee)2.5 E F0
(will set up a pipe to feed the information to the command.)2.5 E F1 -.1
(Pa)87 410.4 S(ragraph F).1 E(ormatting)-.25 E F0 -.15(Pa)108 422.4 S
(ragraphs are de\214ned for).15 E F2(aee)2.5 E F0(by a block of te)2.5 E
(xt bounded by:)-.15 E 32.5<8342>148 451.2 S -.15(eg)-32.5 G
(in or end of \214le.).15 E 32.5<834c>148 468 S
(ine with no characters, or only spaces and/or tabs.)-32.5 E 32.5<834c>
148 484.8 S(ine starting with a period \('.)-32.5 E
('\) or right angle brack)-.7 E(et \('>'\).)-.1 E 2.944(Ap)108 501.6 S
.444(aragraph may be formatted tw)-2.944 F 2.944(ow)-.1 G 2.944(ays: e)
-3.044 F .444(xplicitly by choosing the)-.15 F F1 -.25(fo)2.944 G .444
(rmat paragraph).25 F F0 .443(menu item, or by)2.943 F(setting)108 513.6
Q F2(aee)2.815 E F0 .315(to automatically format paragraphs.)2.815 F
.316(The automatic mode may be set via a menu, or via the ini-)5.315 F
(tialization \214le.)108 525.6 Q(There are three states for te)108 542.4
Q(xt operation in)-.15 E F2(aee)2.5 E F0 2.5(:f)C
(ree-form, wrap, and automatic formatting.)-2.5 E .464
("Free-form" is best used for things lik)108 559.2 R 2.964(ep)-.1 G
2.964(rogramming. There)-2.964 F .464
(are no restrictions on the length of lines, and)2.964 F
(no formatting tak)108 571.2 Q(es place.)-.1 E(Mar)5 E
(gins are not enabled for this state.)-.18 E .89("Wrap" allo)108 588 R
.89(ws the user to type in te)-.25 F .89(xt without ha)-.15 F .89
(ving to w)-.2 F .89(orry about going be)-.1 F .89(yond the right mar)
-.15 F .89(gin \(the)-.18 F .966(right and left mar)108 600 R .966
(gins may be set in the)-.18 F F1(settings)3.466 E F0 .966
(menu, the def)3.466 F .966(ault is for the right mar)-.1 F .965
(gin to be the right)-.18 F 1.936(edge of the terminal\).)108 612 R
1.936(This is the mode that allo)6.936 F 1.937(ws the)-.25 F F1 -.25(fo)
4.437 G 1.937(rmat paragraph).25 F F0 1.937(menu item to w)4.437 F 4.437
(ork. The)-.1 F("observ)108 624 Q 3.303(em)-.15 G(ar)-3.303 E .803
(gins" entry in the "settings" menu allo)-.18 F .803
(ws the user to toggle this state, as well as the)-.25 F F1(mar)3.302 E
(gin)-.1 E F0(and)108 636 Q F1(nomar)2.5 E(gin)-.1 E F0(commands \(see)
2.5 E F1(Commands)2.5 E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E .753
("Automatic formatting" pro)108 652.8 R .754(vides w)-.15 F
(ord-processor)-.1 E(-lik)-.2 E 3.254(eb)-.1 G(eha)-3.254 E(vior)-.2 E
5.754(.T)-.55 G .754(he user may type in te)-5.754 F .754(xt, while)-.15
F F2(aee)3.254 E F0(will)3.254 E(mak)108 664.8 Q 3.518(es)-.1 G 1.018
(ure the entire paragraph \214ts within the mar)-3.518 F 1.018(gins e)
-.18 F -.15(ve)-.25 G 1.018
(ry time the user inserts a space after typing or).15 F 1.04
(deleting te)108 676.8 R 3.54(xt. Mar)-.15 F 1.041
(gins must also be enabled in order for automatic formatting to occur)
-.18 F 6.041(.T)-.55 G 1.041(he "auto para-)-6.041 F .149
(graph format" item in the "settings" menu allo)108 688.8 R .148
(ws the user to toggle this state, as well as the commands)-.25 F F1
(aut-)2.648 E(of)108 700.8 Q(ormat)-.25 E F0(and)2.5 E F1(noautof)2.5 E
(ormat)-.25 E F0(.)A(8)535 768 Q EP
%%Page: 9 9
%%BeginPageSetup
BP
%%EndPageSetup
/F0 10/Times-Roman@0 SF 415.54(aee\(1\) aee\(1\))72 48 R/F1 10
/Times-Bold@0 SF(Modes)87 84 Q F0(Although)108 96 Q/F2 10/Times-Italic@0
SF(aee)2.525 E F0 .025(is a 'modeless' editor \(it is in te)2.525 F .025
(xt insertion mode all the time\), there are modes in some of the)-.15 F
(things it does.)108 108 Q(These include:)5 E F1(tabs to spaces)128
124.8 Q F0 -.8(Ta)164 136.8 S
(bs may be inserted as a single tab character).8 E 2.5(,o)-.4 G 2.5(rr)
-2.5 G(eplaced with spaces.)-2.5 E F1(case sensiti)128 153.6 Q .2 -.1
(ve s)-.1 H(ear).1 E(ch)-.18 E F0 2.006
(The search operation can be sensiti)164 165.6 R 2.305 -.15(ve t)-.25 H
4.505(ow).15 G 2.005(hether characters are upper)-4.505 F 4.505(-o)-.2 G
4.505(rl)-4.505 G -.25(ow)-4.505 G(er).25 E 2.005(-case, or)-.2 F
(ignore case completely)164 177.6 Q(.)-.65 E F1(literal sear)128 194.4 Q
(ch)-.18 E F0(Allo)164 206.4 Q(ws the user to specify whether re)-.25 E
(gular e)-.15 E(xpressions are to be used for searching or not.)-.15 E
F1(obser)128 223.2 Q .2 -.1(ve m)-.1 H(ar).1 E(gins)-.1 E F0
(The left and right mar)164 235.2 Q(gins can be observ)-.18 E
(ed, or not.)-.15 E F1(inf)128 252 Q 2.5(ow)-.25 G(indo)-2.5 E(w)-.1 E
F0 2.5(Aw)164 264 S(indo)-2.5 E 2.5(ws)-.25 G(ho)-2.5 E(wing the k)-.25
E -.15(ey)-.1 G
(board operations that can be performed can be displayed or not.).15 E
F1(status line)128 280.8 Q F0(Display the \214le name, position in the \
\214le, and selected status indicators.)164 292.8 Q F1(auto indent)128
309.6 Q F0 .305(The editor can be set to automatically indent the ne)164
321.6 R .306(wly inserted line the same as the pre)-.25 F(vious)-.25 E
(line, or not \(primarily useful for programming\).)164 333.6 Q F1 -.1
(ove)128 350.4 S(rstrik).1 E(e)-.1 E F0 -.8(To)164 362.4 S(ggle te).8 E
(xt insertion or o)-.15 E -.15(ve)-.15 G(rstrik).15 E 2.5(em)-.1 G
(odes.)-2.5 E F1(auto paragraph f)128 379.2 Q(ormatting)-.25 E F0 .337
(While typing in te)164 391.2 R .337(xt, the editor can try to k)-.15 F
.336(eep it looking reasonably well within the width of)-.1 F
(the screen.)164 403.2 Q F1(multi windo)128 420 Q(ws)-.1 E F0(Allo)164
432 Q 2.5(wm)-.25 G(ultiple b)-2.5 E(uf)-.2 E
(fers to be displayed at the same time, or only a single b)-.25 E(uf)-.2
E(fer at a time.)-.25 E -1.1(Yo)108 448.8 S 2.713(um)1.1 G .213
(ay set these modes via the initialization \214le \(see abo)-2.713 F
-.15(ve)-.15 G .213(\), with a menu \(see).15 F F1(Menu)2.713 E F0(abo)
2.713 E -.15(ve)-.15 G .214(\), or via com-).15 F(mands \(see)108 460.8