1 .fin
 2 .all
 3      Qedx is a line editor designed to work on both video display terminals
 4 and terminals that print on paper.  Qedx has two modes of operation--input
 5 mode and edit mode.  When you are creating text, you use input mode.  To edit
 6 text, you use edit mode.  As a line editor, it edits text line by line.  To
 7 make additions, erasures, and changes, you specify a line number and use
 8 "requests" to tell the editor what it is to do with the specified line.
 9 
10      To illustrate this, let's look at a series of requests that change a
11 sentence in the segment named my_seg:
12 .fif
13 
14 r my_seg
15 5p
16 Our meeting will not take place.
17 s/will/did/p
18 Our meeting did not take place.
19 .fin
20 
21 The r request reads my_seg into the editor but does not automatically print
22 it, as Emacs does.  The request 5p specifies line 5 to be worked on and prints
23 it.  The s request specifies that the word 'will' is to be taken out and the
24 word 'did' put in its place, and the request 'p' again prints the new line.
25 
26      Qedx also has a macro facility that enables you to combine a number of
27 requests and execute them all at once and save them for later use.  In
28 addition, Qedx lets you work on several segments at the same time.  It does
29 this by keeping segments in separate buffers that you move between by
30 issuing requests.  This is handy for moving text around, comparing different
31 segments, and inserting text from one segment into another.
32 
33      To learn the details of editing with Qedx, see the qedx Text Editor
34 Users' Guide (Order No. CG40).