home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / E17INFO.ZIP / EMACS-4 < prev    next >
Encoding:
GNU Info File  |  1993-07-18  |  47.8 KB  |  1,230 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.54 from the
  2. input file emacs.texi.
  3.  
  4. 
  5. File: emacs,  Node: Apropos,  Next: Library Keywords,  Prev: Name Help,  Up: Help
  6.  
  7. Apropos
  8. =======
  9.  
  10.    A more sophisticated sort of question to ask is, "What are the
  11. commands for working with files?"  To ask this question, type `C-h a
  12. file RET', which displays a list of all command names that contain
  13. `file', including `copy-file', `find-file', and so on.  With each
  14. command name appears a brief description of how to use the command, and
  15. what keys you can currently invoke it with.  For example, it would say
  16. that you can invoke `find-file' by typing `C-x C-f'.  The `a' in `C-h
  17. a' stands for `Apropos'; `C-h a' runs the command `command-apropos'.
  18.  
  19.    Because `C-h a' looks only for functions whose names contain the
  20. string which you specify, you must use ingenuity in choosing the
  21. string.  If you are looking for commands for killing backwards and `C-h
  22. a kill-backwards RET' doesn't reveal any, don't give up.  Try just
  23. `kill', or just `backwards', or just `back'.  Be persistent.  Also note
  24. that you can use a regular expression as the argument, for more
  25. flexibility (*note Regexps::.).
  26.  
  27.    Here is a set of arguments to give to `C-h a' that covers many
  28. classes of Emacs commands, since there are strong conventions for naming
  29. the standard Emacs commands.  By giving you a feel for the naming
  30. conventions, this set should also serve to aid you in developing a
  31. technique for picking `apropos' strings.
  32.  
  33.      char, line, word, sentence, paragraph, region, page, sexp, list,
  34.      defun, rect, buffer, frame, window, file, dir, register, mode,
  35.      beginning, end, forward, backward, next, previous, up, down,
  36.      search, goto, kill, delete, mark, insert, yank, fill, indent,
  37.      case, change, set, what, list, find, view, describe.
  38.  
  39.    To list all Lisp symbols that contain a match for a regexp, not just
  40. the ones that are defined as commands, use the command `M-x apropos'
  41. instead of `C-h a'.  This command does not check key bindings by
  42. default; specify a numeric argument if you want it to check them.
  43.  
  44.    The `super-apropos' command is like `apropos' except that it
  45. searches documentation strings as well as symbol names for matches for
  46. the specified regular expression.
  47.  
  48. 
  49. File: emacs,  Node: Library Keywords,  Next: Misc Help,  Prev: Apropos,  Up: Help
  50.  
  51. Keyword Search for Lisp Libraries
  52. =================================
  53.  
  54.    The `C-h p' command lets you search the standard Emacs Lisp
  55. libraries by topic keywords.  Here is a partial list of keywords you can
  56. use:
  57.  
  58. `abbrev'
  59.      Abbreviation handling, typing shortcuts, macros.
  60.  
  61. `bib'
  62.      Support for the bibliography processor `bib'.
  63.  
  64. `c'
  65.      C and C++ language support.
  66.  
  67. `calendar'
  68.      Calendar and time management support.
  69.  
  70. `comm'
  71.      Communications, networking, remote access to files.
  72.  
  73. `docs'
  74.      Support for Emacs documentation.
  75.  
  76. `emulations'
  77.      Emulations of other editors.
  78.  
  79. `extensions'
  80.      Emacs Lisp language extensions.
  81.  
  82. `faces'
  83.      Support for using faces (fonts and colors; *note Faces::.).
  84.  
  85. `games'
  86.      Games, jokes and amusements.
  87.  
  88. `hardware'
  89.      Support for interfacing with exotic hardware.
  90.  
  91. `help'
  92.      Support for on-line help systems.
  93.  
  94. `i18n'
  95.      Internationalization and alternate character-set support.
  96.  
  97. `internal'
  98.      Code for Emacs internals, build process, defaults.
  99.  
  100. `languages'
  101.      Specialized modes for editing programming languages.
  102.  
  103. `lisp'
  104.      Support for using Lisp (including Emacs Lisp).
  105.  
  106. `local'
  107.      Libraries local to your site.
  108.  
  109. `maint'
  110.      Maintenance aids for the Emacs development group.
  111.  
  112. `mail'
  113.      Modes for electronic-mail handling.
  114.  
  115. `news'
  116.      Support for netnews reading and posting.
  117.  
  118. `non-text'
  119.      Support for editing files that are not ordinary text.
  120.  
  121. `processes'
  122.      Process, subshell, compilation, and job control support.
  123.  
  124. `terminals'
  125.      Support for terminal types.
  126.  
  127. `tex'
  128.      Support for the TeX formatter.
  129.  
  130. `tools'
  131.      Programming tools.
  132.  
  133. `unix'
  134.      Front-ends/assistants for, or emulators of, Unix features.
  135.  
  136. `vms'
  137.      Support code for VMS.
  138.  
  139. `wp'
  140.      Word processing.
  141.  
  142. 
  143. File: emacs,  Node: Misc Help,  Prev: Library Keywords,  Up: Help
  144.  
  145. Other Help Commands
  146. ===================
  147.  
  148.    `C-h i' (`info') runs the Info program, which is used for browsing
  149. through structured documentation files.  The entire Emacs manual is
  150. available within Info.  Eventually all the documentation of the GNU
  151. system will be available.  Type `h' after entering Info to run a
  152. tutorial on using Info.
  153.  
  154.    There are two special help commands for accessing Emacs documentation
  155. through Info.  `C-h C-f FUNCTION RET' enters Info and goes straight to
  156. the documentation of the Emacs function FUNCTION.  `C-h C-k KEY' enters
  157. Info and goes straight to the documentation of the key KEY.  These two
  158. keys run the commands `Info-goto-emacs-command-node' and
  159. `Info-goto-emacs-key-command-node'.
  160.  
  161.    If something surprising happens, and you are not sure what commands
  162. you typed, use `C-h l' (`view-lossage').  `C-h l' prints the last 100
  163. command characters you typed in.  If you see commands that you don't
  164. know, you can use `C-h c' to find out what they do.
  165.  
  166.    Emacs has numerous major modes, each of which redefines a few keys
  167. and makes a few other changes in how editing works.  `C-h m'
  168. (`describe-mode') prints documentation on the current major mode, which
  169. normally describes all the commands that are changed in this mode.
  170.  
  171.    `C-h b' (`describe-bindings') and `C-h s' (`describe-syntax')
  172. present other information about the current Emacs mode.  `C-h b'
  173. displays a list of all the key bindings now in effect; the local
  174. bindings defined by the current minor modes first, then the local
  175. bindings defined by the current major mode, and finally the global
  176. bindings (*note Key Bindings::.).  `C-h s' displays the contents of the
  177. syntax table, with explanations of each character's syntax (*note
  178. Syntax::.).
  179.  
  180.    You can get a similar list for a particular prefix key by typing
  181. `C-h' after the prefix key.  (There are a few prefix keys for which
  182. this does not work--those that provide their own bindings for `C-h'.
  183. One of these is ESC, because `ESC C-h' is actually `C-M-h', which marks
  184. a defun.)
  185.  
  186.    The other `C-h' options display various files of useful information.
  187. `C-h C-w' displays the full details on the complete absence of warranty
  188. for GNU Emacs.  `C-h n' (`view-emacs-news') displays the file
  189. `emacs/etc/NEWS', which contains documentation on Emacs changes
  190. arranged chronologically.  `C-h t' (`help-with-tutorial') displays the
  191. learn-by-doing Emacs tutorial.  `C-h C-c' (`describe-copying') displays
  192. the file `emacs/etc/COPYING', which tells you the conditions you must
  193. obey in distributing copies of Emacs.  `C-h C-d'
  194. (`describe-distribution') displays the file `emacs/etc/DISTRIB', which
  195. tells you how you can order a copy of the latest version of Emacs.
  196.  
  197. 
  198. File: emacs,  Node: Mark,  Next: Killing,  Prev: Help,  Up: Top
  199.  
  200. The Mark and the Region
  201. ***********************
  202.  
  203.    There are many Emacs commands which operate on an arbitrary
  204. contiguous part of the current buffer.  To specify the text for such a
  205. command to operate on, you set "the mark" at one end of it, and move
  206. point to the other end.  The text between point and the mark is called
  207. "the region".  You can move point or the mark to adjust the boundaries
  208. of the region.  It doesn't matter which one is set first
  209. chronologically, or which one comes earlier in the text.
  210.  
  211.    Once the mark has been set, it remains where you put it until it is
  212. set again at another place.  The mark remains fixed with respect to the
  213. preceding character if text is inserted or deleted in the buffer.  Each
  214. Emacs buffer has its own mark, so that when you return to a buffer that
  215. had been selected previously, it has the same mark it had before.
  216.  
  217.    Many commands that insert text, such as `C-y' (`yank') and `M-x
  218. insert-buffer', position point and the mark at opposite ends of the
  219. inserted text, so that the region contains the text just inserted.
  220.  
  221.    Aside from delimiting the region, the mark is also useful for
  222. remembering a spot that you may want to go back to.  To make this
  223. feature more useful, each buffer remembers 16 previous locations of the
  224. mark in the "mark ring".
  225.  
  226. * Menu:
  227.  
  228. * Setting Mark::    Commands to set the mark.
  229. * Transient Mark::    How to make Emacs highlight the region-
  230.               when there is one.
  231. * Using Region::    Summary of ways to operate on contents of the region.
  232. * Marking Objects::    Commands to put region around textual units.
  233. * Mark Ring::   Previous mark positions saved so you can go back there.
  234.  
  235. 
  236. File: emacs,  Node: Setting Mark,  Next: Transient Mark,  Up: Mark
  237.  
  238. Setting the Mark
  239. ================
  240.  
  241.    Here are some commands for setting the mark:
  242.  
  243. `C-SPC'
  244.      Set the mark where point is (`set-mark-command').
  245.  
  246. `C-@'
  247.      The same.
  248.  
  249. `C-x C-x'
  250.      Interchange mark and point (`exchange-point-and-mark').
  251.  
  252.    For example, suppose you wish to convert part of the buffer to all
  253. upper-case, using the `C-x C-u' (`upcase-region') command which
  254. operates on the text in the region.  You can first go to the beginning
  255. of the text to be capitalized, type `C-SPC' to put the mark there, move
  256. to the end, and then type `C-x C-u'.  Or, you can set the mark at the
  257. end of the text, move to the beginning, and then type `C-x C-u'.
  258.  
  259.    The most common way to set the mark is with the `C-SPC' command
  260. (`set-mark-command').  This sets the mark where point is.  Then you can
  261. move point away, leaving the mark behind.
  262.  
  263.    Ordinary terminals have only one cursor, so there is no way for Emacs
  264. to show you where the mark is located.  You have to remember.  The usual
  265. solution to this problem is to set the mark and then use it soon, before
  266. you forget where it is.  Alternatively, you can see where the mark is
  267. with the command `C-x C-x' (`exchange-point-and-mark') which puts the
  268. mark where point was and point where the mark was.  The extent of the
  269. region is unchanged, but the cursor and point are now at the previous
  270. position of the mark.
  271.  
  272.    `C-x C-x' is also useful when you are satisfied with the position of
  273. point but want to move the mark; do `C-x C-x' to put point at that end
  274. of the region, and then move it.  A second use of `C-x C-x', if
  275. necessary, puts the mark at the new position with point back at its
  276. original position.
  277.  
  278.    There is no such character as `C-SPC' in ASCII; when you type SPC
  279. while holding down CTRL, what you get on most ordinary terminals is the
  280. character `C-@'.  This key is actually bound to `set-mark-command'.
  281. But unless you are unlucky enough to have a terminal where typing
  282. `C-SPC' does not produce `C-@', you might as well think of this
  283. character as `C-SPC'.  Under X, `C-SPC' is actually a distinct
  284. character, but its binding is still `set-mark-command'.
  285.  
  286. 
  287. File: emacs,  Node: Transient Mark,  Next: Using Region,  Prev: Setting Mark,  Up: Mark
  288.  
  289. Transient Mark Mode
  290. ===================
  291.  
  292.    Many Emacs commands move the mark and invisibly set new regions.
  293. This means that there is almost always some region that you can act on.
  294. This is convenient, provided you get used to keeping track of the
  295. mark's position.
  296.  
  297.    Some people prefer a more rigid mode of operation in which you must
  298. set up a region for each command that uses one--in which the region
  299. "lasts" only temporarily.  This is called Transient Mark mode.  It is
  300. particularly well-suited to window systems such as X, since Emacs can
  301. highlight the region when it is active.
  302.  
  303.    To enable Transient Mark mode, type `M-x transient-mark-mode'.  This
  304. command toggles the mode, so you can issue it again to return to the
  305. normal Emacs way of handling the mark and the region.
  306.  
  307.    Here are the details of Transient Mark mode:
  308.  
  309.    * To set the mark, type `C-SPC' (`set-mark-command').  This makes
  310.      the mark active; as you move point, you will see the region
  311.      highlighting change in extent.
  312.  
  313.    * On a window system, an easy way to select a region is to press the
  314.      button Mouse-1 (normally the left button) at one end of it, drag
  315.      the mouse to the other end, and then release the button.
  316.  
  317.    * When the mark is active, you can execute any commands you want on
  318.      the region, such as killing, indentation, or writing to a file.
  319.  
  320.    * Any change to the buffer, such as inserting or deleting a
  321.      character, deactivates the mark.  This means any subsequent
  322.      command that operates on a region will get an error and refuse to
  323.      operate.  You can make the region active again by typing `C-x C-x'.
  324.  
  325.    * Commands like `M->' that "leave the mark behind" do not activate
  326.      the new mark.  it.  You can activate the new region by executing
  327.      `C-x C-x' (`exchange-point-and-mark').
  328.  
  329.    * Quitting with `C-g' deactivates the mark.
  330.  
  331.    Transient Mark mode is also sometimes known as "Zmacs mode" because
  332. the Zmacs editor on the MIT Lisp Machine handled the mark in a similar
  333. way.
  334.  
  335.    When multiple windows show the same buffer, they can have different
  336. regions, because they can have different values of point.  In Transient
  337. Mark mode, each window highlights its own region.  The part that is
  338. highlighted in the selected window is the region that editing commands
  339. use.  *Note Windows::.
  340.  
  341. 
  342. File: emacs,  Node: Using Region,  Next: Marking Objects,  Prev: Transient Mark,  Up: Mark
  343.  
  344. Operating on the Region
  345. =======================
  346.  
  347.    Once you have set up a region and the mark is active, you can do many
  348. things to the text in it:
  349.  
  350.    * Kill it with `C-w' (*note Killing::.).
  351.  
  352.    * Save it in a register with `C-x r s' (*note Registers::.).
  353.  
  354.    * Save it in a buffer or a file (*note Accumulating Text::.).
  355.  
  356.    * Convert case with `C-x C-l' or `C-x C-u' (*note Case::.).
  357.  
  358.    * Indent it with `C-x TAB' or `C-M-\' (*note Indentation::.).
  359.  
  360.    * Fill it as text with `M-x fill-region' (*note Filling::.).
  361.  
  362.    * Print hardcopy with `M-x print-region' (*note Hardcopy::.).
  363.  
  364.    * Evaluate it as Lisp code with `M-x eval-region' (*note Lisp
  365.      Eval::.).
  366.  
  367.    Most commands that operate on the text in the region have the word
  368. `region' in their names.
  369.  
  370. 
  371. File: emacs,  Node: Marking Objects,  Next: Mark Ring,  Prev: Using Region,  Up: Mark
  372.  
  373. Commands to Mark Textual Objects
  374. ================================
  375.  
  376.    Here are the commands for placing point and the mark around a textual
  377. object such as a word, list, paragraph or page.
  378.  
  379. `M-@'
  380.      Set mark after end of next word (`mark-word').  This command and
  381.      the following one do not move point.
  382.  
  383. `C-M-@'
  384.      Set mark after end of next Lisp expression (`mark-sexp').
  385.  
  386. `M-h'
  387.      Put region around current paragraph (`mark-paragraph').
  388.  
  389. `C-M-h'
  390.      Put region around current Lisp defun (`mark-defun').
  391.  
  392. `C-x h'
  393.      Put region around entire buffer (`mark-whole-buffer').
  394.  
  395. `C-x C-p'
  396.      Put region around current page (`mark-page').
  397.  
  398.    `M-@' (`mark-word') puts the mark at the end of the next word, while
  399. `C-M-@' (`mark-sexp') puts it at the end of the next Lisp expression.
  400. These commands handle arguments just like `M-f' and `C-M-f'.
  401.  
  402.    Other commands set both point and mark, to delimit an object in the
  403. buffer.  For example, `M-h' (`mark-paragraph') moves point to the
  404. beginning of the paragraph that surrounds or follows point, and puts
  405. the mark at the end of that paragraph (*note Paragraphs::.).  It
  406. prepares the region so you can indent, case-convert, or kill a whole
  407. paragraph.
  408.  
  409.    `C-M-h' (`mark-defun') similarly puts point before and the mark
  410. after the current or following defun (*note Defuns::.).  `C-x C-p'
  411. (`mark-page') puts point before the current page, and mark at the end
  412. (*note Pages::.).  The mark goes after the terminating page delimiter
  413. (to include it), while point goes after the preceding page delimiter
  414. (to exclude it).  A numeric argument specifies a later page (if
  415. positive) or an earlier page (if negative) instead of the current page.
  416.  
  417.    Finally, `C-x h' (`mark-whole-buffer') sets up the entire buffer as
  418. the region, by putting point at the beginning and the mark at the end.
  419.  
  420. 
  421. File: emacs,  Node: Mark Ring,  Prev: Marking Objects,  Up: Mark
  422.  
  423. The Mark Ring
  424. =============
  425.  
  426.    Aside from delimiting the region, the mark is also useful for
  427. remembering a spot that you may want to go back to.  To make this
  428. feature more useful, each buffer remembers 16 previous locations of the
  429. mark, in the "mark ring".  Commands that set the mark also push the old
  430. mark onto this ring.  To return to a marked location, use `C-u C-SPC'
  431. (or `C-u C-@'); this is the command `set-mark-command' given a numeric
  432. argument.  It moves point to where the mark was, and restores the mark
  433. from the ring of former marks.  Thus, repeated use of this command
  434. moves point to all of the old marks on the ring, one by one.  The mark
  435. positions you move through in this way are not lost; they go to the end
  436. of the ring.
  437.  
  438.    Each buffer has its own mark ring.  All editing commands use the
  439. current buffer's mark ring.  In particular, `C-u C-SPC' always stays in
  440. the same buffer.
  441.  
  442.    Many commands that can move long distances, such as `M-<'
  443. (`beginning-of-buffer'), start by setting the mark and saving the old
  444. mark on the mark ring.  This is to make it easier for you to move back
  445. later.  Searches set the mark if they move point.  You can tell when a
  446. command sets the mark because it displays `Mark Set' in the echo area.
  447.  
  448.    If you want to move back to the same place over and over, the mark
  449. ring may not be convenient enough.  If so, you can record the position
  450. in a register for later retrieval (*note RegPos::.).
  451.  
  452.    The variable `mark-ring-max' specifies the maximum number of entries
  453. to keep in the mark ring.  If that many entries exist and another one
  454. is pushed, the last one in the list is discarded.  Repeating `C-u
  455. C-SPC' circulates through the positions currently in the ring.
  456.  
  457.    The variable `mark-ring' holds the mark ring itself, as a list of
  458. marker objects in the order most recent first.  This variable is local
  459. in every buffer.
  460.  
  461. 
  462. File: emacs,  Node: Killing,  Next: Yanking,  Prev: Mark,  Up: Top
  463.  
  464. Deletion and Killing
  465. ====================
  466.  
  467.    Most commands which erase text from the buffer save it in the kill
  468. ring so that you can move or copy it to other parts of the buffer.
  469. These commands are known as "kill" commands.  The rest of the commands
  470. that erase text do not save it in the kill ring; they are known as
  471. "delete" commands.  (This distinction is made only for erasure of text
  472. in the buffer.)  If you do a kill or delete command by mistake, you can
  473. use the `C-x u' (`undo') command to undo it (*note Undo::.).
  474.  
  475.    The delete commands include `C-d' (`delete-char') and DEL
  476. (`delete-backward-char'), which delete only one character at a time,
  477. and those commands that delete only spaces or newlines.  Commands that
  478. can destroy significant amounts of nontrivial data generally kill.  The
  479. commands' names and individual descriptions use the words `kill' and
  480. `delete' to say which they do.
  481.  
  482.    You can use kill commands in read-only buffers.  They don't actually
  483. change the buffer, and they beep to warn you of that, but they do copy
  484. the text you tried to kill into the kill ring, so you can yank it into
  485. other buffers.
  486.  
  487. * Menu:
  488.  
  489. * Deletion::            Commands for deleting small amounts of text and
  490.                           blank areas.
  491. * Killing by Lines::    How to kill entire lines of text at one time.
  492. * Other Kill Commands:: Commands to kill large regions of text and
  493.                           syntactic units such as words and sentences.
  494.  
  495. 
  496. File: emacs,  Node: Deletion,  Next: Killing by Lines,  Up: Killing
  497.  
  498. Deletion
  499. --------
  500.  
  501. `C-d'
  502.      Delete next character (`delete-char').
  503.  
  504. `DEL'
  505.      Delete previous character (`delete-backward-char').
  506.  
  507. `M-\'
  508.      Delete spaces and tabs around point (`delete-horizontal-space').
  509.  
  510. `M-SPC'
  511.      Delete spaces and tabs around point, leaving one space
  512.      (`just-one-space').
  513.  
  514. `C-x C-o'
  515.      Delete blank lines around the current line (`delete-blank-lines').
  516.  
  517. `M-^'
  518.      Join two lines by deleting the intervening newline, along with any
  519.      indentation following it (`delete-indentation').
  520.  
  521.    The most basic delete commands are `C-d' (`delete-char') and DEL
  522. (`delete-backward-char').  `C-d' deletes the character after point, the
  523. one the cursor is "on top of".  This doesn't move point.  DEL deletes
  524. the character before the cursor, and moves point back.  You can delete
  525. newlines like any other characters in the buffer; deleting a newline
  526. joins two lines.  Actually, `C-d' and DEL aren't always delete
  527. commands; when given arguments, they kill instead, since they can erase
  528. more than one character this way.
  529.  
  530.    The other delete commands are those which delete only whitespace
  531. characters: spaces, tabs and newlines.  `M-\'
  532. (`delete-horizontal-space') deletes all the spaces and tab characters
  533. before and after point.  `M-SPC' (`just-one-space') does likewise but
  534. leaves a single space after point, regardless of the number of spaces
  535. that existed previously (even zero).
  536.  
  537.    `C-x C-o' (`delete-blank-lines') deletes all blank lines after the
  538. current line.  If the current line is blank, it deletes all blank lines
  539. preceding the current line as well (leaving one blank line, the current
  540. line).
  541.  
  542.    `M-^' (`delete-indentation') joins the current line and the previous
  543. line, by deleting a newline and all surrounding spaces, usually leaving
  544. a single space.  *Note M-^: Indentation.
  545.  
  546. 
  547. File: emacs,  Node: Killing by Lines,  Next: Other Kill Commands,  Prev: Deletion,  Up: Killing
  548.  
  549. Killing by Lines
  550. ----------------
  551.  
  552. `C-k'
  553.      Kill rest of line or one or more lines (`kill-line').
  554.  
  555.    The simplest kill command is `C-k'.  If given at the beginning of a
  556. line, it kills all the text on the line, leaving it blank.  When used
  557. on a blank line, it kills the whole line including its newline.  To kill
  558. an entire non-blank line, go to the beginning and type `C-k' twice.
  559.  
  560.    More generally, `C-k' kills from point up to the end of the line,
  561. unless it is at the end of a line.  In that case it kills the newline
  562. following point, thus merging the next line into the current one.
  563. Spaces and tabs that you can't see at the end of the line are ignored
  564. when deciding which case applies, so if point appears to be at the end
  565. of the line, you can be sure `C-k' will kill the newline.
  566.  
  567.    When `C-k' is given a positive argument, it kills that many lines
  568. and the newlines that follow them (however, text on the current line
  569. before point is spared).  With a negative argument -N, it kills N lines
  570. preceding the current line (together with the text on the current line
  571. before point).  Thus, `C-u - 2 C-k' at the front of a line kills the
  572. two previous lines.
  573.  
  574.    `C-k' with an argument of zero kills the text before point on the
  575. current line.
  576.  
  577.    If the variable `kill-whole-line' is non-`nil', `C-k' at the very
  578. beginning of a line kills the entire line including the following
  579. newline.  This variable is normally `nil'.
  580.  
  581. 
  582. File: emacs,  Node: Other Kill Commands,  Prev: Killing by Lines,  Up: Killing
  583.  
  584. Other Kill Commands
  585. -------------------
  586.  
  587. `C-w'
  588.      Kill region (from point to the mark) (`kill-region').
  589.  
  590. `M-d'
  591.      Kill word (`kill-word').  *Note Words::.
  592.  
  593. `M-DEL'
  594.      Kill word backwards (`backward-kill-word').
  595.  
  596. `C-x DEL'
  597.      Kill back to beginning of sentence (`backward-kill-sentence').
  598.      *Note Sentences::.
  599.  
  600. `M-k'
  601.      Kill to end of sentence (`kill-sentence').
  602.  
  603. `C-M-k'
  604.      Kill sexp (`kill-sexp').  *Note Lists::.
  605.  
  606. `M-z CHAR'
  607.      Kill through the next occurrence of CHAR (`zap-to-char').
  608.  
  609.    A kill command which is very general is `C-w' (`kill-region'), which
  610. kills everything between point and the mark.  With this command, you
  611. can kill any contiguous sequence of characters, if you first set the
  612. region around them.
  613.  
  614.    A convenient way of killing is combined with searching: `M-z'
  615. (`zap-to-char') reads a character and kills from point up to (and
  616. including) the next occurrence of that character in the buffer.  A
  617. numeric argument acts as a repeat count.  A negative argument means to
  618. search backward and kill text before point.
  619.  
  620.    Other syntactic units can be killed: words, with `M-DEL' and `M-d'
  621. (*note Words::.); sexps, with `C-M-k' (*note Lists::.); and sentences,
  622. with `C-x DEL' and `M-k' (*note Sentences::.).
  623.  
  624. 
  625. File: emacs,  Node: Yanking,  Next: Accumulating Text,  Prev: Killing,  Up: Top
  626.  
  627. Yanking
  628. =======
  629.  
  630.    "Yanking" means reinserting text previously killed.  This is what
  631. some systems call "pasting".  The usual way to move or copy text is to
  632. kill it and then yank it elsewhere one or more times.
  633.  
  634. `C-y'
  635.      Yank last killed text (`yank').
  636.  
  637. `M-y'
  638.      Replace text just yanked with an earlier batch of killed text
  639.      (`yank-pop').
  640.  
  641. `M-w'
  642.      Save region as last killed text without actually killing it
  643.      (`kill-ring-save').
  644.  
  645. `C-M-w'
  646.      Append next kill to last batch of killed text (`append-next-kill').
  647.  
  648. * Menu:
  649.  
  650. * Kill Ring::       Where killed text is stored.  Basic yanking.
  651. * Appending Kills:: Several kills in a row all yank together.
  652. * Earlier Kills::   Yanking something killed some time ago.
  653.  
  654. 
  655. File: emacs,  Node: Kill Ring,  Next: Appending Kills,  Up: Yanking
  656.  
  657. The Kill Ring
  658. -------------
  659.  
  660.    All killed text is recorded in the "kill ring", a list of blocks of
  661. text that have been killed.  There is only one kill ring, used in all
  662. buffers, so you can kill text in one buffer and yank it in another
  663. buffer.  This is the usual way to move text from one file to another.
  664. (*Note Accumulating Text::, for some other ways.)
  665.  
  666.    The command `C-y' (`yank') reinserts the text of the most recent
  667. kill.  It leaves the cursor at the end of the text.  It sets the mark at
  668. the beginning of the text.  *Note Mark::.
  669.  
  670.    `C-u C-y' leaves the cursor in front of the text, and sets the mark
  671. after it.  This is only if the argument is specified with just a `C-u',
  672. precisely.  Any other sort of argument, including `C-u' and digits,
  673. specifies an earlier kill to yank (*note Earlier Kills::.).
  674.  
  675.    If you wish to copy a block of text, you might want to use `M-w'
  676. (`kill-ring-save'), which copies the region into the kill ring without
  677. removing it from the buffer.  This is approximately equivalent to `C-w'
  678. followed by `C-x u', except that `M-w' does not alter the undo history
  679. and does not temporarily change the screen.
  680.  
  681. 
  682. File: emacs,  Node: Appending Kills,  Next: Earlier Kills,  Prev: Kill Ring,  Up: Yanking
  683.  
  684. Appending Kills
  685. ---------------
  686.  
  687.    Normally, each kill command pushes a new entry onto the kill ring.
  688. However, two or more kill commands in a row combine their text into a
  689. single entry, so that a single `C-y' gets it all back as it was before
  690. it was killed.
  691.  
  692.    Thus, if you want to yank text as a unit, you need not kill all of it
  693. with one command; you can keep killing line after line, or word after
  694. word, until you have killed it all, and you can still get it all back at
  695. once.
  696.  
  697.    Commands that kill forward from point add onto the end of the
  698. previous killed text.  Commands that kill backward from point add text
  699. onto the beginning.  This way, any sequence of mixed forward and
  700. backward kill commands puts all the killed text into one entry without
  701. rearrangement.  Numeric arguments do not break the sequence of
  702. appending kills.  For example, suppose the buffer contains
  703.  
  704.      This is a line -!-of sample text.
  705.  
  706. with point as shown.  If you type `M-d M-DEL M-d M-DEL', killing
  707. alternately forward and backward, you end up with `a line of sample' as
  708. one entry in the kill ring, and `This is text.' in the buffer.  (Note
  709. the double space, which you can clean up with `M-SPC' or `M-q'.)
  710.  
  711.    Another way to kill the same text is to move back two words with
  712. `M-b M-b', then kill all four words forward with `C-u M-d'.  This
  713. produces exactly the same results in the buffer and in the kill ring.
  714. `M-f M-f C-u M-DEL' kills the same text, all going backward; once
  715. again, the result is the same.  The text in the kill ring entry always
  716. has the same order that it had in the buffer before you killed it.
  717.  
  718.    If a kill command is separated from the last kill command by other
  719. commands (not just numeric arguments), it starts a new entry on the kill
  720. ring.  But you can force it to append by first typing the command
  721. `C-M-w' (`append-next-kill') right before it.  The `C-M-w' tells the
  722. following command, if it is a kill command, to append the text it kills
  723. to the last killed text, instead of starting a new entry.  With
  724. `C-M-w', you can kill several separated pieces of text and accumulate
  725. them to be yanked back in one place.
  726.  
  727. 
  728. File: emacs,  Node: Earlier Kills,  Prev: Appending Kills,  Up: Yanking
  729.  
  730. Yanking Earlier Kills
  731. ---------------------
  732.  
  733.    To recover killed text that is no longer the most recent kill, use
  734. the `M-y' command (`yank-pop').  It takes the text previously yanked
  735. and replaces it with the text from an earlier kill.  So, to recover the
  736. text of the next-to-the-last kill, first use `C-y' to yank the last
  737. kill, and then use `M-y' to replace it with the previous kill.  `M-y'
  738. is allowed only after a `C-y' or another `M-y'.
  739.  
  740.    You can understand `M-y' in terms of a "last yank" pointer which
  741. points at an entry in the kill ring.  Each time you kill, the "last
  742. yank" pointer moves to the newly made entry at the front of the ring.
  743. `C-y' yanks the entry which the "last yank" pointer points to.  `M-y'
  744. moves the "last yank" pointer to a different entry, and the text in the
  745. buffer changes to match.  Enough `M-y' commands can move the pointer to
  746. any entry in the ring, so you can get any entry into the buffer.
  747. Eventually the pointer reaches the end of the ring; the next `M-y'
  748. moves it to the first entry again.
  749.  
  750.    `M-y' moves the "last yank" pointer around the ring, but it does not
  751. change the order of the entries in the ring, which always runs from the
  752. most recent kill at the front to the oldest one still remembered.
  753.  
  754.    `M-y' can take a numeric argument, which tells it how many entries
  755. to advance the "last yank" pointer by.  A negative argument moves the
  756. pointer toward the front of the ring; from the front of the ring, it
  757. moves "around" to the last entry and continues forward from there.
  758.  
  759.    Once the text you are looking for is brought into the buffer, you can
  760. stop doing `M-y' commands and it will stay there.  It's just a copy of
  761. the kill ring entry, so editing it in the buffer does not change what's
  762. in the ring.  As long as no new killing is done, the "last yank"
  763. pointer remains at the same place in the kill ring, so repeating `C-y'
  764. will yank another copy of the same previous kill.
  765.  
  766.    If you know how many `M-y' commands it would take to find the text
  767. you want, you can yank that text in one step using `C-y' with a numeric
  768. argument.  `C-y' with an argument restores the text the specified
  769. number of entries back in the kill ring.  Thus, `C-u 2 C-y' gets the
  770. next to the last block of killed text.  It is equivalent to `C-y M-y'.
  771. `C-y' with a numeric argument starts counting from the "last yank"
  772. pointer, and sets the "last yank" pointer to the entry that it yanks.
  773.  
  774.    The length of the kill ring is controlled by the variable
  775. `kill-ring-max'; no more than that many blocks of killed text are saved.
  776.  
  777.    The actual contents of the kill ring are stored in a variable named
  778. `kill-ring'; you can view the entire contents of the kill ring with the
  779. command `C-h v kill-ring'.
  780.  
  781. 
  782. File: emacs,  Node: Accumulating Text,  Next: Rectangles,  Prev: Yanking,  Up: Top
  783.  
  784. Accumulating Text
  785. =================
  786.  
  787.    Usually we copy or move text by killing it and yanking it, but there
  788. are other methods convenient for copying one block of text in many
  789. places, or for copying many scattered blocks of text into one place.  To
  790. copy one block to many places, store it in a register (*note
  791. Registers::.).  Here we describe the commands to accumulate scattered
  792. pieces of text into a buffer or into a file.
  793.  
  794. `M-x append-to-buffer'
  795.      Append region to contents of specified buffer.
  796.  
  797. `M-x prepend-to-buffer'
  798.      Prepend region to contents of specified buffer.
  799.  
  800. `M-x copy-to-buffer'
  801.      Copy region into specified buffer, deleting that buffer's old
  802.      contents.
  803.  
  804. `M-x insert-buffer'
  805.      Insert contents of specified buffer into current buffer at point.
  806.  
  807. `M-x append-to-file'
  808.      Append region to contents of specified file, at the end.
  809.  
  810.    To accumulate text into a buffer, use `M-x append-to-buffer'.  This
  811. reads a buffer name, them inserts a copy of the region into the buffer
  812. specified.  If you specify a nonexistent buffer, `append-to-buffer'
  813. creates the buffer.  The text is inserted wherever point is in that
  814. buffer.  If you have been using the buffer for editing, the copied text
  815. goes into the middle of the text of the buffer, wherever point happens
  816. to be in it.
  817.  
  818.    Point in that buffer is left at the end of the copied text, so
  819. successive uses of `append-to-buffer' accumulate the text in the
  820. specified buffer in the same order as they were copied.  Strictly
  821. speaking, `append-to-buffer' does not always append to the text already
  822. in the buffer--only if point in that buffer is at the end.  However, if
  823. `append-to-buffer' is the only command you use to alter a buffer, then
  824. point is always at the end.
  825.  
  826.    `M-x prepend-to-buffer' is just like `append-to-buffer' except that
  827. point in the other buffer is left before the copied text, so successive
  828. prependings add text in reverse order.  `M-x copy-to-buffer' is similar
  829. except that any existing text in the other buffer is deleted, so the
  830. buffer is left containing just the text newly copied into it.
  831.  
  832.    To retrieve the accumulated text from another buffer, use `M-x
  833. insert-buffer'; this too takes BUFFERNAME as an argument.  It inserts a
  834. copy of the text in buffer BUFFERNAME into the selected buffer.  You
  835. can alternatively select the other buffer for editing, then optionally
  836. move text from it by killing.  *Note Buffers::, for background
  837. information on buffers.
  838.  
  839.    Instead of accumulating text within Emacs, in a buffer, you can
  840. append text directly into a file with `M-x append-to-file', which takes
  841. FILENAME as an argument.  It adds the text of the region to the end of
  842. the specified file.  The file is changed immediately on disk.
  843.  
  844.    You should use `append-to-file' only with files that are *not* being
  845. visited in Emacs.  Using it on a file that you are editing in Emacs
  846. would change the file behind Emacs's back, which can lead to losing
  847. some of your editing.
  848.  
  849. 
  850. File: emacs,  Node: Rectangles,  Next: Registers,  Prev: Accumulating Text,  Up: Top
  851.  
  852. Rectangles
  853. ==========
  854.  
  855.    The rectangle commands operate on rectangular areas of the text: all
  856. the characters between a certain pair of columns, in a certain range of
  857. lines. Commands are provided to kill rectangles, yank killed rectangles,
  858. clear them out, fill them with blanks or text, or delete them. Rectangle
  859. commands are useful with text in multicolumn formats, and for changing
  860. text into or out of such formats.
  861.  
  862.    When you must specify a rectangle for a command to work on, you do it
  863. by putting the mark at one corner and point at the opposite corner.  The
  864. rectangle thus specified is called the "region-rectangle" because you
  865. control it in about the same way the region is controlled.  But
  866. remember that a given combination of point and mark values can be
  867. interpreted either as a region or as a rectangle, depending on the
  868. command that uses them.
  869.  
  870.    If point and the mark are in the same column, the rectangle they
  871. delimit is empty.  If they are in the same line, the rectangle is one
  872. line high.  This asymmetry between lines and columns comes about
  873. because point (and likewise the mark) is between two columns, but within
  874. a line.
  875.  
  876. `C-x r k'
  877.      Kill the text of the region-rectangle, saving its contents as the
  878.      "last killed rectangle" (`kill-rectangle').
  879.  
  880. `C-x r y'
  881.      Yank the last killed rectangle with its upper left corner at point
  882.      (`yank-rectangle').
  883.  
  884. `C-x r o'
  885.      Insert blank space to fill the space of the region-rectangle
  886.      (`open-rectangle').  This pushes the previous contents of the
  887.      region-rectangle rightward.
  888.  
  889. `M-x delete-rectangle'
  890.      Delete the text of the region-rectangle without saving it in any
  891.      special way.
  892.  
  893. `M-x clear-rectangle'
  894.      Clear the region-rectangle by replacing its contents with spaces.
  895.  
  896. `M-x string-rectangle RET STRING RET'
  897.      Insert STRING on each line of the region-rectangle.
  898.  
  899.    The rectangle operations fall into two classes: commands deleting and
  900. inserting rectangles, and commands for blank rectangles.
  901.  
  902.    There are two ways to get rid of the text in a rectangle: you can
  903. discard the text (delete it) or save it as the "last killed" rectangle.
  904. The commands for these two ways are `M-x delete-rectangle' and `C-x r
  905. k' (`kill-rectangle').  In either case, the portion of each line that
  906. falls inside the rectangle's boundaries is deleted, causing following
  907. text (if any) on the line to move left into the gap.
  908.  
  909.    Note that "killing" a rectangle is not killing in the usual sense;
  910. the rectangle is not stored in the kill ring, but in a special place
  911. that can only record the most recent rectangle killed.  This is because
  912. yanking a rectangle is so different from yanking linear text that
  913. different yank commands have to be used and yank-popping is hard to
  914. make sense of.
  915.  
  916.    Yanking a rectangle is the opposite of killing one.  Point specifies
  917. where to put the rectangle's upper left corner.  The rectangle's first
  918. line is inserted there, the rectangle's second line is inserted at a
  919. point one line vertically down, and so on.  The number of lines affected
  920. is determined by the height of the saved rectangle.
  921.  
  922.    To yank the last killed rectangle, type `C-x r y'
  923. (`yank-rectangle').  This can be used to convert single-column lists
  924. into double-column lists; kill the second half of the list as a
  925. rectangle and then yank it beside the first line of the list.
  926.  
  927.    You can also copy rectangles into and out of registers with `C-x r r
  928. R' and `C-x r i R'.  *Note Rectangle Registers: RegRect.
  929.  
  930.    The command `M-x string-rectangle' is similar to `C-x r o', but it
  931. inserts a specified string instead of blanks.  You specify the string
  932. with the minibuffer.  Since the length of the string specifies how many
  933. columns to insert, the width of the region-rectangle does not matter
  934. for this command.  What does matter is the position of the left edge
  935. (which specifies the column position for the insertion in each line)
  936. and the range of lines that the rectangle occupies.  The previous
  937. contents of the text after the insertion column are pushed rightward.
  938.  
  939.    There are two commands for making with blank rectangles: `M-x
  940. clear-rectangle' to blank out existing text, and `C-x r o'
  941. (`open-rectangle') to insert a blank rectangle.  Clearing a rectangle
  942. is equivalent to deleting it and then inserting a blank rectangle of
  943. the same size.
  944.  
  945. 
  946. File: emacs,  Node: Registers,  Next: Display,  Prev: Rectangles,  Up: Top
  947.  
  948. Registers
  949. *********
  950.  
  951.    Emacs "registers" are places you can save text or positions for
  952. later use.  Text and rectangles saved in registers can be copied into
  953. the buffer once or many times; you can move point to a position saved in
  954. a register.
  955.  
  956.    Each register has a name which is a single character.  A register can
  957. store a piece of text, a rectangle, a position, a window configuration
  958. or a file name, but only one thing at any given time.  Whatever you
  959. store in a register remains there until you store something else in that
  960. register.  To see what a register R contains, use `M-x view-register'.
  961.  
  962. `M-x view-register RET R'
  963.      Display a description of what register R contains.
  964.  
  965. * Menu:
  966.  
  967. * Position: RegPos.           Saving positions in registers.
  968. * Text: RegText.              Saving text in registers.
  969. * Rectangle: RegRect.         Saving rectangles in registers.
  970. * Configurations: RegConfig.  Saving window configurations in registers.
  971. * Files: RegFiles.            File names in registers.
  972.  
  973. 
  974. File: emacs,  Node: RegPos,  Next: RegText,  Up: Registers
  975.  
  976. Saving Positions in Registers
  977. =============================
  978.  
  979.    Saving a position records a spot in a buffer so that you can move
  980. back there later.  Moving to a saved position reselects that buffer and
  981. moves point to that spot.
  982.  
  983. `C-x r SPC R'
  984.      Save position of point in register R (`point-to-register').
  985.  
  986. `C-x r j R'
  987.      Jump to the position saved in register R (`jump-to-register').
  988.  
  989.    To save the current position of point in a register, choose a name R
  990. and type `C-x r SPC R'.  The register R retains the position thus saved
  991. until you store something else in that register.
  992.  
  993.    The command `C-x r j R' moves point to the position recorded in
  994. register R.  The register is not affected; it continues to record the
  995. same position.  You can jump to the same position using the same
  996. register any number of times.
  997.  
  998. 
  999. File: emacs,  Node: RegText,  Next: RegRect,  Prev: RegPos,  Up: Registers
  1000.  
  1001. Saving Text in Registers
  1002. ========================
  1003.  
  1004.    When you want to insert a copy of the same piece of text several
  1005. times, it may be inconvenient to yank it from the kill ring, since each
  1006. subsequent kill moves that entry further down the ring.  An alternative
  1007. is to store the text in a register with `C-x r s' (`copy-to-register')
  1008. and then retrieve it with `C-x r i' (`insert-register').
  1009.  
  1010. `C-x r s R'
  1011.      Copy region into register R (`copy-to-register').
  1012.  
  1013. `C-x r i R'
  1014.      Insert text from register R (`insert-register').
  1015.  
  1016.    `C-x r s R' stores a copy of the text of the region into the
  1017. register named R.  Given a numeric argument, `C-x r s R' deletes the
  1018. text from the buffer as well.
  1019.  
  1020.    `C-x r i R' inserts in the buffer the text from register R.
  1021. Normally it leaves point before the text and places the mark after, but
  1022. with a numeric argument (`C-u') it puts point after the text and the
  1023. mark before.
  1024.  
  1025. 
  1026. File: emacs,  Node: RegRect,  Next: RegConfig,  Prev: RegText,  Up: Registers
  1027.  
  1028. Saving Rectangles in Registers
  1029. ==============================
  1030.  
  1031.    A register can contain a rectangle instead of linear text.  The
  1032. rectangle is represented as a list of strings.  *Note Rectangles::, for
  1033. basic information on how to specify a rectangle in the buffer.
  1034.  
  1035. `C-x r r R'
  1036.      Copy the region-rectangle into register R
  1037.      (`copy-region-to-rectangle').  With numeric argument, delete it as
  1038.      well.
  1039.  
  1040. `C-x r i R'
  1041.      Insert the rectangle stored in register R (if it contains a
  1042.      rectangle) (`insert-register').
  1043.  
  1044.    The `C-x r i R' command inserts a text string if the register
  1045. contains one, and inserts a rectangle if the register contains one.
  1046.  
  1047. 
  1048. File: emacs,  Node: RegConfig,  Next: RegFiles,  Prev: RegRect,  Up: Registers
  1049.  
  1050. Saving Window Configurations in Registers
  1051. =========================================
  1052.  
  1053.    You can save the window configuration of the selected frame in a
  1054. register, or even the configuration of all frames, and restore the
  1055. configuration later.
  1056.  
  1057. `C-x r w R'
  1058.      Save the state of the selected frame's windows in register R
  1059.      (`window-configuration-to-register').
  1060.  
  1061. `C-x r f R'
  1062.      Save the state of all windows in all frames in register R
  1063.      (`frame-configuration-to-register').
  1064.  
  1065.    Use `C-x r j R' to restore a window or frame configuration.  This is
  1066. the same command used to restore a cursor position.
  1067.  
  1068. 
  1069. File: emacs,  Node: RegFiles,  Prev: RegConfig,  Up: Registers
  1070.  
  1071. Keeping File Names in Registers
  1072. ===============================
  1073.  
  1074.    If you visit certain file names frequently, you can visit them more
  1075. conveniently if you put their names in registers.  Here's the Lisp code
  1076. used to put a file name in a register:
  1077.  
  1078.      (set-register ?R '(file . NAME))
  1079.  
  1080. For example,
  1081.  
  1082.      (set-register ?z '(file . "/gd/gnu/emacs/19.0/src/ChangeLog"))
  1083.  
  1084. puts the file name shown in register `z'.
  1085.  
  1086.    To visit the file whose name is in register R, type `C-x r j R'.
  1087. (This is the same command used to jump to a position or restore a frame
  1088. configuration.)
  1089.  
  1090. 
  1091. File: emacs,  Node: Display,  Next: Search,  Prev: Registers,  Up: Top
  1092.  
  1093. Controlling the Display
  1094. ***********************
  1095.  
  1096.    Since only part of a large buffer fits in the window, Emacs tries to
  1097. show the part that is likely to be interesting.  The display control
  1098. commands allow you to specify which part of the text you want to see.
  1099.  
  1100. `C-l'
  1101.      Clear screen and redisplay, scrolling the selected window to center
  1102.      point vertically within it (`recenter').
  1103.  
  1104. `C-v'
  1105.      Scroll forward (a windowful or a specified number of lines)
  1106.      (`scroll-up').
  1107.  
  1108. `NEXT'
  1109.      Likewise, scroll forward.
  1110.  
  1111. `M-v'
  1112.      Scroll backward (`scroll-down').
  1113.  
  1114. `PRIOR'
  1115.      Likewise, scroll backward.
  1116.  
  1117. `ARG C-l'
  1118.      Scroll so point is on line ARG (`recenter').
  1119.  
  1120. `C-x <'
  1121.      Scroll text in current window to the left (`scroll-left').
  1122.  
  1123. `C-x >'
  1124.      Scroll to the right (`scroll-right').
  1125.  
  1126. `C-x $'
  1127.      Make deeply indented lines invisible (`set-selective-display').
  1128.  
  1129.    The names of all scroll commands are based on the direction that the
  1130. text moves in the window.  Thus, the command to scrolling forward is
  1131. called `scroll-up', since the text moves up.
  1132.  
  1133. * Menu:
  1134.  
  1135. * Scrolling::               Moving text up and down in a window.
  1136. * Horizontal Scrolling::   Moving text left and right in a window.
  1137. * Selective Display::      Hiding lines with lots of indentation.
  1138. * Optional Display::       Optional display features.
  1139. * European Display::       Displaying (and inputting) European characters.
  1140. * Display Vars::           Information on variables for customizing display.
  1141.  
  1142. 
  1143. File: emacs,  Node: Scrolling,  Next: Horizontal Scrolling,  Up: Display
  1144.  
  1145. Scrolling
  1146. =========
  1147.  
  1148.    If a buffer contains text that is too large to fit entirely within a
  1149. window that is displaying the buffer, Emacs shows a contiguous portion
  1150. of the text.  The portion shown always contains point.
  1151.  
  1152.    "Scrolling" means moving text up or down in the window so that
  1153. different parts of the text are visible.  Scrolling forward means that
  1154. text moves up, and new text appears at the bottom.  Scrolling backward
  1155. moves text down and new text appears at the top.
  1156.  
  1157.    Scrolling happens automatically if you move point past the bottom or
  1158. top of the window.  You can also explicitly request scrolling with the
  1159. commands in this section.
  1160.  
  1161. `C-l'
  1162.      Clear screen and redisplay, scrolling the selected window to center
  1163.      point vertically within it (`recenter').
  1164.  
  1165. `C-v'
  1166.      Scroll forward (a windowful or a specified number of lines)
  1167.      (`scroll-up').
  1168.  
  1169. `NEXT'
  1170.      Likewise, scroll forward.
  1171.  
  1172. `M-v'
  1173.      Scroll backward (`scroll-down').
  1174.  
  1175. `PRIOR'
  1176.      Likewise, scroll backward.
  1177.  
  1178. `ARG C-l'
  1179.      Scroll so point is on line ARG (`recenter').
  1180.  
  1181. `C-M-l'
  1182.      Scroll heuristically to bring useful information onto the screen
  1183.      (`reposition-window').
  1184.  
  1185.    The most basic scrolling command is `C-l' (`recenter') with no
  1186. argument.  It clears the entire screen and redisplays all windows.  In
  1187. addition, it scrolls the selected window so that point is halfway down
  1188. from the top of the window.
  1189.  
  1190.    The scrolling commands `C-v' and `M-v' let you move all the text in
  1191. the window up or down a few lines.  `C-v' (`scroll-up') with an
  1192. argument shows you that many more lines at the bottom of the window,
  1193. moving the text and point up together as `C-l' might.  `C-v' with a
  1194. negative argument shows you more lines at the top of the window.  `M-v'
  1195. (`scroll-down') is like `C-v', but moves in the opposite direction.
  1196. The function keys NEXT and PRIOR are equivalent to `C-v' and `M-v'.
  1197.  
  1198.    To read the buffer a windowful at a time, use `C-v' with no argument.
  1199. It takes the last two lines at the bottom of the window and puts them at
  1200. the top, followed by nearly a whole windowful of lines not previously
  1201. visible.  If point was in the text scrolled off the top, it moves to the
  1202. new top of the window.  `M-v' with no argument moves backward with
  1203. overlap similarly.  The number of lines of overlap across a `C-v' or
  1204. `M-v' is controlled by the variable `next-screen-context-lines'; by
  1205. default, it is two.
  1206.  
  1207.    Another way to do scrolling is with `C-l' with a numeric argument.
  1208. `C-l' does not clear the screen when given an argument; it only scrolls
  1209. the selected window.  With a positive argument N, it repositions text
  1210. to put point N lines down from the top.  An argument of zero puts point
  1211. on the very top line.  Point does not move with respect to the text;
  1212. rather, the text and point move rigidly on the screen.  `C-l' with a
  1213. negative argument puts point that many lines from the bottom of the
  1214. window.  For example, `C-u - 1 C-l' puts point on the bottom line, and
  1215. `C-u - 5 C-l' puts it five lines from the bottom.  Just `C-u' as
  1216. argument, as in `C-u C-l', scrolls point to the center of the screen.
  1217.  
  1218.    The `C-M-l' command (`reposition-window') scrolls the current window
  1219. heuristically in a way designed to get useful information onto the
  1220. screen.  For example, in a Lisp file, this command tries to get the
  1221. entire current defun onto the screen if possible.
  1222.  
  1223.    Scrolling happens automatically if point has moved out of the visible
  1224. portion of the text when it is time to display.  Usually the scrolling
  1225. is done so as to put point vertically centered within the window.
  1226. However, if the variable `scroll-step' has a nonzero value, an attempt
  1227. is made to scroll the buffer by that many lines; if that is enough to
  1228. bring point back into visibility, that is what is done.
  1229.  
  1230.