diff options
| author | Richard M. Stallman | 2005-02-25 13:45:59 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-02-25 13:45:59 +0000 |
| commit | a751f299868ee27997734432994d067405b14bc4 (patch) | |
| tree | bb25e37543d0649cf2074d50f94f15c4e082d95a | |
| parent | a0b497c53be2edd8140e4e61fa455f2c051aa66f (diff) | |
| download | emacs-a751f299868ee27997734432994d067405b14bc4.tar.gz emacs-a751f299868ee27997734432994d067405b14bc4.zip | |
(Fixit): Mention C-/ for undo.
(Spelling): Mention ESC TAB like M-TAB.
Replacement words with r and R are rechecked.
Say where C-g leaves point. Mention ? as input.
| -rw-r--r-- | man/fixit.texi | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/man/fixit.texi b/man/fixit.texi index 0982b0856ef..104297b974e 100644 --- a/man/fixit.texi +++ b/man/fixit.texi | |||
| @@ -11,12 +11,12 @@ the times when you catch a mistake in your text just after you have made | |||
| 11 | it, or change your mind while composing text on the fly. | 11 | it, or change your mind while composing text on the fly. |
| 12 | 12 | ||
| 13 | The most fundamental command for correcting erroneous editing is the | 13 | The most fundamental command for correcting erroneous editing is the |
| 14 | undo command, @kbd{C-x u} or @kbd{C-_}. This command undoes a single | 14 | undo command, @kbd{C-x u} or @kbd{C-_} or @kbd{C-/}. This command |
| 15 | command (usually), a part of a command (in the case of | 15 | undoes a single command (usually), a part of a command (in the case of |
| 16 | @code{query-replace}), or several consecutive self-inserting characters. | 16 | @code{query-replace}), or several consecutive self-inserting |
| 17 | Consecutive repetitions of @kbd{C-_} or @kbd{C-x u} undo earlier and | 17 | characters. Consecutive repetitions of the undo command undo earlier |
| 18 | earlier changes, back to the limit of the undo information available. | 18 | and earlier changes, back to the limit of the undo information |
| 19 | @xref{Undo}, for more information. | 19 | available. @xref{Undo}, for more information. |
| 20 | 20 | ||
| 21 | @menu | 21 | @menu |
| 22 | * Kill Errors:: Commands to kill a batch of recently entered text. | 22 | * Kill Errors:: Commands to kill a batch of recently entered text. |
| @@ -164,6 +164,7 @@ Enable Flyspell mode for comments and strings only. | |||
| 164 | @item M-$ | 164 | @item M-$ |
| 165 | Check and correct spelling of the word at point (@code{ispell-word}). | 165 | Check and correct spelling of the word at point (@code{ispell-word}). |
| 166 | @item M-@key{TAB} | 166 | @item M-@key{TAB} |
| 167 | @itemx @key{ESC} @key{TAB} | ||
| 167 | Complete the word before point based on the spelling dictionary | 168 | Complete the word before point based on the spelling dictionary |
| 168 | (@code{ispell-complete-word}). | 169 | (@code{ispell-complete-word}). |
| 169 | @item M-x ispell | 170 | @item M-x ispell |
| @@ -239,11 +240,13 @@ Skip this word---continue to consider it incorrect, but don't change it | |||
| 239 | here. | 240 | here. |
| 240 | 241 | ||
| 241 | @item r @var{new} @key{RET} | 242 | @item r @var{new} @key{RET} |
| 242 | Replace the word (just this time) with @var{new}. | 243 | Replace the word (just this time) with @var{new}. (The replacement |
| 244 | string will be rescanned for more spelling errors.) | ||
| 243 | 245 | ||
| 244 | @item R @var{new} @key{RET} | 246 | @item R @var{new} @key{RET} |
| 245 | Replace the word with @var{new}, and do a @code{query-replace} so you | 247 | Replace the word with @var{new}, and do a @code{query-replace} so you |
| 246 | can replace it elsewhere in the buffer if you wish. | 248 | can replace it elsewhere in the buffer if you wish. (The replacements |
| 249 | will be rescanned for more spelling errors.) | ||
| 247 | 250 | ||
| 248 | @item @var{digit} | 251 | @item @var{digit} |
| 249 | Replace the word (just this time) with one of the displayed | 252 | Replace the word (just this time) with one of the displayed |
| @@ -277,8 +280,9 @@ the replacement by typing a digit. You can use @samp{*} in @var{word} as a | |||
| 277 | wildcard. | 280 | wildcard. |
| 278 | 281 | ||
| 279 | @item C-g | 282 | @item C-g |
| 280 | Quit interactive spell checking. You can restart it again afterward | 283 | Quit interactive spell checking, leaving point at the word that was |
| 281 | with @kbd{C-u M-$}. | 284 | being checked. You can restart checking again afterward with @kbd{C-u |
| 285 | M-$}. | ||
| 282 | 286 | ||
| 283 | @item X | 287 | @item X |
| 284 | Same as @kbd{C-g}. | 288 | Same as @kbd{C-g}. |
| @@ -296,6 +300,9 @@ Refresh the screen. | |||
| 296 | @item C-z | 300 | @item C-z |
| 297 | This key has its normal command meaning (suspend Emacs or iconify this | 301 | This key has its normal command meaning (suspend Emacs or iconify this |
| 298 | frame). | 302 | frame). |
| 303 | |||
| 304 | @item ? | ||
| 305 | Show the list of options. | ||
| 299 | @end table | 306 | @end table |
| 300 | 307 | ||
| 301 | @findex ispell-complete-word | 308 | @findex ispell-complete-word |