home *** CD-ROM | disk | FTP | other *** search
/ Dream 49 / Amiga_Dream_49.iso / beos / emacs / emacs-19.34-bin / emacs-19 / info / emacs-6 (.txt) < prev    next >
GNU Info File  |  1997-09-17  |  50KB  |  877 lines

  1. This is Info file ../info/emacs, produced by Makeinfo-1.63 from the
  2. input file emacs.texi.
  3. File: emacs,  Node: Regexps,  Next: Search Case,  Prev: Regexp Search,  Up: Search
  4. Syntax of Regular Expressions
  5. =============================
  6.    Regular expressions have a syntax in which a few characters are
  7. special constructs and the rest are "ordinary".  An ordinary character
  8. is a simple regular expression which matches that same character and
  9. nothing else.  The special characters are `$', `^', `.', `*', `+', `?',
  10. `[', `]' and `\'.  Any other character appearing in a regular
  11. expression is ordinary, unless a `\' precedes it.
  12.    For example, `f' is not a special character, so it is ordinary, and
  13. therefore `f' is a regular expression that matches the string `f' and
  14. no other string.  (It does *not* match the string `ff'.)  Likewise, `o'
  15. is a regular expression that matches only `o'.  (When case distinctions
  16. are being ignored, these regexps also match `F' and `O', but we
  17. consider this a generalization of "the same string", rather than an
  18. exception.)
  19.    Any two regular expressions A and B can be concatenated.  The result
  20. is a regular expression which matches a string if A matches some amount
  21. of the beginning of that string and B matches the rest of the string.
  22.    As a simple example, we can concatenate the regular expressions `f'
  23. and `o' to get the regular expression `fo', which matches only the
  24. string `fo'.  Still trivial.  To do something nontrivial, you need to
  25. use one of the special characters.  Here is a list of them.
  26. `. (Period)'
  27.      is a special character that matches any single character except a
  28.      newline.  Using concatenation, we can make regular expressions
  29.      like `a.b' which matches any three-character string which begins
  30.      with `a' and ends with `b'.
  31.      is not a construct by itself; it is a postfix operator, which
  32.      means to match the preceding regular expression repetitively as
  33.      many times as possible.  Thus, `o*' matches any number of `o's
  34.      (including no `o's).
  35.      `*' always applies to the *smallest* possible preceding
  36.      expression.  Thus, `fo*' has a repeating `o', not a repeating
  37.      `fo'.  It matches `f', `fo', `foo', and so on.
  38.      The matcher processes a `*' construct by matching, immediately, as
  39.      many repetitions as can be found.  Then it continues with the rest
  40.      of the pattern.  If that fails, backtracking occurs, discarding
  41.      some of the matches of the `*'-modified construct in case that
  42.      makes it possible to match the rest of the pattern.  For example,
  43.      matching `ca*ar' against the string `caaar', the `a*' first tries
  44.      to match all three `a's; but the rest of the pattern is `ar' and
  45.      there is only `r' left to match, so this try fails.  The next
  46.      alternative is for `a*' to match only two `a's.  With this choice,
  47.      the rest of the regexp matches successfully.
  48.      is a postfix character, similar to `*' except that it must match
  49.      the preceding expression at least once.  So, for example, `ca+r'
  50.      matches the strings `car' and `caaaar' but not the string `cr',
  51.      whereas `ca*r' matches all three strings.
  52.      is a postfix character, similar to `*' except that it can match the
  53.      preceding expression either once or not at all.  For example,
  54.      `ca?r' matches `car' or `cr'; nothing else.
  55. `[ ... ]'
  56.      is a "character set", which begins with `[' and is terminated by
  57.      `]'.  In the simplest case, the characters between the two
  58.      brackets are what this set can match.
  59.      Thus, `[ad]' matches either one `a' or one `d', and `[ad]*'
  60.      matches any string composed of just `a's and `d's (including the
  61.      empty string), from which it follows that `c[ad]*r' matches `cr',
  62.      `car', `cdr', `caddaar', etc.
  63.      You can also include character ranges a character set, by writing
  64.      two characters with a `-' between them.  Thus, `[a-z]' matches any
  65.      lower-case letter.  Ranges may be intermixed freely with individual
  66.      characters, as in `[a-z$%.]', which matches any lower case letter
  67.      or `$', `%' or period.
  68.      Note that the usual regexp special characters are not special
  69.      inside a character set.  A completely different set of special
  70.      characters exists inside character sets: `]', `-' and `^'.
  71.      To include a `]' in a character set, you must make it the first
  72.      character.  For example, `[]a]' matches `]' or `a'.  To include a
  73.      `-', write `-' as the first or last character of the set, or put
  74.      it after a range.  Thus, `[]-]' matches both `]' and `-'.
  75.      To include `^', make it other than the first character in the set.
  76. `[^ ... ]'
  77.      `[^' begins a "complemented character set", which matches any
  78.      character except the ones specified.  Thus, `[^a-z0-9A-Z]' matches
  79.      all characters *except* letters and digits.
  80.      `^' is not special in a character set unless it is the first
  81.      character.  The character following the `^' is treated as if it
  82.      were first (`-' and `]' are not special there).
  83.      A complemented character set can match a newline, unless newline is
  84.      mentioned as one of the characters not to match.  This is in
  85.      contrast to the handling of regexps in programs such as `grep'.
  86.      is a special character that matches the empty string, but only at
  87.      the beginning of a line in the text being matched.  Otherwise it
  88.      fails to match anything.  Thus, `^foo' matches a `foo' which
  89.      occurs at the beginning of a line.
  90.      is similar to `^' but matches only at the end of a line.  Thus,
  91.      `xx*$' matches a string of one `x' or more at the end of a line.
  92.      has two functions: it quotes the special characters (including
  93.      `\'), and it introduces additional special constructs.
  94.      Because `\' quotes special characters, `\$' is a regular
  95.      expression which matches only `$', and `\[' is a regular
  96.      expression which matches only `[', etc.
  97.    Note: for historical compatibility, special characters are treated as
  98. ordinary ones if they are in contexts where their special meanings make
  99. no sense.  For example, `*foo' treats `*' as ordinary since there is no
  100. preceding expression on which the `*' can act.  It is poor practice to
  101. depend on this behavior; better to quote the special character anyway,
  102. regardless of where it appears.
  103.    For the most part, `\' followed by any character matches only that
  104. character.  However, there are several exceptions: two-character
  105. sequences starting with `\' which have special meanings.  The second
  106. character in the sequence is always an ordinary character on their own.
  107. Here is a table of `\' constructs.
  108.      specifies an alternative.  Two regular expressions A and B with
  109.      `\|' in between form an expression that matches anything that
  110.      either A or B matches.
  111.      Thus, `foo\|bar' matches either `foo' or `bar' but no other string.
  112.      `\|' applies to the largest possible surrounding expressions.
  113.      Only a surrounding `\( ... \)' grouping can limit the scope of
  114.      `\|'.
  115.      Full backtracking capability exists to handle multiple uses of
  116.      `\|'.
  117. `\( ... \)'
  118.      is a grouping construct that serves three purposes:
  119.        1. To enclose a set of `\|' alternatives for other operations.
  120.           Thus, `\(foo\|bar\)x' matches either `foox' or `barx'.
  121.        2. To enclose a complicated expression for the postfix operators
  122.           `*', `+' and `?' to operate on.  Thus, `ba\(na\)*' matches
  123.           `bananana', etc., with any (zero or more) number of `na'
  124.           strings.
  125.        3. To mark a matched substring for future reference.
  126.      This last application is not a consequence of the idea of a
  127.      parenthetical grouping; it is a separate feature which is assigned
  128.      as a second meaning to the same `\( ... \)' construct.  In practice
  129.      there is no conflict between the two meanings.  Here is an
  130.      explanation of this feature:
  131.      after the end of a `\( ... \)' construct, the matcher remembers
  132.      the beginning and end of the text matched by that construct.  Then,
  133.      later on in the regular expression, you can use `\' followed by the
  134.      digit D to mean "match the same text matched the Dth time by the
  135.      `\( ... \)' construct."
  136.      The strings matching the first nine `\( ... \)' constructs
  137.      appearing in a regular expression are assigned numbers 1 through 9
  138.      in order that the open-parentheses appear in the regular
  139.      expression.  `\1' through `\9' refer to the text previously
  140.      matched by the corresponding `\( ... \)' construct.
  141.      For example, `\(.*\)\1' matches any newline-free string that is
  142.      composed of two identical halves.  The `\(.*\)' matches the first
  143.      half, which may be anything, but the `\1' that follows must match
  144.      the same exact text.
  145.      If a particular `\( ... \)' construct matches more than once
  146.      (which can easily happen if it is followed by `*'), only the last
  147.      match is recorded.
  148.      matches the empty string, provided it is at the beginning of the
  149.      buffer or string being matched against.
  150.      matches the empty string, provided it is at the end of the buffer
  151.      or string being matched against.
  152.      matches the empty string, provided it is at point.
  153.      matches the empty string, provided it is at the beginning or end
  154.      of a word.  Thus, `\bfoo\b' matches any occurrence of `foo' as a
  155.      separate word.  `\bballs?\b' matches `ball' or `balls' as a
  156.      separate word.
  157.      `\b' matches at the beginning or end of the buffer regardless of
  158.      what text appears next to it.
  159.      matches the empty string, provided it is *not* at the beginning or
  160.      end of a word.
  161.      matches the empty string, provided it is at the beginning of a
  162.      word.  `\<' matches at the beginning of the buffer only if a
  163.      word-constituent character follows.
  164.      matches the empty string, provided it is at the end of a word.
  165.      `\>' matches at the end of the buffer only if the contents end with
  166.      a word-constituent character.
  167.      matches any word-constituent character.  The syntax table
  168.      determines which characters these are.  *Note Syntax::.
  169.      matches any character that is not a word-constituent.
  170. `\sC'
  171.      matches any character whose syntax is C.  Here C is a character
  172.      which represents a syntax code: thus, `w' for word constituent,
  173.      `(' for open-parenthesis, etc.  Represent a character of
  174.      whitespace (which can be a newline) by either `-' or a space
  175.      character.
  176. `\SC'
  177.      matches any character whose syntax is not C.
  178.    The constructs that pertain to words and syntax are controlled by the
  179. setting of the syntax table (*note Syntax::.).
  180.    Here is a complicated regexp, used by Emacs to recognize the end of a
  181. sentence together with any whitespace that follows.  It is given in Lisp
  182. syntax to enable you to distinguish the spaces from the tab characters.
  183. In Lisp syntax, the string constant begins and ends with a
  184. double-quote.  `\"' stands for a double-quote as part of the regexp,
  185. `\\' for a backslash as part of the regexp, `\t' for a tab and `\n' for
  186. a newline.
  187.      "[.?!][]\"')]*\\($\\|\t\\|  \\)[ \t\n]*"
  188. This contains four parts in succession: a character set matching period,
  189. `?', or `!'; a character set matching close-brackets, quotes, or
  190. parentheses, repeated any number of times; an alternative in
  191. backslash-parentheses that matches end-of-line, a tab, or two spaces;
  192. and a character set matching whitespace characters, repeated any number
  193. of times.
  194.    To enter the same regexp interactively, you would type TAB to enter
  195. a tab, and `C-q C-j' to enter a newline.  You would also type single
  196. backslashes as themselves, instead of doubling them for Lisp syntax.
  197. File: emacs,  Node: Search Case,  Next: Replace,  Prev: Regexps,  Up: Search
  198. Searching and Case
  199. ==================
  200.    Incremental searches in Emacs normally ignore the case of the text
  201. they are searching through, if you specify the text in lower case.
  202. Thus, if you specify searching for `foo', then `Foo' and `foo' are also
  203. considered a match.  Regexps, and in particular character sets, are
  204. included: `[ab]' would match `a' or `A' or `b' or `B'.
  205.    An upper-case letter in the incremental search string makes the
  206. search case-sensitive.  Thus, searching for `Foo' does not find `foo'
  207. or `FOO'.  This applies to regular expression search as well as to
  208. string search.  The effect ceases if you delete the upper-case letter
  209. from the search string.
  210.    If you set the variable `case-fold-search' to `nil', then all
  211. letters must match exactly, including case.  This is a per-buffer
  212. variable; altering the variable affects only the current buffer, but
  213. there is a default value which you can change as well.  *Note Locals::.
  214. This variable applies to nonincremental searches also, including those
  215. performed by the replace commands (*note Replace::.).
  216. File: emacs,  Node: Replace,  Next: Other Repeating Search,  Prev: Search Case,  Up: Search
  217. Replacement Commands
  218. ====================
  219.    Global search-and-replace operations are not needed as often in Emacs
  220. as they are in other editors(1), but they are available.  In addition
  221. to the simple `M-x replace-string' command which is like that found in
  222. most editors, there is a `M-x query-replace' command which asks you, for
  223. each occurrence of the pattern, whether to replace it.
  224.    The replace commands all replace one string (or regexp) with one
  225. replacement string.  It is possible to perform several replacements in
  226. parallel using the command `expand-region-abbrevs'.  *Note Expanding
  227. Abbrevs::.
  228. * Menu:
  229. * Unconditional Replace::  Replacing all matches for a string.
  230. * Regexp Replace::         Replacing all matches for a regexp.
  231. * Replacement and Case::   How replacements preserve case of letters.
  232. * Query Replace::          How to use querying.
  233.    ---------- Footnotes ----------
  234.    (1)  In some editors, search-and-replace operations are the only
  235. convenient way to make a single change in the text.
  236. File: emacs,  Node: Unconditional Replace,  Next: Regexp Replace,  Prev: Replace,  Up: Replace
  237. Unconditional Replacement
  238. -------------------------
  239. `M-x replace-string RET STRING RET NEWSTRING RET'
  240.      Replace every occurrence of STRING with NEWSTRING.
  241. `M-x replace-regexp RET REGEXP RET NEWSTRING RET'
  242.      Replace every match for REGEXP with NEWSTRING.
  243.    To replace every instance of `foo' after point with `bar', use the
  244. command `M-x replace-string' with the two arguments `foo' and `bar'.
  245. Replacement happens only in the text after point, so if you want to
  246. cover the whole buffer you must go to the beginning first.  All
  247. occurrences up to the end of the buffer are replaced; to limit
  248. replacement to part of the buffer, narrow to that part of the buffer
  249. before doing the replacement (*note Narrowing::.).
  250.    When `replace-string' exits, it leaves point at the last occurrence
  251. replaced.  It sets the mark to the prior position of point (where the
  252. `replace-string' command was issued); use `C-u C-SPC' to move back
  253. there.
  254.    A numeric argument restricts replacement to matches that are
  255. surrounded by word boundaries.  The argument's value doesn't matter.
  256. File: emacs,  Node: Regexp Replace,  Next: Replacement and Case,  Prev: Unconditional Replace,  Up: Replace
  257. Regexp Replacement
  258. ------------------
  259.    The `M-x replace-string' command replaces exact matches for a single
  260. string.  The similar command `M-x replace-regexp' replaces any match
  261. for a specified pattern.
  262.    In `replace-regexp', the NEWSTRING need not be constant: it can
  263. refer to all or part of what is matched by the REGEXP.  `\&' in
  264. NEWSTRING stands for the entire match being replaced.  `\D' in
  265. NEWSTRING, where D is a digit, stands for whatever matched the Dth
  266. parenthesized grouping in REGEXP.  To include a `\' in the text to
  267. replace with, you must enter `\\'.  For example,
  268.      M-x replace-regexp RET c[ad]+r RET \&-safe RET
  269. replaces (for example) `cadr' with `cadr-safe' and `cddr' with
  270. `cddr-safe'.
  271.      M-x replace-regexp RET \(c[ad]+r\)-safe RET \1 RET
  272. performs the inverse transformation.
  273. File: emacs,  Node: Replacement and Case,  Next: Query Replace,  Prev: Regexp Replace,  Up: Replace
  274. Replace Commands and Case
  275. -------------------------
  276.    If the arguments to a replace command are in lower case, it preserves
  277. case when it makes a replacement.  Thus, the command
  278.      M-x replace-string RET foo RET bar RET
  279. replaces a lower case `foo' with a lower case `bar', an all-caps `FOO'
  280. with `BAR', and a capitalized `Foo' with `Bar'.  (These three
  281. alternatives-lower case, all caps, and capitalized, are the only ones
  282. that `replace-string' can distinguish.)
  283.    If upper case letters are used in the second argument, they remain
  284. upper case every time that argument is inserted.  If upper case letters
  285. are used in the first argument, the second argument is always
  286. substituted exactly as given, with no case conversion.  Likewise, if the
  287. variable `case-replace' is set to `nil', replacement is done without
  288. case conversion.  If `case-fold-search' is set to `nil', case is
  289. significant in matching occurrences of `foo' to replace; this also
  290. inhibits case conversion of the replacement string.
  291. File: emacs,  Node: Query Replace,  Prev: Replacement and Case,  Up: Replace
  292. Query Replace
  293. -------------
  294. `M-% STRING RET NEWSTRING RET'
  295. `M-x query-replace RET STRING RET NEWSTRING RET'
  296.      Replace some occurrences of STRING with NEWSTRING.
  297. `M-x query-replace-regexp RET REGEXP RET NEWSTRING RET'
  298.      Replace some matches for REGEXP with NEWSTRING.
  299.    If you want to change only some of the occurrences of `foo' to
  300. `bar', not all of them, then you cannot use an ordinary
  301. `replace-string'.  Instead, use `M-%' (`query-replace').  This command
  302. finds occurrences of `foo' one by one, displays each occurrence and
  303. asks you whether to replace it.  A numeric argument to `query-replace'
  304. tells it to consider only occurrences that are bounded by
  305. word-delimiter characters.  This preserves case, just like
  306. `replace-string', provided `case-replace' is non-`nil', as it normally
  307.    Aside from querying, `query-replace' works just like
  308. `replace-string', and `query-replace-regexp' works just like
  309. `replace-regexp'.  The shortest way to type this command name is `M-x
  310. que SPC SPC SPC RET'.
  311.    The things you can type when you are shown an occurrence of STRING
  312. or a match for REGEXP are:
  313. `SPC'
  314.      to replace the occurrence with NEWSTRING.
  315. `DEL'
  316.      to skip to the next occurrence without replacing this one.
  317. `, (Comma)'
  318.      to replace this occurrence and display the result.  You are then
  319.      asked for another input character to say what to do next.  Since
  320.      the replacement has already been made, DEL and SPC are equivalent
  321.      in this situation; both move to the next occurrence.
  322.      You could type `C-r' at this point (see below) to alter the
  323.      replaced text.  You could also type `C-x u' to undo the
  324.      replacement; this exits the `query-replace', so if you want to do
  325.      further replacement you must use `C-x ESC ESC RET' to restart
  326.      (*note Repetition::.).
  327. `RET'
  328.      to exit without doing any more replacements.
  329. `. (Period)'
  330.      to replace this occurrence and then exit without searching for more
  331.      occurrences.
  332.      to replace all remaining occurrences without asking again.
  333.      to go back to the position of the previous occurrence (or what
  334.      used to be an occurrence), in case you changed it by mistake.
  335.      This works by popping the mark ring.  Only one `^' in a row is
  336.      meaningful, because only one previous replacement position is kept
  337.      during `query-replace'.
  338. `C-r'
  339.      to enter a recursive editing level, in case the occurrence needs
  340.      to be edited rather than just replaced with NEWSTRING.  When you
  341.      are done, exit the recursive editing level with `C-M-c' to proceed
  342.      to the next occurrence.  *Note Recursive Edit::.
  343. `C-w'
  344.      to delete the occurrence, and then enter a recursive editing level
  345.      as in `C-r'.  Use the recursive edit to insert text to replace the
  346.      deleted occurrence of STRING.  When done, exit the recursive
  347.      editing level with `C-M-c' to proceed to the next occurrence.
  348. `C-l'
  349.      to redisplay the screen.  Then you must type another character to
  350.      specify what to do with this occurrence.
  351. `C-h'
  352.      to display a message summarizing these options.  Then you must type
  353.      another character to specify what to do with this occurrence.
  354.    Some other characters are aliases for the ones listed above: `y',
  355. `n' and `q' are equivalent to SPC, DEL and RET.
  356.    Aside from this, any other character exits the `query-replace', and
  357. is then reread as part of a key sequence.  Thus, if you type `C-k', it
  358. exits the `query-replace' and then kills to end of line.
  359.    To restart a `query-replace' once it is exited, use `C-x ESC ESC',
  360. which repeats the `query-replace' because it used the minibuffer to
  361. read its arguments.  *Note C-x ESC ESC: Repetition.
  362.    See also *Note Transforming File Names::, for Dired commands to
  363. rename, copy, or link files by replacing regexp matches in file names.
  364. File: emacs,  Node: Other Repeating Search,  Prev: Replace,  Up: Search
  365. Other Search-and-Loop Commands
  366. ==============================
  367.    Here are some other commands that find matches for a regular
  368. expression.  They all operate from point to the end of the buffer.
  369. `M-x occur RET REGEXP RET'
  370.      Display a list showing each line in the buffer that contains a
  371.      match for REGEXP.  A numeric argument specifies the number of
  372.      context lines to print before and after each matching line; the
  373.      default is none.  To limit the search to part of the buffer,
  374.      narrow to that part (*note Narrowing::.).
  375.      The buffer `*Occur*' containing the output serves as a menu for
  376.      finding the occurrences in their original context.  Click `Mouse-2'
  377.      on an occurrence listed in `*Occur*', or position point there and
  378.      type RET; this switches to the buffer that was searched and moves
  379.      point to the original of the chosen occurrence.
  380. `M-x list-matching-lines'
  381.      Synonym for `M-x occur'.
  382. `M-x count-matches RET REGEXP RET'
  383.      Print the number of matches for REGEXP after point.
  384. `M-x flush-lines RET REGEXP RET'
  385.      Delete each line that follows point and contains a match for
  386.      REGEXP.
  387. `M-x keep-lines RET REGEXP RET'
  388.      Delete each line that follows point and *does not* contain a match
  389.      for REGEXP.
  390. File: emacs,  Node: Fixit,  Next: Files,  Prev: Search,  Up: Top
  391. Commands for Fixing Typos
  392. *************************
  393.    In this chapter we describe the commands that are especially useful
  394. for the times when you catch a mistake in your text just after you have
  395. made it, or change your mind while composing text on the fly.
  396.    The most fundamental command for correcting erroneous editing is the
  397. undo command, `C-x u' or `C-_'.  This command undoes a single command
  398. (usually), a part of a command (in the case of `query-replace'), or
  399. several consecutive self-inserting characters.  Consecutive repetitions
  400. of `C-_' or `C-x u' undo earlier and earlier changes, back to the limit
  401. of the undo information available.  *Note Undo::, for for more
  402. information.
  403. * Menu:
  404. * Kill Errors:: Commands to kill a batch of recently entered text.
  405. * Transpose::   Exchanging two characters, words, lines, lists...
  406. * Fixing Case:: Correcting case of last word entered.
  407. * Spelling::    Apply spelling checker to a word, or a whole file.
  408. File: emacs,  Node: Kill Errors,  Next: Transpose,  Up: Fixit
  409. Killing Your Mistakes
  410. =====================
  411. `DEL'
  412.      Delete last character (`delete-backward-char').
  413. `M-DEL'
  414.      Kill last word (`backward-kill-word').
  415. `C-x DEL'
  416.      Kill to beginning of sentence (`backward-kill-sentence').
  417.    The DEL character (`delete-backward-char') is the most important
  418. correction command.  It deletes the character before point.  When DEL
  419. follows a self-inserting character command, you can think of it as
  420. canceling that command.  However, avoid the mistake of thinking of DEL
  421. as a general way to cancel a command!
  422.    When your mistake is longer than a couple of characters, it might be
  423. more convenient to use `M-DEL' or `C-x DEL'.  `M-DEL' kills back to the
  424. start of the last word, and `C-x DEL' kills back to the start of the
  425. last sentence.  `C-x DEL' is particularly useful when you change your
  426. mind about the phrasing of the text you are writing.  `M-DEL' and `C-x
  427. DEL' save the killed text for `C-y' and `M-y' to retrieve.  *Note
  428. Yanking::.
  429.    `M-DEL' is often useful even when you have typed only a few
  430. characters wrong, if you know you are confused in your typing and aren't
  431. sure exactly what you typed.  At such a time, you cannot correct with
  432. DEL except by looking at the screen to see what you did.  Often it
  433. requires less thought to kill the whole word and start again.
  434. File: emacs,  Node: Transpose,  Next: Fixing Case,  Prev: Kill Errors,  Up: Fixit
  435. Transposing Text
  436. ================
  437. `C-t'
  438.      Transpose two characters (`transpose-chars').
  439. `M-t'
  440.      Transpose two words (`transpose-words').
  441. `C-M-t'
  442.      Transpose two balanced expressions (`transpose-sexps').
  443. `C-x C-t'
  444.      Transpose two lines (`transpose-lines').
  445.    The common error of transposing two characters can be fixed, when
  446. they are adjacent, with the `C-t' command (`transpose-chars').
  447. Normally, `C-t' transposes the two characters on either side of point.
  448. When given at the end of a line, rather than transposing the last
  449. character of the line with the newline, which would be useless, `C-t'
  450. transposes the last two characters on the line.  So, if you catch your
  451. transposition error right away, you can fix it with just a `C-t'.  If
  452. you don't catch it so fast, you must move the cursor back to between
  453. the two transposed characters.  If you transposed a space with the last
  454. character of the word before it, the word motion commands are a good
  455. way of getting there.  Otherwise, a reverse search (`C-r') is often the
  456. best way.  *Note Search::.
  457.    `M-t' (`transpose-words') transposes the word before point with the
  458. word after point.  It moves point forward over a word, dragging the
  459. word preceding or containing point forward as well.  The punctuation
  460. characters between the words do not move.  For example, `FOO, BAR'
  461. transposes into `BAR, FOO' rather than `BAR FOO,'.
  462.    `C-M-t' (`transpose-sexps') is a similar command for transposing two
  463. expressions (*note Lists::.), and `C-x C-t' (`transpose-lines')
  464. exchanges lines.  They work like `M-t' except in determining the
  465. division of the text into syntactic units.
  466.    A numeric argument to a transpose command serves as a repeat count:
  467. it tells the transpose command to move the character (word, sexp, line)
  468. before or containing point across several other characters (words,
  469. sexps, lines).  For example, `C-u 3 C-t' moves the character before
  470. point forward across three other characters.  It would change
  471. `f-!-oobar' into `oobf-!-ar'.  This is equivalent to repeating `C-t'
  472. three times.  `C-u - 4 M-t' moves the word before point backward across
  473. four words.  `C-u - C-M-t' would cancel the effect of plain `C-M-t'.
  474.    A numeric argument of zero is assigned a special meaning (because
  475. otherwise a command with a repeat count of zero would do nothing): to
  476. transpose the character (word, sexp, line) ending after point with the
  477. one ending after the mark.
  478. File: emacs,  Node: Fixing Case,  Next: Spelling,  Prev: Transpose,  Up: Fixit
  479. Case Conversion
  480. ===============
  481. `M-- M-l'
  482.      Convert last word to lower case.  Note `Meta--' is Meta-minus.
  483. `M-- M-u'
  484.      Convert last word to all upper case.
  485. `M-- M-c'
  486.      Convert last word to lower case with capital initial.
  487.    A very common error is to type words in the wrong case.  Because of
  488. this, the word case-conversion commands `M-l', `M-u' and `M-c' have a
  489. special feature when used with a negative argument: they do not move the
  490. cursor.  As soon as you see you have mistyped the last word, you can
  491. simply case-convert it and go on typing.  *Note Case::.
  492. File: emacs,  Node: Spelling,  Prev: Fixing Case,  Up: Fixit
  493. Checking and Correcting Spelling
  494. ================================
  495.    This section describes the commands to check the spelling of a single
  496. word or of a portion of a buffer.  These commands work with the spelling
  497. checker program Ispell, which is not part of Emacs.  *Note Ispell: (The
  498. Ispell Manual)Top.
  499. `M-$'
  500.      Check and correct spelling of word at point (`ispell-word').
  501. `M-TAB'
  502.      Complete the word before point based on the spelling dictionary
  503.      (`ispell-complete-word').
  504. `M-x ispell-buffer'
  505.      Check and correct spelling of each word in the buffer.
  506. `M-x ispell-region'
  507.      Check and correct spelling of each word in the region.
  508. `M-x ispell-message'
  509.      Check and correct spelling of each word in a draft mail message,
  510.      excluding cited material.
  511. `M-x ispell-change-dictionary RET DICT RET'
  512.      Restart the ispell process, using DICT as the dictionary.
  513. `M-x ispell-kill-ispell'
  514.      Kill the Ispell subprocess.
  515.    To check the spelling of the word around or next to point, and
  516. optionally correct it as well, use the command `M-$' (`ispell-word').
  517. If the word is not correct, the command offers you various alternatives
  518. for what to do about it.
  519.    To check the entire current buffer, use `M-x ispell-buffer'.  Use
  520. `M-x ispell-region' to check just the current region.  To check
  521. spelling in an email message you are writing, use `M-x ispell-message';
  522. that checks the whole buffer, but does not check material that is
  523. indented or appears to be cited from other messages.
  524.    Each time these commands encounter an incorrect word, they ask you
  525. what to do.  It displays a list of alternatives, usually including
  526. several "near-misses"--words that are close to the word being checked.
  527. Then you must type a character.  Here are the valid responses:
  528. `SPC'
  529.      Skip this word--continue to consider it incorrect, but don't
  530.      change it here.
  531. `r NEW RET'
  532.      Replace the word (just this time) with NEW.
  533. `R NEW RET'
  534.      Replace the word with NEW, and do a `query-replace' so you can
  535.      replace it elsewhere in the buffer if you wish.
  536. `DIGIT'
  537.      Replace the word (just this time) with one of the displayed
  538.      near-misses.  Each near-miss is listed with a digit; type that
  539.      digit to select it.
  540.      Accept the incorrect word--treat it as correct, but only in this
  541.      editing session.
  542.      Accept the incorrect word--treat it as correct, but only in this
  543.      editing session and for this buffer.
  544.      Insert this word in your private dictionary file so that Ispell
  545.      will consider it correct it from now on, even in future sessions.
  546.      Insert a lower-case version of this word in your private dictionary
  547.      file.
  548.      Like `i', but you can also specify dictionary completion
  549.      information.
  550. `l WORD RET'
  551.      Look in the dictionary for words that match WORD.  These words
  552.      become the new list of "near-misses"; you can select one of them to
  553.      replace with by typing a digit.  You can use `*' in WORD as a
  554.      wildcard.
  555. `C-g'
  556.      Quit interactive spell checking.  You can restart it again
  557.      afterward with `C-u M-$'.
  558.      Same as `C-g'.
  559.      Quit interactive spell checking and move point back to where it was
  560.      when you started spell checking.
  561.      Quit interactive spell checking and kill the Ispell subprocess.
  562. `C-l'
  563.      Refresh the screen.
  564. `C-z'
  565.      This key has its normal command meaning (suspend Emacs or iconify
  566.      this frame).
  567.    The command `ispell-complete-word', which is bound to the key
  568. `M-TAB' in Text mode and related modes, shows a list of completions
  569. based on spelling correction.  Insert the beginning of a word, and then
  570. type `M-TAB'; the command displays a completion list window.  To choose
  571. one of the completions listed, click `Mouse-2' on it, or move the
  572. cursor there in the completions window and type RET.  *Note Text Mode::.
  573.    Once started, the Ispell subprocess continues to run (waiting for
  574. something to do), so that subsequent spell checking commands complete
  575. more quickly.  If you want to get rid of the Ispell process, use `M-x
  576. ispell-kill-ispell'.  This is not usually necessary, since the process
  577. uses no time except when you do spelling correction.
  578.    Ispell uses two dictionaries: the standard dictionary and your
  579. private dictionary.  The variable `ispell-dictionary' specifies the file
  580. name of the standard dictionary to use.  A value of `nil' says to use
  581. the default dictionary.  The command `M-x ispell-change-dictionary'
  582. sets this variable and then restarts the Ispell subprocess, so that it
  583. will use a different dictionary.
  584. File: emacs,  Node: Files,  Next: Buffers,  Prev: Fixit,  Up: Top
  585. File Handling
  586. *************
  587.    The operating system stores data permanently in named "files".  So
  588. most of the text you edit with Emacs comes from a file and is ultimately
  589. stored in a file.
  590.    To edit a file, you must tell Emacs to read the file and prepare a
  591. buffer containing a copy of the file's text.  This is called "visiting"
  592. the file.  Editing commands apply directly to text in the buffer; that
  593. is, to the copy inside Emacs.  Your changes appear in the file itself
  594. only when you "save" the buffer back into the file.
  595.    In addition to visiting and saving files, Emacs can delete, copy,
  596. rename, and append to files, keep multiple versions of them, and operate
  597. on file directories.
  598. * Menu:
  599. * File Names::       How to type and edit file name arguments.
  600. * Visiting::         Visiting a file prepares Emacs to edit the file.
  601. * Saving::           Saving makes your changes permanent.
  602. * Reverting::        Reverting cancels all the changes not saved.
  603. * Auto Save::        Auto Save periodically protects against loss of data.
  604. * File Aliases::     Handling multiple names for one file.
  605. * Version Control::  Version control systems (RCS, CVS and SCCS).
  606. * Directories::      Creating, deleting and listing file directories.
  607. * Comparing Files::  Finding where two files differ.
  608. * Misc File Ops::    Other things you can do on files.
  609. * Compressed Files:: Accessing compressed files.
  610. File: emacs,  Node: File Names,  Next: Visiting,  Up: Files
  611. File Names
  612. ==========
  613.    Most Emacs commands that operate on a file require you to specify the
  614. file name.  (Saving and reverting are exceptions; the buffer knows which
  615. file name to use for them.)  You enter the file name using the
  616. minibuffer (*note Minibuffer::.).  "Completion" is available, to make
  617. it easier to specify long file names.  *Note Completion::.
  618.    For most operations, there is a "default file name" which is used if
  619. you type just RET to enter an empty argument.  Normally the default
  620. file name is the name of the file visited in the current buffer; this
  621. makes it easy to operate on that file with any of the Emacs file
  622. commands.
  623.    Each buffer has a default directory, normally the same as the
  624. directory of the file visited in that buffer.  When you enter a file
  625. name without a directory, the default directory is used.  If you specify
  626. a directory in a relative fashion, with a name that does not start with
  627. a slash, it is interpreted with respect to the default directory.  The
  628. default directory is kept in the variable `default-directory', which
  629. has a separate value in every buffer.
  630.    For example, if the default file name is `/u/rms/gnu/gnu.tasks' then
  631. the default directory is `/u/rms/gnu/'.  If you type just `foo', which
  632. does not specify a directory, it is short for `/u/rms/gnu/foo'.
  633. `../.login' would stand for `/u/rms/.login'.  `new/foo' would stand for
  634. the file name `/u/rms/gnu/new/foo'.
  635.    The command `M-x pwd' prints the current buffer's default directory,
  636. and the command `M-x cd' sets it (to a value read using the
  637. minibuffer).  A buffer's default directory changes only when the `cd'
  638. command is used.  A file-visiting buffer's default directory is
  639. initialized to the directory of the file that is visited there.  If you
  640. create a buffer with `C-x b', its default directory is copied from that
  641. of the buffer that was current at the time.
  642.    The default directory actually appears in the minibuffer when the
  643. minibuffer becomes active to read a file name.  This serves two
  644. purposes: it *shows* you what the default is, so that you can type a
  645. relative file name and know with certainty what it will mean, and it
  646. allows you to *edit* the default to specify a different directory.
  647. This insertion of the default directory is inhibited if the variable
  648. `insert-default-directory' is set to `nil'.
  649.    Note that it is legitimate to type an absolute file name after you
  650. enter the minibuffer, ignoring the presence of the default directory
  651. name as part of the text.  The final minibuffer contents may look
  652. invalid, but that is not so.  For example, if the minibuffer starts out
  653. with `/usr/tmp/' and you add `/x1/rms/foo', you get
  654. `/usr/tmp//x1/rms/foo'; but Emacs ignores everything through the first
  655. slash in the double slash; the result is `/x1/rms/foo'.  *Note
  656. Minibuffer File::.
  657.    You can refer to files on other machines using a special file name
  658. syntax:
  659.      /HOST:FILENAME
  660.      /USER@HOST:FILENAME
  661. When you do this, Emacs uses the FTP program to read and write files on
  662. the specified host.  It logs in through FTP using your user name or the
  663. name USER.  It may ask you for a password from time to time; this is
  664. used for logging in on HOST.
  665.    You can turn off the FTP file name feature by setting the variable
  666. `file-name-handler-alist' to `nil'.
  667.    `$' in a file name is used to substitute environment variables.  For
  668. example, if you have used the shell command `export FOO=rms/hacks' to
  669. set up an environment variable named `FOO', then you can use
  670. `/u/$FOO/test.c' or `/u/${FOO}/test.c' as an abbreviation for
  671. `/u/rms/hacks/test.c'.  The environment variable name consists of all
  672. the alphanumeric characters after the `$'; alternatively, it may be
  673. enclosed in braces after the `$'.  Note that shell commands to set
  674. environment variables affect Emacs only if done before Emacs is started.
  675.    To access a file with `$' in its name, type `$$'.  This pair is
  676. converted to a single `$' at the same time as variable substitution is
  677. performed for single `$'.  The Lisp function that performs the
  678. substitution is called `substitute-in-file-name'.  The substitution is
  679. performed only on file names read as such using the minibuffer.
  680. File: emacs,  Node: Visiting,  Next: Saving,  Prev: File Names,  Up: Files
  681. Visiting Files
  682. ==============
  683. `C-x C-f'
  684.      Visit a file (`find-file').
  685. `C-x C-r'
  686.      Visit a file for viewing, without allowing changes to it
  687.      (`find-file-read-only').
  688. `C-x C-v'
  689.      Visit a different file instead of the one visited last
  690.      (`find-alternate-file').
  691. `C-x 4 C-f'
  692.      Visit a file, in another window (`find-file-other-window').  Don't
  693.      change the selected window.
  694. `C-x 5 C-f'
  695.      Visit a file, in a new frame (`find-file-other-frame').  Don't
  696.      change the selected frame.
  697. `M-x auto-compression-mode'
  698.      Toggle automatic uncompression and recompression for compressed
  699.      files.
  700.    "Visiting" a file means copying its contents into an Emacs buffer so
  701. you can edit them.  Emacs makes a new buffer for each file that you
  702. visit.  We say that this buffer is visiting the file that it was created
  703. to hold.  Emacs constructs the buffer name from the file name by
  704. throwing away the directory, keeping just the name proper.  For example,
  705. a file named `/usr/rms/emacs.tex' would get a buffer named `emacs.tex'.
  706. If there is already a buffer with that name, a unique name is
  707. constructed by appending `<2>', `<3>', or so on, using the lowest
  708. number that makes a name that is not already in use.
  709.    Each window's mode line shows the name of the buffer that is being
  710. displayed in that window, so you can always tell what buffer you are
  711. editing.
  712.    The changes you make with editing commands are made in the Emacs
  713. buffer.  They do not take effect in the file that you visited, or any
  714. place permanent, until you "save" the buffer.  Saving the buffer means
  715. that Emacs writes the current contents of the buffer into its visited
  716. file.  *Note Saving::.
  717.    If a buffer contains changes that have not been saved, we say the
  718. buffer is "modified".  This is important because it implies that some
  719. changes will be lost if the buffer is not saved.  The mode line
  720. displays two stars near the left margin to indicate that the buffer is
  721. modified.
  722.    To visit a file, use the command `C-x C-f' (`find-file').  Follow
  723. the command with the name of the file you wish to visit, terminated by a
  724.    The file name is read using the minibuffer (*note Minibuffer::.),
  725. with defaulting and completion in the standard manner (*note File
  726. Names::.).  While in the minibuffer, you can abort `C-x C-f' by typing
  727. `C-g'.
  728.    Your confirmation that `C-x C-f' has completed successfully is the
  729. appearance of new text on the screen and a new buffer name in the mode
  730. line.  If the specified file does not exist and could not be created, or
  731. cannot be read, then you get an error, with an error message displayed
  732. in the echo area.
  733.    If you visit a file that is already in Emacs, `C-x C-f' does not make
  734. another copy.  It selects the existing buffer containing that file.
  735. However, before doing so, it checks that the file itself has not changed
  736. since you visited or saved it last.  If the file has changed, a warning
  737. message is printed.  *Note Simultaneous Editing: Interlocking.
  738.    What if you want to create a new file?  Just visit it.  Emacs prints
  739. `(New File)' in the echo area, but in other respects behaves as if you
  740. had visited an existing empty file.  If you make any changes and save
  741. them, the file is created.
  742.    If the file you specify is actually a directory, `C-x C-f' invokes
  743. Dired, the Emacs directory browser so that you can "edit" the contents
  744. of the directory (*note Dired::.).  Dired is a convenient way to delete,
  745. look at, or operate on the files in the directory.  However, if the
  746. variable `find-file-run-dired' is `nil', then it is an error to try to
  747. visit a directory.
  748.    If you visit a file that the operating system won't let you modify,
  749. Emacs makes the buffer read-only, so that you won't go ahead and make
  750. changes that you'll have trouble saving afterward.  You can make the
  751. buffer writable with `C-x C-q' (`vc-toggle-read-only').  *Note Misc
  752. Buffer::.
  753.    Occasionally you might want to visit a file as read-only in order to
  754. protect yourself from entering changes accidentally; do so by visiting
  755. the file with the command `C-x C-r' (`find-file-read-only').
  756.    If you visit a nonexistent file unintentionally (because you typed
  757. the wrong file name), use the `C-x C-v' command (`find-alternate-file')
  758. to visit the file you really wanted.  `C-x C-v' is similar to `C-x
  759. C-f', but it kills the current buffer (after first offering to save it
  760. if it is modified).  When it reads the file name to visit, it inserts
  761. the entire default file name in the buffer, with point just after the
  762. directory part; this is convenient if you made a slight error in typing
  763. the name.
  764.    `C-x 4 f' (`find-file-other-window') is like `C-x C-f' except that
  765. the buffer containing the specified file is selected in another window.
  766. The window that was selected before `C-x 4 f' continues to show the
  767. same buffer it was already showing.  If this command is used when only
  768. one window is being displayed, that window is split in two, with one
  769. window showing the same buffer as before, and the other one showing the
  770. newly requested file.  *Note Windows::.
  771.    `C-x 5 f' (`find-file-other-frame') is similar, but opens a new
  772. frame, or makes visible any existing frame showing the file you seek.
  773. This feature is available only when you are using a window system.
  774. *Note Frames::.
  775.    Two special hook variables allow extensions to modify the operation
  776. of visiting files.  Visiting a file that does not exist runs the
  777. functions in the list `find-file-not-found-hooks'; this variable holds
  778. a list of functions, and the functions are called one by one until one
  779. of them returns non-`nil'.  Any visiting of a file, whether extant or
  780. not, expects `find-file-hooks' to contain a list of functions and calls
  781. them all, one by one.  In both cases the functions receive no
  782. arguments.  Of these two variables, `find-file-not-found-hooks' takes
  783. effect first.  These variables are *not* normal hooks, and their names
  784. end in `-hooks' rather than `-hook' to indicate that fact.  *Note
  785. Hooks::.
  786.    The command `M-x auto-compression-mode' toggles a mode in which
  787. visiting a compressed file automatically uncompresses it.  (Editing the
  788. file and saving it automatically recompresses it.)
  789.    There are several ways to specify automatically the major mode for
  790. editing the file (*note Choosing Modes::.), and to specify local
  791. variables defined for that file (*note File Variables::.).
  792. File: emacs,  Node: Saving,  Next: Reverting,  Prev: Visiting,  Up: Files
  793. Saving Files
  794. ============
  795.    "Saving" a buffer in Emacs means writing its contents back into the
  796. file that was visited in the buffer.
  797. `C-x C-s'
  798.      Save the current buffer in its visited file (`save-buffer').
  799. `C-x s'
  800.      Save any or all buffers in their visited files
  801.      (`save-some-buffers').
  802. `M-~'
  803.      Forget that the current buffer has been changed (`not-modified').
  804. `C-x C-w'
  805.      Save the current buffer in a specified file (`write-file').
  806. `M-x set-visited-file-name'
  807.      Change file the name under which the current buffer will be saved.
  808.    When you wish to save the file and make your changes permanent, type
  809. `C-x C-s' (`save-buffer').  After saving is finished, `C-x C-s'
  810. displays a message like this:
  811.      Wrote /u/rms/gnu/gnu.tasks
  812. If the selected buffer is not modified (no changes have been made in it
  813. since the buffer was created or last saved), saving is not really done,
  814. because it would have no effect.  Instead, `C-x C-s' displays a message
  815. like this in the echo area:
  816.      (No changes need to be saved)
  817.    The command `C-x s' (`save-some-buffers') offers to save any or all
  818. modified buffers.  It asks you what to do with each buffer.  The
  819. possible responses are analogous to those of `query-replace':
  820.      Save this buffer and ask about the rest of the buffers.
  821.      Don't save this buffer, but ask about the rest of the buffers.
  822.      Save this buffer and all the rest with no more questions.
  823. `RET'
  824.      Terminate `save-some-buffers' without any more saving.
  825.      Save this buffer, then exit `save-some-buffers' without even asking
  826.      about other buffers.
  827. `C-r'
  828.      View the buffer that you are currently being asked about.  When
  829.      you exit View mode, you get back to `save-some-buffers', which
  830.      asks the question again.
  831. `C-h'
  832.      Display a help message about these options.
  833.    `C-x C-c', the key sequence to exit Emacs, invokes
  834. `save-some-buffers' and therefore asks the same questions.
  835.    If you have changed a buffer but you do not want to save the changes,
  836. you should take some action to prevent it.  Otherwise, each time you use
  837. `C-x s' or `C-x C-c', you are liable to save this buffer by mistake.
  838. One thing you can do is type `M-~' (`not-modified'), which clears out
  839. the indication that the buffer is modified.  If you do this, none of
  840. the save commands will believe that the buffer needs to be saved.  (`~'
  841. is often used as a mathematical symbol for `not'; thus `M-~' is `not',
  842. metafied.)  You could also use `set-visited-file-name' (see below) to
  843. mark the buffer as visiting a different file name, one which is not in
  844. use for anything important.  Alternatively, you can cancel all the
  845. changes made since the file was visited or saved, by reading the text
  846. from the file again.  This is called "reverting".  *Note Reverting::.
  847. You could also undo all the changes by repeating the undo command `C-x
  848. u' until you have undone all the changes; but reverting is easier.
  849.    `M-x set-visited-file-name' alters the name of the file that the
  850. current buffer is visiting.  It reads the new file name using the
  851. minibuffer.  Then it specifies the visited file name and changes the
  852. buffer name correspondingly (as long as the new name is not in use).
  853. `set-visited-file-name' does not save the buffer in the newly visited
  854. file; it just alters the records inside Emacs in case you do save
  855. later.  It also marks the buffer as "modified" so that `C-x C-s' in
  856. that buffer *will* save.
  857.    If you wish to mark the buffer as visiting a different file and save
  858. it right away, use `C-x C-w' (`write-file').  It is precisely
  859. equivalent to `set-visited-file-name' followed by `C-x C-s'.  `C-x C-s'
  860. used on a buffer that is not visiting with a file has the same effect
  861. as `C-x C-w'; that is, it reads a file name, marks the buffer as
  862. visiting that file, and saves it there.  The default file name in a
  863. buffer that is not visiting a file is made by combining the buffer name
  864. with the buffer's default directory.
  865.    If Emacs is about to save a file and sees that the date of the latest
  866. version on disk does not match what Emacs last read or wrote, Emacs
  867. notifies you of this fact, because it probably indicates a problem
  868. caused by simultaneous editing and requires your immediate attention.
  869. *Note Simultaneous Editing: Interlocking.
  870.    If the variable `require-final-newline' is non-`nil', Emacs puts a
  871. newline at the end of any file that doesn't already end in one, every
  872. time a file is saved or written.
  873. * Menu:
  874. * Backup::        How Emacs saves the old version of your file.
  875. * Interlocking::  How Emacs protects against simultaneous editing
  876.                     of one file by two users.
  877.