From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: weber Newsgroups: gmane.emacs.help Subject: Re: extract flyspell errors to abbrev list Date: Fri, 16 May 2008 13:10:04 -0700 (PDT) Organization: http://groups.google.com Message-ID: <3dbcfc60-c37b-4546-90e4-507f525f2acb@d45g2000hsc.googlegroups.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1210970451 14354 80.91.229.12 (16 May 2008 20:40:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 16 May 2008 20:40:51 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri May 16 22:41:28 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Jx6k3-0007QG-Pg for geh-help-gnu-emacs@m.gmane.org; Fri, 16 May 2008 22:41:28 +0200 Original-Received: from localhost ([127.0.0.1]:46659 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Jx6jK-0005w9-C3 for geh-help-gnu-emacs@m.gmane.org; Fri, 16 May 2008 16:40:42 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!d45g2000hsc.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 23 Original-NNTP-Posting-Host: 201.21.216.108 Original-X-Trace: posting.google.com 1210968605 23594 127.0.0.1 (16 May 2008 20:10:05 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Fri, 16 May 2008 20:10:05 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: d45g2000hsc.googlegroups.com; posting-host=201.21.216.108; posting-account=7GrjgQoAAAD6slWURausdJnhFDkmQYC8 User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9pre) Gecko/2008050409,gzip(gfe),gzip(gfe) X-HTTP-Via: 1.1 stargate.datacom:3128 (squid/2.6.STABLE5) Original-Xref: news.stanford.edu gnu.emacs.help:158714 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:54080 Archived-At: On May 16, 1:36=A0pm, Fabian Braennstroem wrote: > Hi, > > =A0 =A0 I am writing a lot of text in German using > =A0 =A0 auctex-cdlatex and flyspell, which works fine, except > =A0 =A0 that I use an american keyboard layout and have trouble > =A0 =A0 to insert German umlaute. Actually I just want to type > =A0 =A0 the american work-around like 'ae' for '=E4' and replace > =A0 =A0 it using abbrevs. The problem with this is that I would > =A0 =A0 have to create an abbrev for every german word with > =A0 =A0 umlaute... so, is there a way to let abbrev lern from > =A0 =A0 the displayed mistakes of flyspell? Or is there another > =A0 =A0 nice way to create umlaute without switching the > =A0 =A0 keyboard? > > Greetings! > =A0Fabian What about adding a key combo for inserting =E4 ? (global-set-key (kbd "M-a") (lambda () (interactive) (insert "=E4"))) Cheers Hugo