Difference between revisions of "Flyspell-mode"
Jump to navigation
Jump to search
(added basic flyspell page) |
|||
Line 21: | Line 21: | ||
; {{CommandKeys|M-$| ispell-word}} | ; {{CommandKeys|M-$| ispell-word}} | ||
: correct a word using ispell | : correct a word using ispell | ||
+ | |||
+ | ; {{Command|flyspell-auto-correct-word}} | ||
+ | : automatically corrects the current word | ||
+ | |||
+ | ; {{Command|flyspell-auto-correct-previous-word}} | ||
+ | : automatically corrects the previous word | ||
+ | |||
+ | ; {{Command|flyspell-correct-word}} | ||
+ | : display a popup with correct word suggestions | ||
+ | |||
+ | ; {{Command|flyspell-region}} | ||
+ | : runs flyspell on the selected region | ||
+ | |||
+ | ; {{Command|flyspell-buffer}} | ||
+ | : runs flyspell on the current buffer | ||
== Common Customization == | == Common Customization == |
Revision as of 15:15, 10 April 2012
Description | minor spell checking mode |
---|---|
Author | Manuel Serrano |
Maintainer | FSF |
Source | http://bzr.savannah.gnu.org/lh/emacs/emacs-24/annotate/head:/lisp/textmodes/flyspell.el |
Part of Emacs | yes |
flyspell-mode' Minor mode performing on-the-fly spelling checking. This spawns a single Ispell process and checks each word. The default flyspell behavior is to highlight incorrect words.
Basic setup
(require 'flyspell)
(flyspell-mode +1)
Helpful keybindings
- [M-$] (or M-x ispell-word)
- correct a word using ispell
- M-x flyspell-auto-correct-word
- automatically corrects the current word
- M-x flyspell-auto-correct-previous-word
- automatically corrects the previous word
- M-x flyspell-correct-word
- display a popup with correct word suggestions
- M-x flyspell-region
- runs flyspell on the selected region
- M-x flyspell-buffer
- runs flyspell on the current buffer