home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 197_01 / emacs.tut < prev    next >
Text File  |  1979-12-31  |  30KB  |  701 lines

  1. You are looking at the MicroEMACS tutorial.  Comments on this document may
  2. be referred to Daniel Lawrance.
  3.  
  4. NOTE:  This tutorial attempts to help you "learn by doing".  The characters
  5.        ">>" at the left margin of your screen indicate directions for you to
  6.        try using a command.
  7.  
  8. EMACS commands generally involve the CONTROL key (sometimes labelled CTRL
  9. or CTL) or the META key (generally labelled ESCAPE).  Rather than write out
  10. CONTROL or META each time we want you to prefix a character, we'll use the
  11. following abbreviations:
  12.  
  13.    ^<chr>    Hold the CONTROL key while pressing the character <chr>.
  14.              Thus, ^F would be:  hold the CONTROL key and press F.
  15.  
  16. >>  Now type ^V (View Next Screen) to move to the next screen.
  17.     Remember:  hold the CONTROL key and press V.
  18.  
  19.    ESC-<chr>  Press the ESCAPE key and release it, then press the
  20.               character <chr>.  Note:  The command will have the
  21.               same meaning for upper or lower case characters (<chr>).
  22.  
  23. IMPORTANT NOTE:  If you must exit at some point, type ^X^C.
  24.  
  25. For the time being, you'll be expected to type ^V whenever you finish reading
  26. the current screen.
  27.  
  28. Note that there is an overlap when going from screen to screen; this provides
  29. some continuity when moving through the file.
  30.  
  31. The first thing that you need to know is how to move around from place to
  32. place in the file.  You already know how to move forward a screen with ^V.
  33. To move back a screen, type ^Z.
  34.  
  35. >>  Try typing ^Z and then ^V to move back and forth between screens a few
  36.     times.
  37.  
  38.  
  39. SUMMARY
  40. -------
  41.  
  42. The following commands are useful for viewing screens:
  43.  
  44.      ^V       Move forward one screen
  45.      ^Z       Move back one screen
  46.      ESC-^L   Clear screen and redisplay everything, putting the text
  47.               near the cursor at the center of the screen.
  48.  
  49. >>  Find the cursor and remember what text is near it.  Type an ESC-^L.
  50.     Find the cursor again and see what text is near it now.
  51.  
  52.  
  53. BASIC CURSOR CONTROL
  54. --------------------
  55.  
  56. Getting from screen to screen is useful, but how do you reposition yourself
  57. within a given screen to a specific place?  There are several ways you can
  58. do this.  One way (not the best, but the most basic) is to use the commands
  59. previous, backward, forward and next.  As you can imagine these commands
  60. (which are given to EMACS as ^P, ^B, ^F, and ^N  respectively) move the
  61. cursor from where it currently is to a new place in the given direction.
  62. Here, in a more graphical form, are the commands:
  63.  
  64.                           Previous line, ^P
  65.                                   :
  66.                                   :
  67.    Backward, ^B .... Current cursor position .... Forward, ^F
  68.                                   :
  69.                                   :
  70.                           Next line, ^N
  71.  
  72. You'll probably find it easy to think of these by letter.  P for previous,
  73. N for next, B for backward and F for forward.  These are the basic cursor
  74. positioning commands and you'll be using them ALL the time so it would be
  75. of great benefit if you learn them now.
  76.  
  77. >>  Do a few ^N's to bring the cursor down to this line.
  78.  
  79. >>  Move into the line with ^F's and then up with several ^P's.  Note what
  80.     ^P does when the cursor is in the middle of the line.
  81.  
  82. >>  Try ^B at the beginning of a line.  Note what happened to the cursor.
  83.     Do a few more ^B's.  Then do ^F's back to the end of the line and beyond.
  84.  
  85. When you go off the top or bottom of the screen, the text beyond the edge is
  86. shifted onto the screen so that your instructions can be carried out while
  87. keeping the cursor on the screen.
  88.  
  89. >>  Move the cursor off the bottom of the screen with ^N's and see what
  90.     happens.  Note the new position of the cursor.
  91.  
  92. If moving by characters is too slow, you can move by words.  ESC-F moves
  93. forward a word and ESC-B moves back a word.
  94.  
  95. >>  Type a few ESC-F's and ESC-B's.  Intersperse them with ^F's and ^B's.
  96.  
  97. Notice the parallel between ^F and ^B on the one hand, and ESC-F and ESC-B on
  98. the other hand.  Very often META characters are used for operations related
  99. to English text whereas CONTROL characters operate on the basic textual units
  100. that are independent of what you are editing (characters, lines, etc.).
  101.  
  102. Two other commands which are useful are ^A and ^E.  These commands move the
  103. cursor to the beginning (^A) and the end (^E) of the line.
  104.  
  105. >>  Try a couple of ^A's, and then a couple of ^E's.  Note that the cursor
  106.     does not move when either of these commands is repeated continuously.
  107.  
  108. Two other simple cursor motion commands are ESC-< (less than), which moves
  109. to the beginning of the file, and ESC-> (greater than), which moves to the
  110. end of the file.  If you need the shift key to type a "<", then you must
  111. also use the shift key to type ESC-<.  Otherwise, you would be typing ESC-, .
  112.  
  113. The location of the cursor within the text is also called "point".  To
  114. paraphrase, the cursor shows on the screen where point is located in the
  115. text.
  116.  
  117. Here is a summary of simple moving operations, including the word and
  118. line moving commands:
  119.  
  120.      ^F        Move forward a character
  121.      ^B        Move back a character
  122.  
  123.      ESC-F     Move forward a word
  124.      ESC-B     Move back a word
  125.  
  126.      ^N        Move to next line
  127.      ^P        Move to previous line
  128.  
  129.      ESC-N     Move to next paragraph
  130.      ESC-P     Move to previous paragraph
  131.  
  132.      ^A        Move to beginning of line
  133.      ^E        Move to end of line
  134.  
  135.      ESC-<     Go to beginning of file
  136.      ESC->     Go to end of file
  137.  
  138. >>  Try all of these commands now a few times for practice as these are
  139.     the most often used commands.  Since the last two will take you away
  140.     from this screen, use ^V's and ^Z's to return here.
  141.  
  142. Like all other commands in EMACS, these commands can be given arguments
  143. which cause them to be executed repeatedly.  The way you give a command
  144. a repeat count is by pressing META (ESC) and then the number before you
  145. enter the command.  As a special case, typing ^U is equivalent to ESC-4.
  146.  
  147. For instance, ESC-8 ^F moves forward eight characters.
  148.  
  149. >>  Try giving a suitable argument to ^N or ^P to come as close as you
  150.     can to this line in one jump.
  151.  
  152. This also applies to the screen moving commands, ^V and ^Z.  When given
  153. an argument, they scroll the screen up or down by that many screens.
  154.  
  155. >>  Try typing ESC-3 ^V now.
  156.  
  157. If you would like to scroll up, you can give an argument to ^Z.
  158.  
  159.  
  160. ABORTING COMMANDS
  161. -----------------
  162.  
  163. The EMACS command used to abort any command which requests input is
  164. ^G.  For example, you can use ^G to discard a numeric argument or at
  165. the beginning of a command that you don't want to finish.
  166.  
  167. >>  Type ESC-100 to make a numeric argument of 100, then type ^G.
  168.     Now type ^F.  How many characters does it move?  If you have
  169.     typed an ESC by mistake, you can get rid of it with ^G^G.
  170.  
  171.  
  172. ERRORS
  173. ------
  174. Sometimes you may do something which EMACS doesn't allow.  If it is
  175. something simple, such as typing a CONTROL key sequence which is not
  176. associated with any command, EMACS will just beep at you.  Otherwise,
  177. EMACS will also display an informative error message at the bottom of
  178. the screen.
  179.  
  180. Some versions of EMACS do not have all the features described in this
  181. tutorial implemented yet.  If you come across such an unimplemented
  182. feature, you may get an error message when you try to use it.  Just
  183. press any cursor movement key and proceed to the next section of the
  184. tutorial.
  185.  
  186.  
  187. NOTE:  Several of the exercises in the following sections allow you to use
  188.        options which will make changes to this tutorial. Do no worry about
  189.        these changes affecting the tutorial - this is only a copy of the
  190.        master tutorial and you will not be instructed to save the changes
  191.        made to it.
  192.  
  193.  
  194. CURSOR KEYS
  195. -----------
  196.  
  197. The cursor keypad, usually located on the right side of the keyboard,
  198. has been bound to some of the more useful screen movement commands.
  199. The mappings are as follows:
  200.  
  201.      Cursor-Right    ^F        Move forward a character
  202.      Cursor-Left     ^B        Move back a character
  203.  
  204.  
  205.      ^Cursor-Right   ESC-F     Move forward a word
  206.      ^Cursor-Left    ESC-B     Move back a word
  207.  
  208.  
  209.      Cursor-Down     ^N        Move to next line
  210.      Cursor-Up       ^P        Move to previous line
  211.  
  212.  
  213.      Pg-Dn           ^V        Move to next screen
  214.      Pg-Up           ^Z        Move to previous screen
  215.  
  216.  
  217.      Home            ESC-<     Go to beginning of file
  218.      End             ESC->     Go to end of file
  219.  
  220.  
  221.      Insert          ^C        Insert single space
  222.      Delete          ^D        Delete current character
  223.  
  224. A map of the keypad layout looks something like this:
  225.  
  226.                    -------------------------------------------------
  227.                    | 7             | 8             | 9             |
  228.                    | Home          | ^             | Pg Up         |
  229.                    |        ESC-<  | |         ^P  |           ^Z  |
  230.                    -------------------------------------------------
  231.                    | 4             | 5             | 6             |
  232.                    | <--       ^B  |               | -->       ^F  |
  233.                    -------------------------------------------------
  234.                    | 1             | 2             | 3             |
  235.                    | End           | |             | Pg Dn         |
  236.                    |        ESC->  | v         ^N  |           ^V  |
  237.        -------------------------------------------------------------
  238.        | 0                           | .                           |
  239.        | Insert                  ^C  | Delete                  ^D  |
  240.        -------------------------------------------------------------
  241.  
  242. >>  Practice using the cursor keypad.
  243.  
  244.  
  245. MODE LINE
  246. ---------
  247.  
  248. The line above the function key display at the bottom of the screen
  249. is referred to as the "communication line".  This is where EMACS
  250. interactively communicates with you.  Later you will see how EMACS
  251. prompts you for information on this line, such as to initiate a
  252. search.  EMACS can report things to you on this line as well.
  253.  
  254. >>  Type ^X= and see what appears in the communication line. Don't worry
  255.     about what all this information means - it is just an example of how
  256.     EMACS lets you know more about the file you are editing.
  257.  
  258. The line immediately above the communication line is referred to as the
  259. "mode line".  The mode line looks something like
  260.  
  261. =* MicroEMACS 3.7 () == emacs.tut == File: emacs.tut ===========================
  262.  
  263. This is a very useful "information" line.
  264.  
  265.   -  The asterisk (star) indicates that changes have been made to the file.
  266.      Immediately after opening or saving a file, there is no star.
  267.  
  268.   -  Any words inside the parentheses indicate the "modes" EMACS is
  269.      currently in.  Modes will be discussed in the next section.
  270.  
  271.   -  The string following the () is the buffername, i.e., the name EMACS
  272.      gives to the buffer, and it is usually related to the filename.
  273.  
  274.   -  The string following "File:" is the name of the file you are
  275.      currently editing.
  276.  
  277. >>  Look at the mode line and identify the items discussed above.
  278.  
  279.  
  280. MODES
  281. -----
  282.  
  283. Listed within the parentheses are the "modes" which are associated with
  284. the current buffer.  Modes are a feature of EMACS which assist in the
  285. editing of different languages, i.e., C, and text.  Presently, there are
  286. no modes associated with this buffer.  This means EMACS will do exactly
  287. what you think it will when using it - no "bonuses".  You can find out
  288. more about the current buffer and mode status by typing ^X^B.  Refer to
  289. the EMACS manual for a further discussion of buffers and modes.
  290.  
  291. As you become more familiar with EMACS and the use of buffers, "mode"
  292. takes on additional meaning.  When more than one buffer is in use, a
  293. mode is referred to as "local" or "global".  These terms indicate how a
  294. mode will affect the current buffer and other existing or to be added
  295. buffers.
  296.  
  297. A "local" mode is valid only within the scope of the current buffer.
  298. Other existing buffers and buffers which will be added are not affected
  299. by local modes.
  300.  
  301. The commands to add and delete local modes are
  302.  
  303.      ^XM       Add a local mode
  304.      ^X^M      Delete a local mode
  305.  
  306. Each of the above commands will prompt you for a mode.  To activate
  307. (deactivate) a mode, type the name of a valid (active) mode (refer to
  308. EMACS manual for a complete list of the valid modes) and follow it by
  309. pressing <Return>, the carriage-return key.
  310.  
  311. >>  Type ^XM WRAP - note the change in the mode line.  Move the cursor
  312.     to a blank line on this screen and begin typing the sequence "asdf ".
  313.     Continue typing this sequence and note what happens when the right
  314.     margin is encountered.
  315.  
  316. The previous exercise allowed you to enter text with the "WRAP" mode
  317. active.  As you can see, "WRAP" instructs EMACS to break between words
  318. when a line gets too long.  However, in order for this mode to be
  319. effective, spaces must be inserted between words.
  320.  
  321. The right margin is usually set at 72 characters but it can be changed.
  322. To change the margin type ESC nn ^XF where "nn" is the column number of
  323. the new right-hand margin.
  324.  
  325. >>  Type ESC 40 ^XF.  Then begin typing "asdf " and notice where the
  326.     line now breaks.  To return to the default right-hand margin, type
  327.     ESC 72 ^XF.
  328.  
  329. >>  Type ^X^M WRAP to "turn off" the local mode "WRAP".
  330.  
  331. A "global" mode affects only those buffers which will be ADDED after the
  332. "add/delete global mode" command is executed - not the current or other
  333. existing buffers.  Currently there is no global mode set.
  334.  
  335. The commands to add and delete global modes are
  336.  
  337.      ESC-M     Add a global mode
  338.      ESC-^M    Delete a global mode
  339.  
  340. Note:  All modes can be local.  However, global modes allow you to
  341.        activate those modes which usually apply to most of the buffers
  342.        in use.
  343.  
  344. As with local modes, each of the above commands will prompt you for
  345. a mode.  To activate (deactivate) a mode, enter the name of a valid
  346. (active) mode.
  347.  
  348. >>  Type ESC-M OVER.  This mode tells EMACS to write over the text on
  349.     the current line.  Is there any change in the mode line? Now move to
  350.     the line of "asdf " you entered and start typing.  Note that nothing
  351.     happens.  Remember that global modes affect only those modes which
  352.     will be added - not those already existing.
  353.  
  354. >>  Type ESC-^M OVER to "turn off" the global overwrite mode.
  355.  
  356.  
  357. INSERTING AND DELETING
  358. ----------------------
  359.  
  360. If you want to type text, just start typing.  Characters which you
  361. can see, such as A, 7, *, etc. are taken by EMACS as text and are
  362. immediately inserted.  Type <Return> to insert a line separator,
  363. i.e., a single linefeed character.
  364.  
  365. You can delete the last character you typed by typing either <Delete>
  366. or ^H.  On some keyboards, there is a dedicated key for creating a ^H.
  367. If so, it is usually labelled as either "Backspace" or "<--".  <Delete>
  368. is a key on the keyboard, which may be labelled "Rubout" instead of
  369. "Delete" on some terminals.  More generally, <Delete> deletes the
  370. character immediately before the current cursor position.
  371.  
  372. >>  Now type a few characters and then delete them by typing <Delete>
  373.     a few times.
  374.  
  375. >>  Now start typing text until you reach the right margin, then continue
  376.     to type.  When a line of text gets too big for one line on the screen,
  377.     the line of text is "continued" off the edge of the screen.  The dollar
  378.     sign at the right margin indicates a line which has been continued.
  379.     EMACS scrolls the line over so you can see what you are editing.  The
  380.     "$" at the left or right edge of the screen indicates that the current
  381.     line extends off in that direction.
  382.  
  383. This concept is easier to understand by doing rather than by reading about
  384. it so it is suggested that the following exercises be done.
  385.  
  386. >>  The following line actually goes off the edge.  Try typing enough ESC-F's
  387.     so that you move off the right hand end of this line.  This is a long line of text.  Note the "$" at each edge.  Keep typing ESC-F's and watch where EMACS decides to scroll the line.  Now, type ESC-B's until EMACS decides to scroll the line again.
  388.  
  389. >>  Go to the line you entered which the text continued off the edge of
  390.     the screen.  Use ^D's to delete the text until the text line fits on
  391.     one screen line again.  The continuation "$" will go away.
  392.  
  393. >>  Move the cursor to the beginning of a line and type <Delete>.  This
  394.     deletes the line separator before the line and merges the line onto
  395.     the previous line.  The resulting line may be too long to fit on the
  396.     screen, in which case it has a continuation indicator.
  397.  
  398. >>  Press <Return> to insert the separator again.
  399.  
  400. Internally, EMACS will allow you to have lines of nearly any length, limited
  401. only by the amount of memory available.  Externally, however, EMACS can only
  402. read or write lines, to or from a file, which are less than or equal to 255
  403. characters.
  404.  
  405. Remember that most EMACS commands can be given a repeat count.  Note that
  406. this includes characters which insert themselves.
  407.  
  408. >>  Try that now -- type ESC-8 * and see what happens.
  409.  
  410. If you want to insert spaces in a line, type ^C.
  411.  
  412. >>  Move to a line and move the cursor with ^F's; then insert spaces with ^C.
  413.     Use ^D to remove the spaces.
  414.  
  415. If you want to create a blank line between two lines, move to the second
  416. of the two lines and type ^O.
  417.  
  418. >>  Try moving to a line and typing ^O now.
  419.  
  420. You've now learned the most basic way of typing something in EMACS and
  421. correcting errors.  You can delete characters, words or lines as well.
  422. Here is a summary of the delete operations:
  423.  
  424.      <Delete>      Delete the character just before the cursor
  425.      ^H            Delete the character just before the cursor
  426.      ^D            Delete the character the cursor is under
  427.  
  428.      ESC-<Delete>  Kill the word immediately before the cursor
  429.      ESC-^H        Kill the word immediately before the cursor
  430.      ESC-D         Kill the word from the cursor position
  431.  
  432.      ^K            Kill from the cursor position to end of line
  433.  
  434. Notice that <Delete> and ^D vs ESC-<Delete> and ESC-D extend the parallel
  435. started by ^F and ESC-F (well, <Delete> isn't really a control character,
  436. but let's not worry about that).
  437.  
  438. Now suppose you kill something, and then you decide that you want to get
  439. it back?  Well, whenever you kill something bigger than a character, EMACS
  440. saves it for you.  To yank it back, use ^Y.  Note that you don't have to
  441. be in the same place to do ^Y.  This is a good way to move text around.
  442. Also note the difference between "Killing" and "Deleting" - "Killed" text
  443. can be yanked back, and "Deleted" text cannot.  Generally, the commands
  444. that can destroy a lot of text save it, while the ones that attack only
  445. one character do not save it.
  446.  
  447. >>  Type ^N a couple times to position the cursor at some line on this
  448.     screen.  Now kill that line with ^K.
  449.  
  450. Note that a single ^K kills the contents of the line, and a second ^K
  451. kills the line itself, and makes all the other lines move up.  If you
  452. give ^K a repeat count, it kills that many lines AND their contents.
  453.  
  454. The text that has just disappeared is saved so that you can retrieve it.
  455. To retrieve the last killed text and put it where the cursor currently
  456. is, type ^Y.
  457.  
  458. >>  Try it.  Type ^Y to yank the text back.
  459.  
  460. Think of ^Y as if you were yanking something back that someone took away
  461. from you.  Notice that if you do several ^K's in a row the text that is
  462. killed is all saved together so that one ^Y will yank all of the lines.
  463.  
  464. >>  Try it.  Type ^K several times.
  465.  
  466. >>  To retrieve that killed text:  Type ^Y.  Move the cursor down a few
  467.     lines and type ^Y again.  You now know how to copy text.
  468.  
  469. What do you do if you have some text you want to yank back, and then
  470. you kill something else?  ^Y would yank the more recent kill.
  471.  
  472. >>  Kill a line, move around, kill another line.  Then do ^Y to get back
  473.     the second killed line.
  474.  
  475.  
  476. SEARCHING
  477. ---------
  478.  
  479. EMACS can do searches for strings (these are groups of contiguous
  480. characters or words) either forward through the file or backward
  481. through it.
  482.  
  483. >>  Now type ^S to start a search.  Type the word "cursor", then ESC.
  484.  
  485. >>  Type ^S ESC to find the next occurrence of "cursor".
  486.  
  487. The ^S starts a search that looks for any occurrence of the search
  488. string AFTER the current cursor position.  But what if you want to
  489. search for something earlier in the text?  To do this one should
  490. type ^R for Reverse search.  Everything that applies to ^S applies
  491. to ^R except that the direction of the search is reversed.
  492.  
  493.  
  494. TEXT REPLACEMENT
  495. ----------------
  496.  
  497. >>  Move the cursor to the blank line two lines below this one.
  498.     Then type ESC-R changed ESC altered ESC .
  499.  
  500.     Notice how this line has changed; you have replaced the word
  501.     "changed" with "altered" wherever it occurs in the file after
  502.     the cursor.  After all the substitutions have been made or
  503.     the end of file has been reached, a message informing you of
  504.     the number of substitutions which have been made appears in
  505.     the communication line.
  506.  
  507. The more customary command for replacing strings is the interactive
  508. command query-replace-search (ESC-^R), which has several options.  In
  509. essence, it shows each occurrence of the first string and asks you if
  510. you want to replace it or not.  Type a "?" when it asks to replace the
  511. string to list the various options for query-replace-search.  For a
  512. more detailed discussion of this command refer to the EMACS manual.
  513.  
  514.  
  515. FILES
  516. -----
  517.  
  518. In order to make the text changes permanent, you must save them to a file.
  519. If you do not save them, the changes will "disappear" when you leave EMACS.
  520. As you make changes, i.e., corrections, deletions, insertions, etc., they
  521. are actually written to a "scratch" copy of the file and the changes to
  522. this file will not affect the "master" copy of the file until a file save
  523. is specified. This allows you to decide if changes made to the file should
  524. be made permanent or discarded.
  525.  
  526. Remember:  The file name appears on the mode line.
  527.  
  528. =* MicroEMACS 3.7 () == emacs.tut == File: emacs.tut ===========================
  529.                                      ---------------
  530.  
  531. The commands for finding and saving files are unlike the other commands
  532. you have learned so far in that they consist of two characters - a ^X
  533. followed by another character which specifies the file command to be
  534. executed.
  535.  
  536. To find a file, type ^X^F.  EMACS will then prompt you from the
  537. communication line for the name of the file.  In response to the prompt,
  538. type the file name followed by a <Return> to indicate the file name has
  539. been entered.  This command will tell EMACS to go find this file and
  540. load it.  Its contents will then be displayed on the screen and you will
  541. be able to edit the file's contents.
  542.  
  543. To save any changes made to the file, type ^X^S.  This tells EMACS to
  544. create a new version of the file which includes the changes you have
  545. made.  When the save is complete, the number of lines saved will be
  546. displayed in the communication line.
  547.  
  548. If you edit a file and at some point decide to quit (i.e., ^X^C) without
  549. saving the changes, EMACS will remind you that changes have been made to
  550. the file and ask you if you really want to quit.  Enter "N" to return to
  551. EMACS or "Y" to exit EMACS without saving the changes.
  552.  
  553. To create a file, just edit it "as if" it already existed.  Then start
  554. typing in the text.  When you ask to "save" the file, EMACS will really
  555. create the file with the text that you have entered.  From then on, you
  556. can consider yourself to be editing an existing file.
  557.  
  558. It is not easy for you to test editing a file and continue with the
  559. tutorial.  But you can always come back into the tutorial by starting
  560. it over and skipping forward.  So, when you feel ready, you should
  561. try editing a file named "FOO", putting some text in it, and saving
  562. it; then exit EMACS and look at the file to be sure that it worked.
  563.  
  564.  
  565. EXTENDING THE COMMAND SET
  566. -------------------------
  567.  
  568. There are many, many more EMACS commands than could possibly be put on all
  569. the CONTROL and META characters.  EMACS gets around this with the X (eXtend)
  570. command.  There are two forms of this command:
  571.  
  572.      ^X       Character eXtend.  Followed by one character.
  573.      ESC-X    Named command eXtend.  Followed by a long name.
  574.  
  575. These are commands that are generally useful but used less than the commands
  576. you have already learned about.  You have already seen two of them: the file
  577. commands ^X^F to Find and ^X^S to Save.  Another example is the command to
  578. tell EMACS that you'd like to stop editing.  The command to do this is ^X^C.
  579.  
  580. There are many ^X commands.  Right now, the most helpful ones will be
  581.  
  582.      ^X^F   Find file.
  583.      ^X^S   Save file.
  584.      ^X^C   Quit EMACS.  This does not save your files automatically;
  585.               however, if your files have been modified, EMACS asks if
  586.               you really want to quit.  The standard way to save and
  587.               exit is ^X^S ^X^C.
  588.  
  589. Named eXtended commands are commands which are used even less frequently,
  590. or commands which are used only in certain modes.  These commands are
  591. usually called "functions".  An example is the function "apropos", which
  592. prompts for a keyword and then gives the names of all the functions that
  593. are apropos for that keyword.  When you type ESC-X, EMACS prompts you from
  594. the communication line with ":" and you should type the name of the
  595. function you wish to call; in this case, "apropos".  Just type "apr<Space>"
  596. and EMACS will complete the name.  EMACS will ask you for a keyword or
  597. phrase and you type the string that you want information on.
  598.  
  599. >>  Type ESC-X, followed by "apropos<Return>" or "apr<Space>".  Then
  600.     type "file" followed by a <Return>.  Note: ESC-A is equivalent to
  601.     the ECS-X "apropos" command.
  602.  
  603. >>  To remove the "window" that was added, type ^X0 (zero).
  604.  
  605.  
  606. FUNCTION KEYS
  607. -------------
  608.  
  609. By now, you should be familiar with the format and meaning of some of
  610. the more common CONTROL and META commands.  Because several of these
  611. commands are used frequently, they have been bound to the function
  612. keys, which are usually located on the left-hand side of the keyboard
  613. and labelled F1..F10.  By pressing the appropriate function key, one
  614. can replace several keystrokes with a single keystroke, thus saving
  615. you time as you become familiar with their use.
  616.  
  617. The highlighted portion at the top of the screen lists the commands
  618. which are associated with each function key.  Each function key supports
  619. two commands specified by fn or Fn where n = 1, 2,...10.  The default
  620. commands are represented by fn and are defined on the left side of the
  621. screen; these commands are executed by pressing the appropriate function
  622. key.  The secondary commands are represented by Fn and are defined on
  623. the right side of the screen; these commands are executed by pressing
  624. the <Shift> key and the appropriate function key at the same time.
  625.  
  626. >>  Press f1 would ESC.  Note the position of the cursor - "would"
  627.     was located just as if ^S would ESC had been entered.  Enter
  628.     ^S would ESC to see for yourself.
  629.  
  630. >>  Press F1 (<Shift> f1).  Note the different appearance of the screen.
  631.     You have toggled the function key list, i.e., "turned it off".  To
  632.     "turn it on", press F1 again.
  633.  
  634. >>  Try using some of the other function keys to become familiar with
  635.     their use.  NOTE:  Do NOT use f9 with this file as it would save
  636.     any changes you may have made while using the tutorial.
  637.  
  638.  
  639. GETTING MORE HELP
  640. -----------------
  641.  
  642. In this tutorial we have tried to supply just enough information to get
  643. you started using EMACS.  There is so much available in EMACS that it
  644. would be impossible to explain it all here.  However, you may want to
  645. learn more about EMACS since it has numerous desirable features that you
  646. don't know about yet.
  647.  
  648. The most basic HELP feature is the describe-key function which is
  649. available by typing ^X? and then a command character.  EMACS prints
  650. one line in the communication line to tell what function is bound
  651. to that key.
  652.  
  653. >>  Type ^X?^P.  The message in the communication line should
  654.     be something like "^P is bound to previous-line".
  655.  
  656. NOTE:  Multi-character commands such as ^X^Z and ESC-V are also
  657.        allowed after ^X? .
  658.  
  659. ###  The describe-command function does not work - December 1986  ###
  660. ###  Skip to the next section                                     ###
  661.  
  662. The describe-command function (ESC-?) will prompt for the name of a
  663. function and print out the section from the manual about that command.
  664. When you are finished reading it, type a space or a ^G (quit) to bring
  665. your text back on the screen.
  666.  
  667. Now let's get more information about the previous-line command.
  668.  
  669. >>  Type ESC-?^P.  When you are finished reading the output, type <Space>.
  670.  
  671. The "name of the function" is important for people who are customizing
  672. EMACS.  It is what appears in the EMACS CHART as the documentation for
  673. the command character.
  674.  
  675.  
  676. CONCLUSION
  677. ----------
  678.  
  679. Remember:  To EXIT use ^X^C.
  680.  
  681. This tutorial is meant to be understandable to all new users, so if
  682. you found something unclear, don't sit and blame yourself - complain!
  683.  
  684. You'll probably find that if you use EMACS for a few days you won't be
  685. able to give it up.  Initially it may give you trouble.  But remember,
  686. this is the case with any editor, especially one that can do many, many
  687. things - and EMACS can do practically everything.
  688.  
  689.  
  690. ACKNOWLEDGEMENTS
  691. ----------------
  692.  
  693. This is a modified version of the "JOVE Tutorial" by Jonathan Payne
  694. (19 January 86).  That document was in turn a modified version of
  695. the tutorial "Teach-Emacs" from MIT as modified by Steve Zimmerman
  696. at CCA-UNIX (31 October 85).
  697.  
  698. Update - February 1986 by Dana Hoggatt.
  699.  
  700. Update - December 1986 by Kim Leburg.
  701.