From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: gebser@speakeasy.net Newsgroups: gmane.emacs.help Subject: Re: Flyspell: correcting words Date: Mon, 26 Jan 2004 07:36:44 -0500 (EST) Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: Reply-To: gebser@speakeasy.net NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: sea.gmane.org 1075121128 30146 80.91.224.253 (26 Jan 2004 12:45:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 26 Jan 2004 12:45:28 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 26 13:45:18 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1Al67B-0006YV-00 for ; Mon, 26 Jan 2004 13:45:18 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1Al665-00082P-Jj for geh-help-gnu-emacs@m.gmane.org; Mon, 26 Jan 2004 07:44:09 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1Al657-00081L-NF for help-gnu-emacs@gnu.org; Mon, 26 Jan 2004 07:43:09 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1Al64b-0007rM-AL for help-gnu-emacs@gnu.org; Mon, 26 Jan 2004 07:43:08 -0500 Original-Received: from [216.254.0.206] (helo=mail6.speakeasy.net) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1Al5z1-0006Gp-S2 for help-gnu-emacs@gnu.org; Mon, 26 Jan 2004 07:36:51 -0500 Original-Received: (qmail 18224 invoked from network); 26 Jan 2004 12:36:50 -0000 Original-Received: from dsl093-011-017.cle1.dsl.speakeasy.net (HELO heidegger.mousecar.net) ([66.93.11.17]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 26 Jan 2004 12:36:50 -0000 Original-To: help-gnu-emacs@gnu.org In-Reply-To: X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:16361 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:16361 When I do "M-x flyspell-auto-correct-word" a number of alternative spellings are offered in the minibuffer, but I don't know how to select a correction from these, nor is it apparent how to create my own correction. tnx for the reply, ken At 17:44 (UTC-0000) on Mon, 19 Jan 2004 Kester Clegg said: = gebser@speakeasy.net writes: = = > When, in flyspell-mode, I "M-x flyspell-correct-word", emacs replies = > "flyspell-correct-word must be bound to an event with parameters". = = Maybe you want to quickly auto-correct? If so, you can easily bind that = function to a key press: = = ;; correct and expand last bad word = (global-set-key (kbd "") 'flyspell-auto-correct-word) = = This works surprisingly well for simple typos. = =