home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / info / emacs-16 (.txt) < prev    next >
GNU Info File  |  1996-09-28  |  46KB  |  806 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.54 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: Remote Host,  Prev: Shell Options,  Up: Shell
  4. Remote Host Shell
  5. -----------------
  6.    Emacs provides two commands for logging in to another computer and
  7. communicating with it through an Emacs buffer.
  8. `M-x telnet RET HOSTNAME RET'
  9.      Set up a Telnet connection to the computer named HOSTNAME.
  10. `M-x rlogin RET HOSTNAME RET'
  11.      Set up an Rlogin connection to the computer named HOSTNAME.
  12.    Use `M-x telnet' to set up a Telnet connection to another computer.
  13. (Telnet is the standard Internet protocol for remote login.) It reads
  14. the host name of the other computer as an argument with the minibuffer.
  15. Once the connection is established, talking to the other computer
  16. works like talking to a subshell: you can edit input with the usual
  17. Emacs commands, and send it a line at a time by typing RET.  The output
  18. is inserted in the Telnet buffer interspersed with the input.
  19.    Use `M-x rlogin' to set up an Rlogin connection.  Rlogin is another
  20. remote login communication protocol, essentially much like the Telnet
  21. protocol but incompatible with it, and supported only by certain
  22. systems.  Rlogin's advantages are that you can arrange not to have to
  23. give your user name and password when communicating between two machines
  24. you frequently use, and that you can make an 8-bit-clean connection.
  25. (To do that in Emacs, set `rlogin-explicit-args' to `("-8")' before you
  26. run Rlogin.)
  27.    `M-x rlogin' sets up the default file directory of the Emacs buffer
  28. to access the remote host via FTP (*note File Names::.), and it tracks
  29. the shell commands that change the current directory just like Shell
  30. mode.
  31. File: emacs,  Node: Emacs Server,  Next: Hardcopy,  Prev: Shell,  Up: Top
  32. Using Emacs as a Server
  33. =======================
  34.    Various programs such as `mail' can invoke your choice of editor to
  35. edit a particular piece of text, such as a message that you are
  36. sending.  By convention, these programs use the environment variable
  37. `EDITOR' to specify which editor to run.  If you set `EDITOR' to
  38. `emacs', they invoke Emacs--but in an inconvenient fashion, by starting
  39. a new, separate Emacs process.  This is inconvenient because it takes
  40. time and because the new Emacs process doesn't share the buffers in the
  41. existing Emacs process.
  42.    You can arrange to use your existing Emacs process as the editor for
  43. programs like `mail' by using the Emacs client and Emacs server
  44. programs.  Here is how.
  45.    First, the preparation.  Within Emacs, call the function
  46. `server-start'.  (Your `.emacs' file can do this automatically if you
  47. add the expression `(server-start)' to it.)  Then, outside Emacs, set
  48. the `EDITOR' environment variable to `emacsclient'.
  49.    Then, whenever any program invokes your specified `EDITOR' program,
  50. the effect is to send a message to your principal Emacs telling it to
  51. visit a file.  (That's what the program `emacsclient' does.) Emacs
  52. obeys silently; it does not immediately switch to the new file's
  53. buffer.  When you want to do that, type `C-x #' (`server-edit').
  54.    When you've finished editing that buffer, type `C-x #' again.  This
  55. saves the file and sends a message back to the `emacsclient' program
  56. telling it to exit.  The programs that use `EDITOR' wait for the
  57. "editor" (actually, `emacsclient') to exit.  `C-x #' also checks to see
  58. if any other files are pending for you to edit, and selects the next
  59.    You can switch to a server buffer manually if you wish; you don't
  60. have to arrive at it with `C-x #'.  But `C-x #' is the only way to say
  61. that you are "finished" with one.
  62.    If you set the variable `server-window' to a window or a frame, `C-x
  63. #' displays the server buffer in that window or in that frame.
  64.    While `mail' or another application is waiting for `emacsclient' to
  65. finish, `emacsclient' does not read terminal input.  So the terminal
  66. that `mail' was using is effectively blocked for the duration.  In
  67. order to edit with your principal Emacs, you need to be able to use it
  68. without using that terminal.  There are two ways to do this:
  69.    * Using a window system, run `mail' and the principal Emacs in two
  70.      separate windows.  While `mail' is waiting for `emacsclient', the
  71.      window where it was running is blocked, but you can use Emacs by
  72.      switching windows.
  73.    * Use Shell mode in Emacs to run the other program such as `mail';
  74.      then, `emacsclient' blocks only the subshell under Emacs, and you
  75.      can still use Emacs to edit the file.
  76.    Some programs write temporary files for you to edit.  After you edit
  77. the temporary file, the program reads it back and deletes it.  If the
  78. Emacs server is later asked to edit the same file name, it should assume
  79. this has nothing to do with the previous occasion for that file name.
  80. The server accomplishes this by killing the temporary file's buffer when
  81. you finish with the file.  Use the variable `server-temp-file-regexp'
  82. to specify which files are temporary in this sense; its value should be
  83. a regular expression that matches file names that are temporary.
  84. File: emacs,  Node: Hardcopy,  Next: Sorting,  Prev: Emacs Server,  Up: Top
  85. Hardcopy Output
  86. ===============
  87.    The Emacs commands for making hardcopy let you print either an entire
  88. buffer or just part of one, either with or without page headers.  See
  89. also the hardcopy commands of Dired (*note Misc File Ops::.) and the
  90. diary (*note Diary Commands::.).
  91. `M-x print-buffer'
  92.      Print hardcopy of current buffer with page headings containing the
  93.      file name and page number.
  94. `M-x lpr-buffer'
  95.      Print hardcopy of current buffer without page headings.  makes no
  96.      page headings.
  97. `M-x print-region'
  98.      Like `print-buffer' but print only the current region.
  99. `M-x lpr-region'
  100.      Like `lpr-buffer' but print only the current region.
  101.    All the hardcopy commands pass extra switches to the `lpr' program
  102. based on the value of the variable `lpr-switches'.  Its value should be
  103. a list of strings, each string an option starting with `-'.  For
  104. example, to use a printer named `nearme', set `lpr-switches' like this:
  105.      (setq lpr-switches '("-Pnearme"))
  106.    The variable `lpr-header-switches' similarly specifies the extra
  107. switches to use to make page headers.
  108. File: emacs,  Node: Sorting,  Next: Narrowing,  Prev: Hardcopy,  Up: Top
  109. Sorting Text
  110. ============
  111.    Emacs provides several commands for sorting text in the buffer.  All
  112. operate on the contents of the region (the text between point and the
  113. mark).  They divide the text of the region into many "sort records",
  114. identify a "sort key" for each record, and then reorder the records
  115. into the order determined by the sort keys.  The records are ordered so
  116. that their keys are in alphabetical order, or, for numeric sorting, in
  117. numeric order.  In alphabetic sorting, all upper case letters `A'
  118. through `Z' come before lower case `a', in accord with the ASCII
  119. character sequence.
  120.    The various sort commands differ in how they divide the text into
  121. sort records and in which part of each record is used as the sort key.
  122. Most of the commands make each line a separate sort record, but some
  123. commands use paragraphs or pages as sort records.  Most of the sort
  124. commands use each entire sort record as its own sort key, but some use
  125. only a portion of the record as the sort key.
  126. `M-x sort-lines'
  127.      Divide the region into lines, and sort by comparing the entire
  128.      text of a line.  A numeric argument means sort into descending
  129.      order.
  130. `M-x sort-paragraphs'
  131.      Divide the region into paragraphs, and sort by comparing the entire
  132.      text of a paragraph (except for leading blank lines).  A numeric
  133.      argument means sort into descending order.
  134. `M-x sort-pages'
  135.      Divide the region into pages, and sort by comparing the entire
  136.      text of a page (except for leading blank lines).  A numeric
  137.      argument means sort into descending order.
  138. `M-x sort-fields'
  139.      Divide the region into lines, and sort by comparing the contents of
  140.      one field in each line.  Fields are defined as separated by
  141.      whitespace, so the first run of consecutive non-whitespace
  142.      characters in a line constitutes field 1, the second such run
  143.      constitutes field 2, etc.
  144.      Specify which field to sort by with a numeric argument: 1 to sort
  145.      by field 1, etc.  A negative argument means count fields from the
  146.      right instead of from the left; thus, minus 1 means sort by the
  147.      last field.  If several lines have identical contents in the field
  148.      being sorted, they keep same relative order that they had in the
  149.      original buffer.
  150.      A negative argument means count fields from the right (from the
  151.      end of the line).
  152. `M-x sort-numeric-fields'
  153.      Like `M-x sort-fields' except the specified field is converted to
  154.      an integer for each line, and the numbers are compared.  `10'
  155.      comes before `2' when considered as text, but after it when
  156.      considered as a number.
  157. `M-x sort-columns'
  158.      Like `M-x sort-fields' except that the text within each line used
  159.      for comparison comes from a fixed range of columns.  See below for
  160.      an explanation.
  161. `M-x reverse-region'
  162.      Reverse the order of the lines in the region.  This is useful for
  163.      sorting into descending order by fields or columns, since those
  164.      sort commands do not have a feature for doing that.
  165.    For example, if the buffer contains this:
  166.      On systems where clash detection (locking of files being edited) is
  167.      implemented, Emacs also checks the first time you modify a buffer
  168.      whether the file has changed on disk since it was last visited or
  169.      saved.  If it has, you are asked to confirm that you want to change
  170.      the buffer.
  171. applying `M-x sort-lines' to the entire buffer produces this:
  172.      On systems where clash detection (locking of files being edited) is
  173.      implemented, Emacs also checks the first time you modify a buffer
  174.      saved.  If it has, you are asked to confirm that you want to change
  175.      the buffer.
  176.      whether the file has changed on disk since it was last visited or
  177. where the upper case `O' sorts before all lower case letters.  If you
  178. use `C-u 2 M-x sort-fields' instead, you get this:
  179.      implemented, Emacs also checks the first time you modify a buffer
  180.      saved.  If it has, you are asked to confirm that you want to change
  181.      the buffer.
  182.      On systems where clash detection (locking of files being edited) is
  183.      whether the file has changed on disk since it was last visited or
  184. where the sort keys were `Emacs', `If', `buffer', `systems' and `the'.
  185.    `M-x sort-columns' requires more explanation.  You specify the
  186. columns by putting point at one of the columns and the mark at the other
  187. column.  Because this means you cannot put point or the mark at the
  188. beginning of the first line to sort, this command uses an unusual
  189. definition of `region': all of the line point is in is considered part
  190. of the region, and so is all of the line the mark is in, as well as all
  191. the lines in between.
  192.    For example, to sort a table by information found in columns 10 to
  193. 15, you could put the mark on column 10 in the first line of the table,
  194. and point on column 15 in the last line of the table, and then run
  195. `sort-columns'.  Equivalently, you could run it with the mark on column
  196. 15 in the first line and point on column 10 in the last line.
  197.    This can be thought of as sorting the rectangle specified by point
  198. and the mark, except that the text on each line to the left or right of
  199. the rectangle moves along with the text inside the rectangle.  *Note
  200. Rectangles::.
  201.    Many of the sort commands ignore case differences when comparing, if
  202. `sort-fold-case' is non-`nil'.
  203. File: emacs,  Node: Narrowing,  Next: Two-Column,  Prev: Sorting,  Up: Top
  204. Narrowing
  205. =========
  206.    "Narrowing" means focusing in on some portion of the buffer, making
  207. the rest temporarily inaccessible.  The portion which you can still get
  208. to is called the "accessible portion".  Canceling the narrowing, which
  209. makes the entire buffer once again accessible, is called "widening".
  210. The amount of narrowing in effect in a buffer at any time is called the
  211. buffer's "restriction".
  212.    Narrowing can make it easier to concentrate on a single subroutine or
  213. paragraph by eliminating clutter.  It can also be used to restrict the
  214. range of operation of a replace command or repeating keyboard macro.
  215. `C-x n n'
  216.      Narrow down to between point and mark (`narrow-to-region').
  217. `C-x n w'
  218.      Widen to make the entire buffer accessible again (`widen').
  219. `C-x n p'
  220.      Narrow down to the current page (`narrow-to-page').
  221.    When you have narrowed down to a part of the buffer, that part
  222. appears to be all there is.  You can't see the rest, you can't move
  223. into it (motion commands won't go outside the accessible part), you
  224. can't change it in any way.  However, it is not gone, and if you save
  225. the file all the inaccessible text will be saved.  The word `Narrow'
  226. appears in the mode line whenever narrowing is in effect.
  227.    The primary narrowing command is `C-x n n' (`narrow-to-region').  It
  228. sets the current buffer's restrictions so that the text in the current
  229. region remains accessible but all text before the region or after the
  230. region is inaccessible.  Point and mark do not change.
  231.    Alternatively, use `C-x n p' (`narrow-to-page') to narrow down to
  232. the current page.  *Note Pages::, for the definition of a page.
  233.    The way to cancel narrowing is to widen with `C-x n w' (`widen').
  234. This makes all text in the buffer accessible again.
  235.    You can get information on what part of the buffer you are narrowed
  236. down to using the `C-x =' command.  *Note Position Info::.
  237.    Because narrowing can easily confuse users who do not understand it,
  238. `narrow-to-region' is normally a disabled command.  Attempting to use
  239. this command asks for confirmation and gives you the option of enabling
  240. it; if you enable the command, confirmation will no longer be required
  241. for it.  *Note Disabling::.
  242. File: emacs,  Node: Two-Column,  Next: Editing Binary Files,  Prev: Narrowing,  Up: Top
  243. Two-Column Editing
  244. ==================
  245.    Two-column mode lets you conveniently edit two side-by-side columns
  246. of text.  It uses two side-by-side windows, each showing its own buffer.
  247.    There are three ways to enter two-column mode:
  248. `C-x 6 2'
  249.      Enter two-column mode with the current buffer on the left, and on
  250.      the right, a buffer whose name is based on the current buffer's
  251.      name (`tc-two-columns').  If the right-hand buffer doesn't already
  252.      exist, it starts out empty; the current buffer's contents are not
  253.      changed.
  254.      This command is appropriate when the current buffer contains just
  255.      one column and you want to add another column.
  256. `C-x 6 s'
  257.      Split the current buffer, which contains two-column text, into two
  258.      buffers, and display them side by side (`tc-split').  The current
  259.      buffer becomes the left-hand buffer, but the text in the right-hand
  260.      column is moved into the right-hand buffer.  The current column
  261.      specifies the split point.  Splitting starts with the current line
  262.      and continues to the end of the buffer.
  263.      This command is appropriate when you have a buffer that already
  264.      contains two-column text, and you wish to separate the columns
  265.      temporarily.
  266. `C-x 6 b BUFFER RET'
  267.      Enter two-column mode using the current buffer as the left-hand
  268.      buffer, and using buffer BUFFER as the right-hand buffer
  269.      (`tc-associate-buffer').
  270.    `C-x 6 s' looks for a column separator which is a string that
  271. appears on each line between the two columns.  You can specify the width
  272. of the separator with a numeric argument to `C-x 6 s'; that many
  273. characters, before point, constitute the separator string.  By default,
  274. the width is 1, so the column separator is the character before point.
  275.    When a line has the separator at the proper place, `C-x 6 s' puts
  276. the text after the separator into the right-hand buffer, and deletes the
  277. separator.  Lines that don't have the column separator at the proper
  278. place remain unsplit; they stay in the left-hand buffer, and the
  279. right-hand buffer gets an empty line to correspond.  (This is the way
  280. to write a line that spans both columns while in two-column mode: write
  281. it in the left-hand buffer, and put an empty line in the right-hand
  282. buffer.)
  283.    It's not a good idea to use ordinary scrolling commands during
  284. two-column editing, because that separates the two parts of each split
  285. line.  Instead, use these special scroll commands:
  286. `C-x 6 SPC'
  287.      Scroll both buffers up, in lock step (`tc-scroll-up').
  288. `C-x 6 DEL'
  289.      Scroll both buffers down, in lock step (`tc-scroll-down').
  290. `C-x 6 C-l'
  291.      Recenter both buffers, in lock step (`tc-recenter').
  292.    When you have edited both buffers as you wish, merge them with `C-x
  293. 6 1' (`tc-merge').  This copies the text from the right-hand buffer as
  294. a second column in the other buffer.  To go back to two-column editing,
  295. use `C-x 6 s'.
  296.    Use `C-x 6 d' to disassociate the two buffers, leaving each as it
  297. stands (`tc-dissociate').  If the other buffer, the one not current
  298. when you type `C-x 6 d', is empty, `C-x 6 d' kills it.
  299. File: emacs,  Node: Editing Binary Files,  Next: Saving Emacs Sessions,  Prev: Two-Column,  Up: Top
  300. Editing Binary Files
  301. ====================
  302.    There is a special major mode for editing binary files: Hexl mode.
  303. To use it, use `M-x hexl-find-file' instead of `C-x C-f' to visit the
  304. file.  This command converts the file's contents to hexadecimal and
  305. lets you edit the translation.  When you save the file, it is converted
  306. automatically back to binary.
  307.    You can also use `M-x hexl-mode' to translate an existing buffer
  308. into hex.  This is useful if you visit a file normally and then discover
  309. it is a binary file.
  310.    Ordinary text characters overwrite in Hexl mode.  This is to reduce
  311. the risk of accidentally spoiling the alignment of data in the file.
  312. There are special commands for insertion.  Here is a list of the
  313. commands of Hexl mode:
  314. `C-M-d'
  315.      Insert a byte with a code typed in decimal.
  316. `C-M-o'
  317.      Insert a byte with a code typed in octal.
  318. `C-M-x'
  319.      Insert a byte with a code typed in hex.
  320. `C-x ['
  321.      Move to the beginning of a 1k-byte "page".
  322. `C-x ]'
  323.      Move to the end of a 1k-byte "page".
  324. `M-g'
  325.      Move to an address specified in hex.
  326. `M-j'
  327.      Move to an address specified in decimal.
  328. `C-c C-c'
  329.      Leave Hexl mode, going back to the major mode this buffer had
  330.      before you invoked `hexl-mode'.
  331. File: emacs,  Node: Saving Emacs Sessions,  Next: Recursive Edit,  Prev: Editing Binary Files,  Up: Top
  332. Saving Emacs Sessions
  333. =====================
  334.    You can use the Desktop library to save the state of Emacs from one
  335. session to another.  Saving the state means that Emacs starts up with
  336. the same set of buffers, major modes, buffer positions, and so on that
  337. the previous Emacs session had.
  338.    To use Desktop, you should first add these lines to your `.emacs'
  339. file, preferably at or near the end:
  340.      (load "desktop")
  341.      (desktop-load-default)
  342.      (desktop-read)
  343. Then, to enable state saving in a particular Emacs session, use the
  344. command `M-x desktop-save'.  Once you have done this, the state of this
  345. Emacs session will be saved when you exit Emacs.
  346.    In order for Emacs to recover the state from a previous session, you
  347. must start it with the same current directory as you used when you
  348. started the previous session.
  349. File: emacs,  Node: Recursive Edit,  Next: Emulation,  Prev: Saving Emacs Sessions,  Up: Top
  350. Recursive Editing Levels
  351. ========================
  352.    A "recursive edit" is a situation in which you are using Emacs
  353. commands to perform arbitrary editing while in the middle of another
  354. Emacs command.  For example, when you type `C-r' inside of a
  355. `query-replace', you enter a recursive edit in which you can change the
  356. current buffer.  On exiting from the recursive edit, you go back to the
  357. `query-replace'.
  358.    "Exiting" the recursive edit means returning to the unfinished
  359. command, which continues execution.  The command to exit is `C-M-c'
  360. (`exit-recursive-edit').
  361.    You can also "abort" the recursive edit.  This is like exiting, but
  362. also quits the unfinished command immediately.  Use the command `C-]'
  363. (`abort-recursive-edit') to do this.  *Note Quitting::.
  364.    The mode line shows you when you are in a recursive edit by
  365. displaying square brackets around the parentheses that always surround
  366. the major and minor mode names.  Every window's mode line shows this,
  367. in the same way, since being in a recursive edit is true of Emacs as a
  368. whole rather than any particular window or buffer.
  369.    It is possible to be in recursive edits within recursive edits.  For
  370. example, after typing `C-r' in a `query-replace', you may type a
  371. command that enters the debugger.  This begins a recursive editing level
  372. for the debugger, within the recursive editing level for `C-r'.  Mode
  373. lines display a pair of square brackets for each recursive editing
  374. level currently in progress.
  375.    Exiting the inner recursive edit (such as, with the debugger `c'
  376. command) resumes the command running in the next level up.  When that
  377. command finishes, you can then use `C-M-c' to exit another recursive
  378. editing level, and so on.  Exiting applies to the innermost level only.
  379. Aborting also gets out of only one level of recursive edit; it returns
  380. immediately to the command level of the previous recursive edit.  If you
  381. wish, you can then abort the next recursive editing level.
  382.    Alternatively, the command `M-x top-level' aborts all levels of
  383. recursive edits, returning immediately to the top level command reader.
  384.    The text being edited inside the recursive edit need not be the same
  385. text that you were editing at top level.  It depends on what the
  386. recursive edit is for.  If the command that invokes the recursive edit
  387. selects a different buffer first, that is the buffer you will edit
  388. recursively.  In any case, you can switch buffers within the recursive
  389. edit in the normal manner (as long as the buffer-switching keys have
  390. not been rebound).  You could probably do all the rest of your editing
  391. inside the recursive edit, visiting files and all.  But this could have
  392. surprising effects (such as stack overflow) from time to time.  So
  393. remember to exit or abort the recursive edit when you no longer need it.
  394.    In general, we try to minimize the use of recursive editing levels in
  395. GNU Emacs.  This is because they constrain you to "go back" in a
  396. particular order-from the innermost level toward the top level.  When
  397. possible, we present different activities in separate buffers so that
  398. you can switch between them as you please.  Some commands switch to a
  399. new major mode which provides a command to switch back.  These
  400. approaches give you more flexibility to go back to unfinished tasks in
  401. the order you choose.
  402. File: emacs,  Node: Emulation,  Next: Dissociated Press,  Prev: Recursive Edit,  Up: Top
  403. Emulation
  404. =========
  405.    GNU Emacs can be programmed to emulate (more or less) most other
  406. editors.  Standard facilities can emulate these:
  407. EDT (DEC VMS editor)
  408.      Turn on EDT emulation with `M-x edt-emulation-on'.  `M-x
  409.      edt-emulation-off' restores normal Emacs command bindings.
  410.      Most of the EDT emulation commands are keypad keys, and most
  411.      standard Emacs key bindings are still available.  The EDT
  412.      emulation rebindings are done in the global keymap, so there is no
  413.      problem switching buffers or major modes while in EDT emulation.
  414. vi (Berkeley editor)
  415.      Turn on vi emulation with `M-x vi-mode'.  This is a major mode
  416.      that replaces the previously established major mode.  All of the
  417.      vi commands that, in real vi, enter "input" mode are programmed in
  418.      the Emacs emulator to return to the previous major mode.  Thus,
  419.      ordinary Emacs serves as vi's "input" mode.
  420.      Because vi emulation works through major modes, it does not work
  421.      to switch buffers during emulation.  Return to normal Emacs first.
  422.      If you plan to use vi emulation much, you probably want to bind a
  423.      key to the `vi-mode' command.
  424. vi (alternate emulator)
  425.      Another vi emulator said to resemble real vi more thoroughly is
  426.      invoked by `M-x vip-mode'.  "Input" mode in this emulator is
  427.      changed from ordinary Emacs so you can use ESC to go back to
  428.      emulated vi command mode.  To get from emulated vi command mode
  429.      back to ordinary Emacs, type `C-z'.
  430.      This emulation does not work through major modes, and it is
  431.      possible to switch buffers in various ways within the emulator.
  432.      It is not so necessary to assign a key to the command `vip-mode' as
  433.      it is with `vi-mode' because terminating insert mode does not use
  434.      it.
  435.      For full information, see the long comment at the beginning of the
  436.      source file, which is `lisp/vip.el' in the Emacs distribution.
  437.    I am interested in hearing which vi emulator users prefer, as well
  438. as in receiving more complete user documentation for either or both
  439. emulators.  Warning: loading both vi emulators at once may cause name
  440. conflicts; no one has checked.
  441. File: emacs,  Node: Dissociated Press,  Next: Amusements,  Prev: Emulation,  Up: Top
  442. Dissociated Press
  443. =================
  444.    `M-x dissociated-press' is a command for scrambling a file of text
  445. either word by word or character by character.  Starting from a buffer
  446. of straight English, it produces extremely amusing output.  The input
  447. comes from the current Emacs buffer.  Dissociated Press writes its
  448. output in a buffer named `*Dissociation*', and redisplays that buffer
  449. after every couple of lines (approximately) so you can read the output
  450. as it comes out.
  451.    Dissociated Press asks every so often whether to continue generating
  452. output.  Answer `n' to stop it.  You can also stop at any time by
  453. typing `C-g'.  The dissociation output remains in the `*Dissociation*'
  454. buffer for you to copy elsewhere if you wish.
  455.    Dissociated Press operates by jumping at random from one point in the
  456. buffer to another.  In order to produce plausible output rather than
  457. gibberish, it insists on a certain amount of overlap between the end of
  458. one run of consecutive words or characters and the start of the next.
  459. That is, if it has just printed out `president' and then decides to jump
  460. to a different point in the file, it might spot the `ent' in `pentagon'
  461. and continue from there, producing `presidentagon'.(1)  Long sample
  462. texts produce the best results.
  463.    A positive argument to `M-x dissociated-press' tells it to operate
  464. character by character, and specifies the number of overlap characters.
  465. A negative argument tells it to operate word by word and specifies the
  466. number of overlap words.  In this mode, whole words are treated as the
  467. elements to be permuted, rather than characters.  No argument is
  468. equivalent to an argument of two.  For your againformation, the output
  469. goes only into the buffer `*Dissociation*'.  The buffer you start with
  470. is not changed.
  471.    Dissociated Press produces nearly the same results as a Markov chain
  472. based on a frequency table constructed from the sample text.  It is,
  473. however, an independent, ignoriginal invention.  Dissociated Press
  474. techniquitously copies several consecutive characters from the sample
  475. between random choices, whereas a Markov chain would choose randomly for
  476. each word or character.  This makes for more plausible sounding results,
  477. and runs faster.
  478.    It is a mustatement that too much use of Dissociated Press can be a
  479. developediment to your real work.  Sometimes to the point of outragedy.
  480. And keep dissociwords out of your documentation, if you want it to be
  481. well userenced and properbose.  Have fun.  Your buggestions are welcome.
  482.    ---------- Footnotes ----------
  483.    (1)  This dissociword actually appeared during the Vietnam War, when
  484. it was very appropriate.
  485. File: emacs,  Node: Amusements,  Next: Customization,  Prev: Dissociated Press,  Up: Top
  486. Other Amusements
  487. ================
  488.    If you are a little bit bored, you can try `M-x hanoi'.  If you are
  489. considerably bored, give it a numeric argument.  If you are very very
  490. bored, try an argument of 9.  Sit back and watch.
  491.    If you want a little more personal involvement, try `M-x gomoku',
  492. which plays the game Go Moku with you.
  493.    `M-x blackbox' and `M-x mpuz' are two kinds of puzzles.  `blackbox'
  494. challenges you to determine the location of objects inside a box by
  495. tomography.  `mpuz' displays a multiplication puzzle with letters
  496. standing for digits in a code that you must guess--to guess a value,
  497. type a letter and then the digit you think it stands for.
  498.    `M-x dunnet' runs an adventure-style exploration game, which is a
  499. bigger sort of puzzle.
  500.    When you are frustrated, try the famous Eliza program.  Just do `M-x
  501. doctor'.  End each input by typing `RET' twice.
  502.    When you are feeling strange, type `M-x yow'.
  503. File: emacs,  Node: Customization,  Next: Quitting,  Prev: Amusements,  Up: Top
  504. Customization
  505. *************
  506.    This chapter talks about various topics relevant to adapting the
  507. behavior of Emacs in minor ways.  See `The Emacs Lisp Reference Manual'
  508. for how to make more far-reaching changes.
  509.    All kinds of customization affect only the particular Emacs session
  510. that you do them in.  They are completely lost when you kill the Emacs
  511. session, and have no effect on other Emacs sessions you may run at the
  512. same time or later.  The only way an Emacs session can affect anything
  513. outside of it is by writing a file; in particular, the only way to make
  514. a customization `permanent' is to put something in your `.emacs' file
  515. or other appropriate file to do the customization in each session.
  516. *Note Init File::.
  517. * Menu:
  518. * Minor Modes::           Each minor mode is one feature you can turn on
  519.                  independently of any others.
  520. * Variables::           Many Emacs commands examine Emacs variables
  521.                  to decide what to do; by setting variables,
  522.                  you can control their functioning.
  523. * Keyboard Macros::       A keyboard macro records a sequence of
  524.                  keystrokes to be replayed with a single
  525.                  command.
  526. * Key Bindings::       The keymaps say what command each key runs.
  527.                  By changing them, you can "redefine keys".
  528. * Keyboard Translations::  If your keyboard passes an undesired code
  529.                  for a key, you can tell Emacs to
  530.                  substitute another code.
  531. * Syntax::           The syntax table controls how words and
  532.                   expressions are parsed.
  533. * Init File::           How to write common customizations in the
  534.                              `.emacs' file.
  535. File: emacs,  Node: Minor Modes,  Next: Variables,  Up: Customization
  536. Minor Modes
  537. ===========
  538.    Minor modes are optional features which you can turn on or off.  For
  539. example, Auto Fill mode is a minor mode in which SPC breaks lines
  540. between words as you type.  All the minor modes are independent of each
  541. other and of the selected major mode.  Most minor modes say in the mode
  542. line when they are on; for example, `Fill' in the mode line means that
  543. Auto Fill mode is on.
  544.    Append `-mode' to the name of a minor mode to get the name of a
  545. command function that turns the mode on or off.  Thus, the command to
  546. enable or disable Auto Fill mode is called `M-x auto-fill-mode'.  These
  547. commands are usually invoked with `M-x', but you can bind keys to them
  548. if you wish.  With no argument, the function turns the mode on if it was
  549. off and off if it was on.  This is known as "toggling".  A positive
  550. argument always turns the mode on, and an explicit zero argument or a
  551. negative argument always turns it off.
  552.    Enabling or disabling some minor modes applies only to the current
  553. buffer; each buffer is independent of the other buffers.  Therefore, you
  554. can enable the mode in particular buffers and disable it in others.  The
  555. per-buffer minor modes include Auto Fill mode, Outline minor mode, Auto
  556. Save mode, Font-Lock mode, and ISO Accents mode.
  557.    Auto Fill mode allows you to enter filled text without breaking lines
  558. explicitly.  Emacs inserts newlines as necessary to prevent lines from
  559. becoming too long.  *Note Filling::.
  560.    Outline minor mode provides the same facilities as the major mode
  561. called Outline mode; but since it is a minor mode instead, you can
  562. combine it with any major mode.  *Note Outline Mode::.
  563.    Overwrite mode causes ordinary printing characters to replace
  564. existing text instead of shoving it to the right.  For example, if
  565. point is in front of the `B' in `FOOBAR', then in Overwrite mode typing
  566. a `G' changes it to `FOOGAR', instead of producing it `FOOGBAR' as
  567. usual.
  568.    Auto Save mode causes the contents of a buffer to be saved
  569. periodically to reduce the amount of work you can lose in case of a
  570. system crash.  *Note Auto Save::.
  571.    Font-Lock mode automatically highlights certain textual units found
  572. in programs, such as comments, strings, and function names being
  573. defined.  This requires a window system that can display multiple fonts.
  574. *Note Faces::.
  575.    ISO Accents mode makes the characters ``', `'', `"', `^', `/' and
  576. `~' combine with the following letter, to produce an accented letter in
  577. the ISO Latin-1 character set.  *Note European Display::.
  578.    The following minor modes normally apply to all buffers at once.
  579. Since each is enabled or disabled by the value of a variable, you *can*
  580. set them differently for particular buffers, by explicitly making the
  581. corresponding variables local in those buffers.  *Note Locals::.
  582.    Abbrev mode allows you to define abbreviations that automatically
  583. expand as you type them.  For example, `amd' might expand to `abbrev
  584. mode'.  *Note Abbrevs::, for full information.
  585.    Line Number mode enables continuous display in the mode line of the
  586. line number of point.  *Note Mode Line::.
  587.    Resize-Minibuffer mode makes the minibuffer expand as necessary to
  588. hold the text that you put in it.  *Note Minibuffer Edit::.
  589.    Scroll Bar mode gives each window a scroll bar (*note Scroll
  590. Bars::.).  Menu Bar mode gives each frame a menu bar (*note Menu
  591. Bars::.).  Both of these modes are enabled by default when you use the
  592. X Window System.
  593.    In Transient Mark mode, every change in the buffer contents
  594. "deactivates" the mark, so that commands that operate on the region
  595. will get an error.  This means you must either set the mark, or
  596. explicitly "reactivate" it, before each command that uses the region.
  597. The advantage of Transient Mark mode is that Emacs can display the
  598. region highlighted (currently only when using X).  *Note Setting Mark::.
  599. File: emacs,  Node: Variables,  Next: Keyboard Macros,  Prev: Minor Modes,  Up: Customization
  600. Variables
  601. =========
  602.    A "variable" is a Lisp symbol which has a value.  The symbol's name
  603. is also called the name of the variable.  A variable name can contain
  604. any characters that can appear in a file, but conventionally variable
  605. names consist of words separated by hyphens.  A variable can have a
  606. documentation string which describes what kind of value it should have
  607. and how the value will be used.
  608.    Lisp allows any variable to have any kind of value, but most
  609. variables that Emacs uses require a value of a certain type.  Often the
  610. value should always be a string, or should always be a number.
  611. Sometimes we say that a certain feature is turned on if a variable is
  612. "non-`nil'," meaning that if the variable's value is `nil', the feature
  613. is off, but the feature is on for *any* other value.  The conventional
  614. value to use to turn on the feature--since you have to pick one
  615. particular value when you set the variable--is `t'.
  616.    Emacs uses many Lisp variables for internal record keeping, as any
  617. Lisp program must, but the most interesting variables for you are the
  618. ones that exist for the sake of customization.  Emacs does not
  619. (usually) change the values of these variables; instead, you set the
  620. values, and thereby alter and control the behavior of certain Emacs
  621. commands.  These variables are called "options".  Most options are
  622. documented in this manual, and appear in the Variable Index (*note
  623. Variable Index::.).
  624.    One example of a variable which is an option is `fill-column', which
  625. specifies the position of the right margin (as a number of characters
  626. from the left margin) to be used by the fill commands (*note
  627. Filling::.).
  628. * Menu:
  629. * Examining::         Examining or setting one variable's value.
  630. * Edit Options::     Examining or editing list of all variables' values.
  631. * Hooks::         Hook variables let you specify programs for parts
  632.                of Emacs to run on particular occasions.
  633. * Locals::         Per-buffer values of variables.
  634. * File Variables::   How files can specify variable values.
  635. File: emacs,  Node: Examining,  Next: Edit Options,  Up: Variables
  636. Examining and Setting Variables
  637. -------------------------------
  638. `C-h v VAR RET'
  639.      Display the value and documentation of variable VAR
  640.      (`describe-variable').
  641. `M-x set-variable RET VAR RET VALUE RET'
  642.      Change the value of variable VAR to VALUE.
  643.    To examine the value of a single variable, use `C-h v'
  644. (`describe-variable'), which reads a variable name using the
  645. minibuffer, with completion.  It displays both the value and the
  646. documentation of the variable.  For example,
  647.      C-h v fill-column RET
  648. displays something like this:
  649.      fill-column's value is 75
  650.      
  651.      Documentation:
  652.      *Column beyond which automatic line-wrapping should happen.
  653.      Automatically becomes buffer-local when set in any fashion.
  654. The star at the beginning of the documentation indicates that this
  655. variable is an option.  `C-h v' is not restricted to options; it allows
  656. any variable name.
  657.    The most convenient way to set a specific option is with `M-x
  658. set-variable'.  This reads the variable name with the minibuffer (with
  659. completion), and then reads a Lisp expression for the new value using
  660. the minibuffer a second time.  For example,
  661.      M-x set-variable RET fill-column RET 75 RET
  662. sets `fill-column' to 75.
  663.    You can set any variable with a Lisp expression using the function
  664. `setq'.  Here's how to use it to set `fill-column':
  665.      (setq fill-column 75)
  666.    Setting variables, like all means of customizing Emacs except where
  667. otherwise stated, affects only the current Emacs session.
  668. File: emacs,  Node: Edit Options,  Next: Hooks,  Prev: Examining,  Up: Variables
  669. Editing Variable Values
  670. -----------------------
  671.    These two functions make it easy to display all the Emacs option
  672. variables, and to change some of them if you wish.
  673. `M-x list-options'
  674.      Display a buffer listing names, values and documentation of all
  675.      options.
  676. `M-x edit-options'
  677.      Change option values by editing a list of options.
  678.    `M-x list-options' displays a list of all Emacs option variables, in
  679. an Emacs buffer named `*List Options*'.  Each option is shown with its
  680. documentation and its current value.  Here is what a portion of it might
  681. look like:
  682.      ;; exec-path:
  683.      ("." "/usr/local/bin" "/usr/ucb" "/bin" "/usr/bin" "/u2/emacs/etc")
  684.      *List of directories to search programs to run in subprocesses.
  685.      Each element is a string (directory name)
  686.      or nil (try the default directory).
  687.      ;;
  688.      ;; fill-column:
  689.      75
  690.      *Column beyond which automatic line-wrapping should happen.
  691.      Automatically becomes buffer-local when set in any fashion.
  692.      ;;
  693.    `M-x edit-options' goes one step further and immediately selects the
  694. `*List Options*' buffer; this buffer uses the major mode Options mode,
  695. which provides commands that allow you to point at an option and change
  696. its value:
  697.      Set the variable point is in or near to a new value read using the
  698.      minibuffer.
  699.      Toggle the variable point is in or near: if the value was `nil',
  700.      it becomes `t'; otherwise it becomes `nil'.
  701.      Set the variable point is in or near to `t'.
  702.      Set the variable point is in or near to `nil'.
  703.      Move to the next or previous variable.
  704.    Any changes take effect immediately, and last until you exit from
  705. Emacs.
  706. File: emacs,  Node: Hooks,  Next: Locals,  Prev: Edit Options,  Up: Variables
  707. Hooks
  708. -----
  709.    A "hook" is a variable where you can store a function or functions
  710. to be called on a particular occasion by an existing program.  Emacs
  711. provides a number of hooks for the sake of customization.
  712.    Most of the hooks in Emacs are "normal hooks".  These variables
  713. contain lists of functions to be called with no arguments.  The reason
  714. most hooks are normal hooks is so that you can use them in a uniform
  715. way.  Every variable in Emacs whose name ends in `-hook' is a normal
  716. hook.
  717.    Most major modes run hooks as the last step of initialization.  This
  718. makes it easy for a user to customize the behavior of the mode, by
  719. overriding the local variable assignments already made by the mode.  But
  720. hooks may also be used in other contexts.  For example, the hook
  721. `suspend-hook' runs just before Emacs suspends itself (*note
  722. Exiting::.).
  723.    The recommended way to add a hook function to a normal hook is by
  724. calling `add-hook'.  You can use any valid Lisp function as the hook
  725. function.  For example, here's how to set up a hook to turn on Auto
  726. Fill mode when entering Text mode and other modes based on Text mode:
  727.      (add-hook 'text-mode-hook 'turn-on-auto-fill)
  728.    The next example shows how to use a hook to customize the indentation
  729. of C code.  (People often have strong personal preferences for one
  730. format compared to another.)  Here the hook function is an anonymous
  731. lambda expression.
  732.      (add-hook 'c-mode-hook
  733.        (function (lambda ()
  734.                    (setq c-indent-level 4
  735.                          c-argdecl-indent 0
  736.                          c-label-offset -4
  737.                          c-continued-statement-indent 0
  738.                          c-brace-offset 0
  739.                          comment-column 40))))
  740.      
  741.      (setq c++-mode-hook c-mode-hook)
  742.    It is best to design your hook functions so that the order in which
  743. they are executed does not matter.  Any dependence on the order is
  744. "asking for trouble."  However, the order is predictable: the most
  745. recently added hook functions are executed first.
  746. File: emacs,  Node: Locals,  Next: File Variables,  Prev: Hooks,  Up: Variables
  747. Local Variables
  748. ---------------
  749. `M-x make-local-variable RET VAR RET'
  750.      Make variable VAR have a local value in the current buffer.
  751. `M-x kill-local-variable RET VAR RET'
  752.      Make variable VAR use its global value in the current buffer.
  753. `M-x make-variable-buffer-local RET VAR RET'
  754.      Mark variable VAR so that setting it will make it local to the
  755.      buffer that is current at that time.
  756.    Any variable can be made "local" to a specific Emacs buffer.  This
  757. means that its value in that buffer is independent of its value in other
  758. buffers.  A few variables are always local in every buffer.  Every other
  759. Emacs variable has a "global" value which is in effect in all buffers
  760. that have not made the variable local.
  761.    `M-x make-local-variable' reads the name of a variable and makes it
  762. local to the current buffer.  Further changes in this buffer will not
  763. affect others, and further changes in the global value will not affect
  764. this buffer.
  765.    `M-x make-variable-buffer-local' reads the name of a variable and
  766. changes the future behavior of the variable so that it will become local
  767. automatically when it is set.  More precisely, once a variable has been
  768. marked in this way, the usual ways of setting the variable automatically
  769. do `make-local-variable' first.  We call such variables "per-buffer"
  770. variables.
  771.    Major modes (*note Major Modes::.) always make variables local to the
  772. buffer before setting the variables.  This is why changing major modes
  773. in one buffer has no effect on other buffers.  Minor modes also work by
  774. setting variables--normally, each minor mode has one controlling
  775. variable which is non-`nil' when the mode is enabled (*note Minor
  776. Modes::.).  For most minor modes, the controlling variable is per
  777. buffer.
  778.    Emacs contains a number of variables that are always per-buffer.
  779. These include `abbrev-mode', `auto-fill-function', `case-fold-search',
  780. `comment-column', `ctl-arrow', `fill-column', `fill-prefix',
  781. `indent-tabs-mode', `left-margin', `mode-line-format', `overwrite-mode',
  782. `selective-display-ellipses', `selective-display', `tab-width', and
  783. `truncate-lines'.  Some other variables are always local in every
  784. buffer, but they are used for internal purposes.
  785.    `M-x kill-local-variable' reads the name of a variable and makes it
  786. cease to be local to the current buffer.  The global value of the
  787. variable henceforth is in effect in this buffer.  Setting the major mode
  788. kills all the local variables of the buffer except for a few variables
  789. specially marked as "permanent locals".
  790.    To set the global value of a variable, regardless of whether the
  791. variable has a local value in the current buffer, you can use the Lisp
  792. construct `setq-default'.  This construct is used just like `setq', but
  793. it sets variables' global values instead of their local values (if
  794. any).  When the current buffer does have a local value, the new global
  795. value may not be visible until you switch to another buffer.  Here is
  796. an example:
  797.      (setq-default fill-column 75)
  798. `setq-default' is the only way to set the global value of a variable
  799. that has been marked with `make-variable-buffer-local'.
  800.    Lisp programs can use `default-value' to look at a variable's
  801. default value.  This function takes a symbol as argument and returns its
  802. default value.  The argument is evaluated; usually you must quote it
  803. explicitly.  For example, here's how to obtain the default value of
  804. `fill-column':
  805.      (default-value 'fill-column)
  806.