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-5 (.txt) < prev    next >
GNU Info File  |  1996-09-28  |  46KB  |  779 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.54 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: Display Vars,  Prev: Optional Mode Line,  Up: Display
  4. Variables Controlling Display
  5. =============================
  6.    This section contains information for customization only.  Beginning
  7. users should skip it.
  8.    The variable `mode-line-inverse-video' controls whether the mode
  9. line is displayed in inverse video (assuming the terminal supports it);
  10. `nil' means don't do so.  *Note Mode Line::.  If you specify the
  11. foreground color for the `mode-line' face, and
  12. `mode-line-inverse-video' is non-`nil', then the default background
  13. color for that face is the usual foreground color.  *Note Faces::.
  14.    If the variable `inverse-video' is non-`nil', Emacs attempts to
  15. invert all the lines of the display from what they normally are.
  16.    If the variable `visible-bell' is non-`nil', Emacs attempts to make
  17. the whole screen blink when it would normally make an audible bell
  18. sound.  This variable has no effect if your terminal does not have a way
  19. to make the screen blink.
  20.    When you reenter Emacs after suspending, Emacs normally clears the
  21. screen and redraws the entire display.  On some terminals with more than
  22. one page of memory, it is possible to arrange the termcap entry so that
  23. the `ti' and `te' strings (output to the terminal when Emacs is entered
  24. and exited, respectively) switch between pages of memory so as to use
  25. one page for Emacs and another page for other output.  Then you might
  26. want to set the variable `no-redraw-on-reenter' non-`nil'; this tells
  27. Emacs to assume, when resumed, that the screen page it is using still
  28. contains what Emacs last wrote there.
  29.    The variable `echo-keystrokes' controls the echoing of
  30. multi-character keys; its value is the number of seconds of pause
  31. required to cause echoing to start, or zero meaning don't echo at all.
  32. *Note Echo Area::.
  33.    If the variable `ctl-arrow' is `nil', control characters in the
  34. buffer are displayed with octal escape sequences, all except newline
  35. and tab.  Altering the value of `ctl-arrow' makes it local to the
  36. current buffer; until that time, the default value is in effect.  The
  37. default is initially `t'.  *Note Display Tables: (elisp)Display Tables.
  38.    Normally, a tab character in the buffer is displayed as whitespace
  39. which extends to the next display tab stop position, and display tab
  40. stops come at intervals equal to eight spaces.  The number of spaces
  41. per tab is controlled by the variable `tab-width', which is made local
  42. by changing it, just like `ctl-arrow'.  Note that how the tab character
  43. in the buffer is displayed has nothing to do with the definition of TAB
  44. as a command.  The variable `tab-width' must have an integer value
  45. between 1 and 1000, inclusive.
  46.    If you set the variable `selective-display-ellipses' to `nil', the
  47. three dots do not appear at the end of a line that precedes invisible
  48. lines.  Then there is no visible indication of the invisible lines.
  49. This variable too becomes local automatically when set.
  50.    If the variable `truncate-lines' is non-`nil', then each line of
  51. text gets just one screen line for display; if the text line is too
  52. long, display shows only the part that fits.  If `truncate-lines' is
  53. `nil', then long text lines display as more than one screen line,
  54. enough to show the whole text of the line.  *Note Continuation Lines::.
  55. Altering the value of `truncate-lines' makes it local to the current
  56. buffer; until that time, the default value is in effect.  The default
  57. is initially `nil'.
  58.    If the variable `truncate-partial-width-windows' is non-`nil', it
  59. forces truncation rather than continuation in any window less than the
  60. full width of the screen or frame, regardless of the value of
  61. `truncate-lines'.  For information about side-by-side windows, see
  62. *Note Split Window::.  See also *Note Display: (elisp)Display.
  63.    The variable `baud-rate' holds the the output speed of the terminal,
  64. as far as Emacs knows.  Setting this variable does not change the speed
  65. of actual data transmission, but the value is used for calculations
  66. such as padding.  It also affects decisions about whether to scroll
  67. part of the screen or redraw it instead--even when using a window
  68. system.  (We designed it this way, despite the fact that a window
  69. system has no true "output speed", to give you a way to tune these
  70. decisions.)
  71. File: emacs,  Node: Search,  Next: Fixit,  Prev: Display,  Up: Top
  72. Searching and Replacement
  73. *************************
  74.    Like other editors, Emacs has commands for searching for occurrences
  75. of a string.  The principal search command is unusual in that it is
  76. "incremental"; it begins to search before you have finished typing the
  77. search string.  There are also nonincremental search commands more like
  78. those of other editors.
  79.    Besides the usual `replace-string' command that finds all
  80. occurrences of one string and replaces them with another, Emacs has a
  81. fancy replacement command called `query-replace' which asks
  82. interactively which occurrences to replace.
  83. * Menu:
  84. * Incremental Search::       Search happens as you type the string.
  85. * Nonincremental Search::  Specify entire string and then search.
  86. * Word Search::           Search for sequence of words.
  87. * Regexp Search::       Search for match for a regexp.
  88. * Regexps::           Syntax of regular expressions.
  89. * Search Case::           To ignore case while searching, or not.
  90. * Replace::           Search, and replace some or all matches.
  91. * Other Repeating Search:: Operating on all matches for some regexp.
  92. File: emacs,  Node: Incremental Search,  Next: Nonincremental Search,  Prev: Search,  Up: Search
  93. Incremental Search
  94. ==================
  95.    An incremental search begins searching as soon as you type the first
  96. character of the search string.  As you type in the search string, Emacs
  97. shows you where the string (as you have typed it so far) would be
  98. found.  When you have typed enough characters to identify the place you
  99. want, you can stop.  Depending on what you plan to do next, you may or
  100. may not need to terminate the search explicitly with RET.
  101. `C-s'
  102.      Incremental search forward (`isearch-forward').
  103. `C-r'
  104.      Incremental search backward (`isearch-backward').
  105.    `C-s' starts an incremental search.  `C-s' reads characters from the
  106. keyboard and positions the cursor at the first occurrence of the
  107. characters that you have typed.  If you type `C-s' and then `F', the
  108. cursor moves right after the first `F'.  Type an `O', and see the
  109. cursor move to after the first `FO'.  After another `O', the cursor is
  110. after the first `FOO' after the place where you started the search.
  111. Meanwhile, the search string `FOO' has been echoed in the echo area.
  112.    If you make a mistake in typing the search string, you can cancel
  113. characters with DEL.  Each DEL cancels the last character of search
  114. string.  This does not happen until Emacs is ready to read another
  115. input character; first it must either find, or fail to find, the
  116. character you want to erase.  If you do not want to wait for this to
  117. happen, use `C-g' as described below.
  118.    When you are satisfied with the place you have reached, you can type
  119. RET, which stops searching, leaving the cursor where the search brought
  120. it.  Also, any command not specially meaningful in searches stops the
  121. searching and is then executed.  Thus, typing `C-a' would exit the
  122. search and then move to the beginning of the line.  RET is necessary
  123. only if the next command you want to type is a printing character, DEL,
  124. RET, or another control character that is special within searches
  125. (`C-q', `C-w', `C-r', `C-s', `C-y', `M-y', `M-r', or `M-s').
  126.    Sometimes you search for `FOO' and find it, but not the one you
  127. expected to find.  There was a second `FOO' that you forgot about,
  128. before the one you were looking for.  In this event, type another `C-s'
  129. to move to the next occurrence of the search string.  This can be done
  130. any number of times.  If you overshoot, you can cancel some `C-s'
  131. characters with DEL.
  132.    After you exit a search, you can search for the same string again by
  133. typing just `C-s C-s': the first `C-s' is the key that invokes
  134. incremental search, and the second `C-s' means "search again".
  135.    To reuse earlier search strings, use the "search ring".  The
  136. commands `M-p' and `M-n' move through the ring to pick a search string
  137. to reuse.  These commands leave the selected search ring element in the
  138. minibuffer, where you can edit it.  Type `C-s' or `C-r' to terminate
  139. editing the string and search for it.
  140.    If your string is not found at all, the echo area says `Failing
  141. I-Search'.  The cursor is after the place where Emacs found as much of
  142. your string as it could.  Thus, if you search for `FOOT', and there is
  143. no `FOOT', you might see the cursor after the `FOO' in `FOOL'.  At this
  144. point there are several things you can do.  If your string was
  145. mistyped, you can rub some of it out and correct it.  If you like the
  146. place you have found, you can type RET or some other Emacs command to
  147. "accept what the search offered".  Or you can type `C-g', which removes
  148. from the search string the characters that could not be found (the `T'
  149. in `FOOT'), leaving those that were found (the `FOO' in `FOOT').  A
  150. second `C-g' at that point cancels the search entirely, returning point
  151. to where it was when the search started.
  152.    An upper-case letter in the search string makes the search
  153. case-sensitive.  If you delete the upper-case character from the search
  154. string, it ceases to have this effect.  *Note Search Case::.
  155.    If a search is failing and you ask to repeat it by typing another
  156. `C-s', it starts again from the beginning of the buffer.  Repeating a
  157. failing reverse search with `C-r' starts again from the end.  This is
  158. called "wrapping around".  `Wrapped' appears in the search prompt once
  159. this has happened.
  160.    The `C-g' "quit" character does special things during searches; just
  161. what it does depends on the status of the search.  If the search has
  162. found what you specified and is waiting for input, `C-g' cancels the
  163. entire search.  The cursor moves back to where you started the search.
  164. If `C-g' is typed when there are characters in the search string that
  165. have not been found--because Emacs is still searching for them, or
  166. because it has failed to find them--then the search string characters
  167. which have not been found are discarded from the search string.  With
  168. them gone, the search is now successful and waiting for more input, so
  169. a second `C-g' will cancel the entire search.
  170.    To search for a newline, type LFD (also known as `C-j').  To search
  171. for another control character such as control-S or carriage return, you
  172. must quote it by typing `C-q' first.  This function of `C-q' is
  173. analogous to its meaning as an Emacs command: it causes the following
  174. character to be treated the way a graphic character would normally be
  175. treated in the same context.  You can also specify a character by its
  176. octal code: enter `C-q' followed by three octal digits.
  177.    You can change to searching backwards with `C-r'.  If a search fails
  178. because the place you started was too late in the file, you should do
  179. this.  Repeated `C-r' keeps looking for more occurrences backwards.  A
  180. `C-s' starts going forwards again.  `C-r' in a search can be canceled
  181. with DEL.
  182.    If you know initially that you want to search backwards, you can use
  183. `C-r' instead of `C-s' to start the search, because `C-r' as a key runs
  184. a command (`isearch-backward') to search backward.
  185.    The characters `C-y' and `C-w' can be used in incremental search to
  186. grab text from the buffer into the search string.  This makes it
  187. convenient to search for another occurrence of text at point.  `C-w'
  188. copies the word after point as part of the search string, advancing
  189. point over that word.  Another `C-s' to repeat the search will then
  190. search for a string including that word.  `C-y' is similar to `C-w' but
  191. copies all the rest of the current line into the search string.  Both
  192. `C-y' and `C-w' convert the text they copy to lower case if the search
  193. is current not case-sensitive; this is so the search remains
  194. case-insensitive.
  195.    The character `M-y' copies text from the kill ring into the search
  196. string.  It uses the same text that `C-y' as a command would yank.
  197. *Note Yanking::.
  198.    To customize the special characters that incremental search
  199. understands, alter their bindings in the keymap `isearch-mode-map'.
  200. Slow Terminal Incremental Search
  201. --------------------------------
  202.    Incremental search on a slow terminal uses a modified style of
  203. display that is designed to take less time.  Instead of redisplaying
  204. the buffer at each place the search gets to, it creates a new
  205. single-line window and uses that to display the line that the search
  206. has found.  The single-line window comes into play as soon as point
  207. gets outside of the text that is already on the screen.
  208.    When you terminate the search, the single-line window is removed.
  209. Then Emacs redisplays the window in which the search was done, to show
  210. its new position of point.
  211.    The slow terminal style of display is used when the terminal baud
  212. rate is less than or equal to the value of the variable
  213. `search-slow-speed', initially 1200.
  214.    The number of lines to use in slow terminal search display is
  215. controlled by the variable `search-slow-window-lines'.  1 is its normal
  216. value.
  217. File: emacs,  Node: Nonincremental Search,  Next: Word Search,  Prev: Incremental Search,  Up: Search
  218. Nonincremental Search
  219. =====================
  220.    Emacs also has conventional nonincremental search commands, which
  221. require you to type the entire search string before searching begins.
  222. `C-s RET STRING RET'
  223.      Search for STRING.
  224. `C-r RET STRING RET'
  225.      Search backward for STRING.
  226.    To do a nonincremental search, first type `C-s RET'.  This enters
  227. the minibuffer to read the search string; terminate the string with
  228. RET, and then the search takes place.  If the string is not found, the
  229. search command gets an error.
  230.    The way `C-s RET' works is that the `C-s' invokes incremental
  231. search, which is specially programmed to invoke nonincremental search
  232. if the argument you give it is empty.  (Such an empty argument would
  233. otherwise be useless.)  `C-r RET' also works this way.
  234.    However, nonincremental searches performed using `C-s RET' do not
  235. call `search-forward' right away.  The first thing done is to see if
  236. the next character is `C-w', which requests a word search.  *Note Word
  237. Search::.
  238.    Forward and backward nonincremental searches are implemented by the
  239. commands `search-forward' and `search-backward'.  These commands may be
  240. bound to keys in the usual manner.  The feature that you can get to
  241. them via the incremental search commands exists for historical reasons,
  242. and to avoid the need to find suitable key sequences for them.
  243. File: emacs,  Node: Word Search,  Next: Regexp Search,  Prev: Nonincremental Search,  Up: Search
  244. Word Search
  245. ===========
  246.    Word search searches for a sequence of words without regard to how
  247. the words are separated.  More precisely, you type a string of many
  248. words, using single spaces to separate them, and the string can be
  249. found even if there are multiple spaces, newlines or other punctuation
  250. between the words.
  251.    Word search is useful for editing a printed document made with a text
  252. formatter.  If you edit while looking at the printed, formatted version,
  253. you can't tell where the line breaks are in the source file.  With word
  254. search, you can search without having to know them.
  255. `C-s RET C-w WORDS RET'
  256.      Search for WORDS, ignoring details of punctuation.
  257. `C-r RET C-w WORDS RET'
  258.      Search backward for WORDS, ignoring details of punctuation.
  259.    Word search is a special case of nonincremental search and is invoked
  260. with `C-s RET C-w'.  This is followed by the search string, which must
  261. always be terminated with RET.  Being nonincremental, this search does
  262. not start until the argument is terminated.  It works by constructing a
  263. regular expression and searching for that; see *Note Regexp Search::.
  264.    Use `C-r RET C-w' to do backward word search.
  265.    Forward and backward word searches are implemented by the commands
  266. `word-search-forward' and `word-search-backward'.  These commands may
  267. be bound to keys in the usual manner.  The feature that you can get to
  268. them via the incremental search commands exists for historical reasons,
  269. and to avoid the need to find suitable key sequences for them.
  270. File: emacs,  Node: Regexp Search,  Next: Regexps,  Prev: Word Search,  Up: Search
  271. Regular Expression Search
  272. =========================
  273.    A "regular expression" ("regexp", for short) is a pattern that
  274. denotes a class of alternative strings to match, possibly infinitely
  275. many.  In GNU Emacs, you can search for the next match for a regexp
  276. either incrementally or not.
  277.    Incremental search for a regexp is done by typing `C-M-s'
  278. (`isearch-forward-regexp').  This command reads a search string
  279. incrementally just like `C-s', but it treats the search string as a
  280. regexp rather than looking for an exact match against the text in the
  281. buffer.  Each time you add text to the search string, you make the
  282. regexp longer, and the new regexp is searched for.  To search backward
  283. in the buffer, use `C-M-r' (`isearch-backward-regexp').
  284.    All of the control characters that do special things within an
  285. ordinary incremental search have the same function in incremental regexp
  286. search.  Typing `C-s' or `C-r' immediately after starting the search
  287. retrieves the last incremental search regexp used; that is to say,
  288. incremental regexp and non-regexp searches have independent defaults.
  289. They also have separate search rings that you can access with `M-p' and
  290. `M-n'.
  291.    If you type SPC in incremental regexp search, it matches any
  292. sequence of whitespace characters, including newlines.  If you want to
  293. match just a space, type `C-q SPC'.
  294.    Note that adding characters to the regexp in an incremental regexp
  295. search can make the cursor move back and start again.  For example, if
  296. you have searched for `foo' and you add `\|bar', the cursor backs up in
  297. case the first `bar' precedes the first `foo'.
  298.    Nonincremental search for a regexp is done by the functions
  299. `re-search-forward' and `re-search-backward'.  You can invoke these
  300. with `M-x', or bind them to keys, or invoke them by way of incremental
  301. regexp search with `C-M-s RET' and `C-M-r RET'.
  302. File: emacs,  Node: Regexps,  Next: Search Case,  Prev: Regexp Search,  Up: Search
  303. Syntax of Regular Expressions
  304. =============================
  305.    Regular expressions have a syntax in which a few characters are
  306. special constructs and the rest are "ordinary".  An ordinary character
  307. is a simple regular expression which matches that same character and
  308. nothing else.  The special characters are `$', `^', `.', `*', `+', `?',
  309. `[', `]' and `\'.  Any other character appearing in a regular
  310. expression is ordinary, unless a `\' precedes it.
  311.    For example, `f' is not a special character, so it is ordinary, and
  312. therefore `f' is a regular expression that matches the string `f' and
  313. no other string.  (It does *not* match the string `ff'.)  Likewise, `o'
  314. is a regular expression that matches only `o'.  (When case distinctions
  315. are being ignored, these regexps also match `F' and `O', but we
  316. consider this a generalization of "the same string", rather than an
  317. exception.)
  318.    Any two regular expressions A and B can be concatenated.  The result
  319. is a regular expression which matches a string if A matches some amount
  320. of the beginning of that string and B matches the rest of the string.
  321.    As a simple example, we can concatenate the regular expressions `f'
  322. and `o' to get the regular expression `fo', which matches only the
  323. string `fo'.  Still trivial.  To do something nontrivial, you need to
  324. use one of the special characters.  Here is a list of them.
  325. `. (Period)'
  326.      is a special character that matches any single character except a
  327.      newline.  Using concatenation, we can make regular expressions
  328.      like `a.b' which matches any three-character string which begins
  329.      with `a' and ends with `b'.
  330.      is not a construct by itself; it is a postfix operator, which
  331.      means to match the preceding regular expression repetitively as
  332.      many times as possible.  Thus, `o*' matches any number of `o's
  333.      (including no `o's).
  334.      `*' always applies to the *smallest* possible preceding
  335.      expression.  Thus, `fo*' has a repeating `o', not a repeating
  336.      `fo'.  It matches `f', `fo', `foo', and so on.
  337.      The matcher processes a `*' construct by matching, immediately, as
  338.      many repetitions as can be found.  Then it continues with the rest
  339.      of the pattern.  If that fails, backtracking occurs, discarding
  340.      some of the matches of the `*'-modified construct in case that
  341.      makes it possible to match the rest of the pattern.  For example,
  342.      matching `ca*ar' against the string `caaar', the `a*' first tries
  343.      to match all three `a's; but the rest of the pattern is `ar' and
  344.      there is only `r' left to match, so this try fails.  The next
  345.      alternative is for `a*' to match only two `a's.  With this choice,
  346.      the rest of the regexp matches successfully.
  347.      is a postfix character, similar to `*' except that it must match
  348.      the preceding expression at least once.  So, for example, `ca+r'
  349.      matches the strings `car' and `caaaar' but not the string `cr',
  350.      whereas `ca*r' matches all three strings.
  351.      is a postfix character, similar to `*' except that it can match the
  352.      preceding expression either once or not at all.  For example,
  353.      `ca?r' matches `car' or `cr'; nothing else.
  354. `[ ... ]'
  355.      is a "character set", which begins with `[' and is terminated by
  356.      `]'.  In the simplest case, the characters between the two
  357.      brackets are what this set can match.
  358.      Thus, `[ad]' matches either one `a' or one `d', and `[ad]*'
  359.      matches any string composed of just `a's and `d's (including the
  360.      empty string), from which it follows that `c[ad]*r' matches `cr',
  361.      `car', `cdr', `caddaar', etc.
  362.      You can also include character ranges a character set, by writing
  363.      two characters with a `-' between them.  Thus, `[a-z]' matches any
  364.      lower-case letter.  Ranges may be intermixed freely with individual
  365.      characters, as in `[a-z$%.]', which matches any lower case letter
  366.      or `$', `%' or period.
  367.      Note that the usual regexp special characters are not special
  368.      inside a character set.  A completely different set of special
  369.      characters exists inside character sets: `]', `-' and `^'.
  370.      To include a `]' in a character set, you must make it the first
  371.      character.  For example, `[]a]' matches `]' or `a'.  To include a
  372.      `-', write `-' as the first or last character of the set, or put
  373.      it after a range.  Thus, `[]-]' matches both `]' and `-'.
  374.      To include `^', make it other than the first character in the set.
  375. `[^ ... ]'
  376.      `[^' begins a "complemented character set", which matches any
  377.      character except the ones specified.  Thus, `[^a-z0-9A-Z]' matches
  378.      all characters *except* letters and digits.
  379.      `^' is not special in a character set unless it is the first
  380.      character.  The character following the `^' is treated as if it
  381.      were first (`-' and `]' are not special there).
  382.      A complemented character set can match a newline, unless newline is
  383.      mentioned as one of the characters not to match.  This is in
  384.      contrast to the handling of regexps in programs such as `grep'.
  385.      is a special character that matches the empty string, but only at
  386.      the beginning of a line in the text being matched.  Otherwise it
  387.      fails to match anything.  Thus, `^foo' matches a `foo' which
  388.      occurs at the beginning of a line.
  389.      is similar to `^' but matches only at the end of a line.  Thus,
  390.      `xx*$' matches a string of one `x' or more at the end of a line.
  391.      has two functions: it quotes the special characters (including
  392.      `\'), and it introduces additional special constructs.
  393.      Because `\' quotes special characters, `\$' is a regular
  394.      expression which matches only `$', and `\[' is a regular
  395.      expression which matches only `[', etc.
  396.    Note: for historical compatibility, special characters are treated as
  397. ordinary ones if they are in contexts where their special meanings make
  398. no sense.  For example, `*foo' treats `*' as ordinary since there is no
  399. preceding expression on which the `*' can act.  It is poor practice to
  400. depend on this behavior; better to quote the special character anyway,
  401. regardless of where is appears.
  402.    For the most part, `\' followed by any character matches only that
  403. character.  However, there are several exceptions: two-character
  404. sequences starting with `\' which have special meanings.  The second
  405. character in the sequence is always an ordinary character on their own.
  406. Here is a table of `\' constructs.
  407.      specifies an alternative.  Two regular expressions A and B with
  408.      `\|' in between form an expression that matches anything that
  409.      either A or B matches.
  410.      Thus, `foo\|bar' matches either `foo' or `bar' but no other string.
  411.      `\|' applies to the largest possible surrounding expressions.
  412.      Only a surrounding `\( ... \)' grouping can limit the scope of
  413.      `\|'.
  414.      Full backtracking capability exists to handle multiple uses of
  415.      `\|'.
  416. `\( ... \)'
  417.      is a grouping construct that serves three purposes:
  418.        1. To enclose a set of `\|' alternatives for other operations.
  419.           Thus, `\(foo\|bar\)x' matches either `foox' or `barx'.
  420.        2. To enclose a complicated expression for the postfix operators
  421.           `*', `+' and `?' to operate on.  Thus, `ba\(na\)*' matches
  422.           `bananana', etc., with any (zero or more) number of `na'
  423.           strings.
  424.        3. To mark a matched substring for future reference.
  425.      This last application is not a consequence of the idea of a
  426.      parenthetical grouping; it is a separate feature which is assigned
  427.      as a second meaning to the same `\( ... \)' construct.  In practice
  428.      there is no conflict between the two meanings.  Here is an
  429.      explanation of this feature:
  430.      after the end of a `\( ... \)' construct, the matcher remembers
  431.      the beginning and end of the text matched by that construct.  Then,
  432.      later on in the regular expression, you can use `\' followed by the
  433.      digit D to mean "match the same text matched the Dth time by the
  434.      `\( ... \)' construct."
  435.      The strings matching the first nine `\( ... \)' constructs
  436.      appearing in a regular expression are assigned numbers 1 through 9
  437.      in order that the open-parentheses appear in the regular
  438.      expression.  `\1' through `\9' refer to the text previously
  439.      matched by the corresponding `\( ... \)' construct.
  440.      For example, `\(.*\)\1' matches any newline-free string that is
  441.      composed of two identical halves.  The `\(.*\)' matches the first
  442.      half, which may be anything, but the `\1' that follows must match
  443.      the same exact text.
  444.      If a particular `\( ... \)' construct matches more than once
  445.      (which can easily happen if it is followed by `*'), only the last
  446.      match is recorded.
  447.      matches the empty string, provided it is at the beginning of the
  448.      buffer.
  449.      matches the empty string, provided it is at the end of the buffer.
  450.      matches the empty string, provided it is at the beginning or end
  451.      of a word.  Thus, `\bfoo\b' matches any occurrence of `foo' as a
  452.      separate word.  `\bballs?\b' matches `ball' or `balls' as a
  453.      separate word.
  454.      matches the empty string, provided it is *not* at the beginning or
  455.      end of a word.
  456.      matches the empty string, provided it is at the beginning of a
  457.      word.
  458.      matches the empty string, provided it is at the end of a word.
  459.      matches any word-constituent character.  The syntax table
  460.      determines which characters these are.  *Note Syntax::.
  461.      matches any character that is not a word-constituent.
  462. `\sC'
  463.      matches any character whose syntax is C.  Here C is a character
  464.      which represents a syntax code: thus, `w' for word constituent,
  465.      `(' for open-parenthesis, etc.  Represent a character of
  466.      whitespace (which can be a newline) by either `-' or a space
  467.      character.
  468. `\SC'
  469.      matches any character whose syntax is not C.
  470.    The constructs that pertain to words and syntax are controlled by the
  471. setting of the syntax table (*note Syntax::.).
  472.    Here is a complicated regexp, used by Emacs to recognize the end of a
  473. sentence together with any whitespace that follows.  It is given in Lisp
  474. syntax to enable you to distinguish the spaces from the tab characters.
  475. In Lisp syntax, the string constant begins and ends with a
  476. double-quote.  `\"' stands for a double-quote as part of the regexp,
  477. `\\' for a backslash as part of the regexp, `\t' for a tab and `\n' for
  478. a newline.
  479.      "[.?!][]\"')]*\\($\\|\t\\|  \\)[ \t\n]*"
  480. This contains four parts in succession: a character set matching period,
  481. `?', or `!'; a character set matching close-brackets, quotes, or
  482. parentheses, repeated any number of times; an alternative in
  483. backslash-parentheses that matches end-of-line, a tab, or two spaces;
  484. and a character set matching whitespace characters, repeated any number
  485. of times.
  486.    To enter the same regexp interactively, you would type TAB to enter
  487. a tab, and `C-q C-j' to enter a newline.  You would also type single
  488. slashes as themselves, instead of doubling them for Lisp syntax.
  489. File: emacs,  Node: Search Case,  Next: Replace,  Prev: Regexps,  Up: Search
  490. Searching and Case
  491. ==================
  492.    Incremental searches in Emacs normally ignore the case of the text
  493. they are searching through, if you specify the text in lower case.
  494. Thus, if you specify searching for `foo', then `Foo' and `foo' are also
  495. considered a match.  Regexps, and in particular character sets, are
  496. included: `[ab]' would match `a' or `A' or `b' or `B'.
  497.    An upper-case letter in the incremental search string makes the
  498. search case-sensitive.  Thus, searching for `Foo' does not find `foo'
  499. or `FOO'.  This applies to regular expression search as well as to
  500. string search.  The effect ceases if you delete the upper-case letter
  501. from the search string.
  502.    If you set the variable `case-fold-search' to `nil', then all
  503. letters must match exactly, including case.  This is a per-buffer
  504. variable; altering the variable affects only the current buffer, but
  505. there is a default value which you can change as well.  *Note Locals::.
  506. This variable applies to nonincremental searches also, including those
  507. performed by the replace commands (*note Replace::.).
  508. File: emacs,  Node: Replace,  Next: Other Repeating Search,  Prev: Search Case,  Up: Search
  509. Replacement Commands
  510. ====================
  511.    Global search-and-replace operations are not needed as often in Emacs
  512. as they are in other editors(1), but they are available.  In addition
  513. to the simple `M-x replace-string' command which is like that found in
  514. most editors, there is a `M-x query-replace' command which asks you, for
  515. each occurrence of the pattern, whether to replace it.
  516.    The replace commands all replace one string (or regexp) with one
  517. replacement string.  It is possible to perform several replacements in
  518. parallel using the command `expand-region-abbrevs'.  *Note Expanding
  519. Abbrevs::.
  520. * Menu:
  521. * Unconditional Replace::  Replacing all matches for a string.
  522. * Regexp Replace::         Replacing all matches for a regexp.
  523. * Replacement and Case::   How replacements preserve case of letters.
  524. * Query Replace::          How to use querying.
  525.    ---------- Footnotes ----------
  526.    (1)  In some editors, search-and-replace operations are the only
  527. convenient way to make a single change in the text.
  528. File: emacs,  Node: Unconditional Replace,  Next: Regexp Replace,  Prev: Replace,  Up: Replace
  529. Unconditional Replacement
  530. -------------------------
  531. `M-x replace-string RET STRING RET NEWSTRING RET'
  532.      Replace every occurrence of STRING with NEWSTRING.
  533. `M-x replace-regexp RET REGEXP RET NEWSTRING RET'
  534.      Replace every match for REGEXP with NEWSTRING.
  535.    To replace every instance of `foo' after point with `bar', use the
  536. command `M-x replace-string' with the two arguments `foo' and `bar'.
  537. Replacement happens only in the text after point, so if you want to
  538. cover the whole buffer you must go to the beginning first.  All
  539. occurrences up to the end of the buffer are replaced; to limit
  540. replacement to part of the buffer, narrow to that part of the buffer
  541. before doing the replacement (*note Narrowing::.).
  542.    When `replace-string' exits, point is left at the last occurrence
  543. replaced.  The position of point where the `replace-string' command was
  544. issued is remembered on the mark ring; use `C-u C-SPC' to move back
  545. there.
  546.    A numeric argument restricts replacement to matches that are
  547. surrounded by word boundaries.  The argument's value doesn't matter.
  548. File: emacs,  Node: Regexp Replace,  Next: Replacement and Case,  Prev: Unconditional Replace,  Up: Replace
  549. Regexp Replacement
  550. ------------------
  551.    The `M-x replace-string' command replaces exact matches for a single
  552. string.  The similar command `M-x replace-regexp' replaces any match
  553. for a specified pattern.
  554.    In `replace-regexp', the NEWSTRING need not be constant: it can
  555. refer to all or part of what is matched by the REGEXP.  `\&' in
  556. NEWSTRING stands for the entire match being replaced.  `\D' in
  557. NEWSTRING, where D is a digit, stands for whatever matched the Dth
  558. parenthesized grouping in REGEXP.  To include a `\' in the text to
  559. replace with, you must enter `\\'.  For example,
  560.      M-x replace-regexp RET c[ad]+r RET \&-safe RET
  561. replaces (for example) `cadr' with `cadr-safe' and `cddr' with
  562. `cddr-safe'.
  563.      M-x replace-regexp RET \(c[ad]+r\)-safe RET \1 RET
  564. performs the inverse transformation.
  565. File: emacs,  Node: Replacement and Case,  Next: Query Replace,  Prev: Regexp Replace,  Up: Replace
  566. Replace Commands and Case
  567. -------------------------
  568.    If the arguments to a replace command are in lower case, it preserves
  569. case when it makes a replacement.  Thus, the command
  570.      M-x replace-string RET foo RET bar RET
  571. replaces a lower case `foo' with a lower case `bar', `FOO' with `BAR',
  572. and `Foo' with `Bar'.  If upper case letters are used in the second
  573. argument, they remain upper case every time that argument is inserted.
  574. If upper case letters are used in the first argument, the second
  575. argument is always substituted exactly as given, with no case
  576. conversion.  Likewise, if the variable `case-replace' is set to `nil',
  577. replacement is done without case conversion.  If `case-fold-search' is
  578. set to `nil', case is significant in matching occurrences of `foo' to
  579. replace; this also inhibits case conversion of the replacement string.
  580. File: emacs,  Node: Query Replace,  Prev: Replacement and Case,  Up: Replace
  581. Query Replace
  582. -------------
  583. `M-% STRING RET NEWSTRING RET'
  584. `M-x query-replace RET STRING RET NEWSTRING RET'
  585.      Replace some occurrences of STRING with NEWSTRING.
  586. `M-x query-replace-regexp RET REGEXP RET NEWSTRING RET'
  587.      Replace some matches for REGEXP with NEWSTRING.
  588.    If you want to change only some of the occurrences of `foo' to
  589. `bar', not all of them, then you cannot use an ordinary
  590. `replace-string'.  Instead, use `M-%' (`query-replace').  This command
  591. finds occurrences of `foo' one by one, displays each occurrence and
  592. asks you whether to replace it.  A numeric argument to `query-replace'
  593. tells it to consider only occurrences that are bounded by
  594. word-delimiter characters.  This preserves case, just like
  595. `replace-string', provided `case-replace' is non-`nil', as it normally
  596.    Aside from querying, `query-replace' works just like
  597. `replace-string', and `query-replace-regexp' works just like
  598. `replace-regexp'.  The shortest way to type this command name is `M-x
  599. que SPC SPC SPC RET'.
  600.    The things you can type when you are shown an occurrence of STRING
  601. or a match for REGEXP are:
  602. `SPC'
  603.      to replace the occurrence with NEWSTRING.
  604. `DEL'
  605.      to skip to the next occurrence without replacing this one.
  606. `, (Comma)'
  607.      to replace this occurrence and display the result.  You are then
  608.      asked for another input character to say what to do next.  Since
  609.      the replacement has already been made, DEL and SPC are equivalent
  610.      in this situation; both move to the next occurrence.
  611.      You could type `C-r' at this point (see below) to alter the
  612.      replaced text.  You could also type `C-x u' to undo the
  613.      replacement; this exits the `query-replace', so if you want to do
  614.      further replacement you must use `C-x ESC ESC RET' to restart
  615.      (*note Repetition::.).
  616. `RET'
  617.      to exit without doing any more replacements.
  618. `. (Period)'
  619.      to replace this occurrence and then exit without searching for more
  620.      occurrences.
  621.      to replace all remaining occurrences without asking again.
  622.      to go back to the position of the previous occurrence (or what
  623.      used to be an occurrence), in case you changed it by mistake.
  624.      This works by popping the mark ring.  Only one `^' in a row is
  625.      meaningful, because only one previous replacement position is kept
  626.      during `query-replace'.
  627. `C-r'
  628.      to enter a recursive editing level, in case the occurrence needs
  629.      to be edited rather than just replaced with NEWSTRING.  When you
  630.      are done, exit the recursive editing level with `C-M-c' to proceed
  631.      to the next occurrence.  *Note Recursive Edit::.
  632. `C-w'
  633.      to delete the occurrence, and then enter a recursive editing level
  634.      as in `C-r'.  Use the recursive edit to insert text to replace the
  635.      deleted occurrence of STRING.  When done, exit the recursive
  636.      editing level with `C-M-c' to proceed to the next occurrence.
  637. `C-l'
  638.      to redisplay the screen.  Then you must type another character to
  639.      specify what to do with this occurrence.
  640. `C-h'
  641.      to display a message summarizing these options.  Then you must type
  642.      another character to specify what to do with this occurrence.
  643.    Some other characters are aliases for the ones listed above: `y',
  644. `n' and `q' are equivalent to SPC, DEL and RET.
  645.    Aside from this, any other character exits the `query-replace', and
  646. is then reread as part of a key sequence.  Thus, if you type `C-k', it
  647. exits the `query-replace' and then kills to end of line.
  648.    To restart a `query-replace' once it is exited, use `C-x ESC ESC',
  649. which repeats the `query-replace' because it used the minibuffer to
  650. read its arguments.  *Note C-x ESC ESC: Repetition.
  651.    See also *Note Transforming File Names::, for Dired commands to
  652. rename, copy, or link files by replacing regexp matches in file names.
  653. File: emacs,  Node: Other Repeating Search,  Prev: Replace,  Up: Search
  654. Other Search-and-Loop Commands
  655. ==============================
  656.    Here are some other commands that find matches for a regular
  657. expression.  They all operate from point to the end of the buffer.
  658. `M-x occur RET REGEXP RET'
  659.      Print each line that follows point and contains a match for
  660.      REGEXP.  A numeric argument specifies the number of context lines
  661.      to print before and after each matching line; the default is none.
  662.      The buffer `*Occur*' containing the output serves as a menu for
  663.      finding the occurrences in their original context.  Click `Mouse-2'
  664.      on an occurrence listed in `*Occur*', or position point there and
  665.      type `C-c C-c'; this switches to the buffer that was searched and
  666.      moves point to the original of the chosen occurrence.
  667. `M-x list-matching-lines'
  668.      Synonym for `M-x occur'.
  669. `M-x count-matches RET REGEXP RET'
  670.      Print the number of matches for REGEXP after point.
  671. `M-x flush-lines RET REGEXP RET'
  672.      Delete each line that follows point and contains a match for
  673.      REGEXP.
  674. `M-x keep-lines RET REGEXP RET'
  675.      Delete each line that follows point and *does not* contain a match
  676.      for REGEXP.
  677. File: emacs,  Node: Fixit,  Next: Files,  Prev: Search,  Up: Top
  678. Commands for Fixing Typos
  679. *************************
  680.    In this chapter we describe the commands that are especially useful
  681. for the times when you catch a mistake in your text just after you have
  682. made it, or change your mind while composing text on the fly.
  683.    The most fundamental command for correcting erroneous editing is the
  684. undo command, `C-x u' or `C-_'.  This command undoes a single command
  685. (usually), a part of a command (in the case of `query-replace'), or
  686. several consecutive self-inserting characters.  Consecutive repetitions
  687. of `C-_' or `C-x u' undo earlier and earlier changes, back to the limit
  688. of the undo information available.  *Note Undo::, for for more
  689. information.
  690. * Menu:
  691. * Kill Errors:: Commands to kill a batch of recently entered text.
  692. * Transpose::   Exchanging two characters, words, lines, lists...
  693. * Fixing Case:: Correcting case of last word entered.
  694. * Spelling::    Apply spelling checker to a word, or a whole file.
  695. File: emacs,  Node: Kill Errors,  Next: Transpose,  Up: Fixit
  696. Killing Your Mistakes
  697. =====================
  698. `DEL'
  699.      Delete last character (`delete-backward-char').
  700. `M-DEL'
  701.      Kill last word (`backward-kill-word').
  702. `C-x DEL'
  703.      Kill to beginning of sentence (`backward-kill-sentence').
  704.    The DEL character (`delete-backward-char') is the most important
  705. correction command.  It deletes the character before point.  When DEL
  706. follows a self-inserting character command, you can think of it as
  707. canceling that command.  However, avoid the mistake of thinking of DEL
  708. as a general way to cancel a command!
  709.    When your mistake is longer than a couple of characters, it might be
  710. more convenient to use `M-DEL' or `C-x DEL'.  `M-DEL' kills back to the
  711. start of the last word, and `C-x DEL' kills back to the start of the
  712. last sentence.  `C-x DEL' is particularly useful when you change your
  713. mind about the phrasing of the text you are writing.  `M-DEL' and `C-x
  714. DEL' save the killed text for `C-y' and `M-y' to retrieve.  *Note
  715. Yanking::.
  716.    `M-DEL' is often useful even when you have typed only a few
  717. characters wrong, if you know you are confused in your typing and aren't
  718. sure exactly what you typed.  At such a time, you cannot correct with
  719. DEL except by looking at the screen to see what you did.  Often it
  720. requires less thought to kill the whole word and start again.
  721. File: emacs,  Node: Transpose,  Next: Fixing Case,  Prev: Kill Errors,  Up: Fixit
  722. Transposing Text
  723. ================
  724. `C-t'
  725.      Transpose two characters (`transpose-chars').
  726. `M-t'
  727.      Transpose two words (`transpose-words').
  728. `C-M-t'
  729.      Transpose two balanced expressions (`transpose-sexps').
  730. `C-x C-t'
  731.      Transpose two lines (`transpose-lines').
  732.    The common error of transposing two characters can be fixed, when
  733. they are adjacent, with the `C-t' command (`transpose-chars').
  734. Normally, `C-t' transposes the two characters on either side of point.
  735. When given at the end of a line, rather than transposing the last
  736. character of the line with the newline, which would be useless, `C-t'
  737. transposes the last two characters on the line.  So, if you catch your
  738. transposition error right away, you can fix it with just a `C-t'.  If
  739. you don't catch it so fast, you must move the cursor back to between
  740. the two transposed characters.  If you transposed a space with the last
  741. character of the word before it, the word motion commands are a good
  742. way of getting there.  Otherwise, a reverse search (`C-r') is often the
  743. best way.  *Note Search::.
  744.    `M-t' (`transpose-words') transposes the word before point with the
  745. word after point.  It moves point forward over a word, dragging the
  746. word preceding or containing point forward as well.  The punctuation
  747. characters between the words do not move.  For example, `FOO, BAR'
  748. transposes into `BAR, FOO' rather than `BAR FOO,'.
  749.    `C-M-t' (`transpose-sexps') is a similar command for transposing two
  750. expressions (*note Lists::.), and `C-x C-t' (`transpose-lines')
  751. exchanges lines.  They work like `M-t' except in determining the
  752. division of the text into syntactic units.
  753.    A numeric argument to a transpose command serves as a repeat count:
  754. it tells the transpose command to move the character (word, sexp, line)
  755. before or containing point across several other characters (words,
  756. sexps, lines).  For example, `C-u 3 C-t' moves the character before
  757. point forward across three other characters.  It would change
  758. `f-!-oobar' into `oobf-!-ar'.  This is equivalent to repeating `C-t'
  759. three times.  `C-u - 4 M-t' moves the word before point backward across
  760. four words.  `C-u - C-M-t' would cancel the effect of plain `C-M-t'.
  761.    A numeric argument of zero is assigned a special meaning (because
  762. otherwise a command with a repeat count of zero would do nothing): to
  763. transpose the character (word, sexp, line) ending after point with the
  764. one ending after the mark.
  765. File: emacs,  Node: Fixing Case,  Next: Spelling,  Prev: Transpose,  Up: Fixit
  766. Case Conversion
  767. ===============
  768. `M-- M-l'
  769.      Convert last word to lower case.  Note `Meta--' is Meta-minus.
  770. `M-- M-u'
  771.      Convert last word to all upper case.
  772. `M-- M-c'
  773.      Convert last word to lower case with capital initial.
  774.    A very common error is to type words in the wrong case.  Because of
  775. this, the word case-conversion commands `M-l', `M-u' and `M-c' have a
  776. special feature when used with a negative argument: they do not move the
  777. cursor.  As soon as you see you have mistyped the last word, you can
  778. simply case-convert it and go on typing.  *Note Case::.
  779.