From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alan Ristow Newsgroups: gmane.emacs.help Subject: Re: emacs ispell / flyspell Date: Wed, 02 Jan 2008 12:08:58 -0500 Message-ID: References: <4775cbfc$0$90265$14726298@news.sunsite.dk> <477a2caf$0$90262$14726298@news.sunsite.dk> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Trace: ger.gmane.org 1199308469 16829 80.91.229.12 (2 Jan 2008 21:14:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 2 Jan 2008 21:14:29 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 02 22:14:47 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 1JAAvG-0002gF-DL for geh-help-gnu-emacs@m.gmane.org; Wed, 02 Jan 2008 22:14:46 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JAAuu-0003vj-9L for geh-help-gnu-emacs@m.gmane.org; Wed, 02 Jan 2008 16:14:24 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!news1.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!news.giganews.com.POSTED!not-for-mail Original-NNTP-Posting-Date: Wed, 02 Jan 2008 11:08:58 -0600 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.8.1.9) Gecko/20071031 Thunderbird/2.0.0.9 Mnenhy/0.7.5.0 Original-Newsgroups: comp.text.tex,gnu.emacs.help In-Reply-To: <477a2caf$0$90262$14726298@news.sunsite.dk> Original-Lines: 49 X-Usenet-Provider: http://www.giganews.com Original-X-Trace: sv3-nVvV2NUqiIgcNHYRM5UeWsEI9Vl3PL3ZCGo96s7ugp9rRQYklvIx9RC9UMUObQPJrwn8jKSBcskkyI5!M7TL1z+js74GJHjxDfMnnRlZ7pu6Kkj9C99Ig3KCuBSh+vFJ3191nVDL7lOG5/zy0jqiMsLqUg== Original-X-Complaints-To: abuse@giganews.com X-DMCA-Notifications: http://www.giganews.com/info/dmca.html X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.37 Original-Xref: shelby.stanford.edu comp.text.tex:364352 gnu.emacs.help:155015 X-Mailman-Approved-At: Wed, 02 Jan 2008 16:14:09 -0500 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:50441 Archived-At: Martin Jørgensen wrote: > Martin Jørgensen wrote: >> Q1) Is it possible to avoid ispell entering latex environments, >> thereby avoiding errors such as on the word "subfigure" and similar >> latex-commands (there are *many errors* from these "special words")? >> Is it also possible to avoid getting spelling errors for instance >> inside \ref{THIS_IS_ON_PURPOSE_SPELLED_WRONG} or >> \label{something_here_too}? >> >> If yes: Please tell me how. >> >> >> Q2) This is perhaps trivial, but whenever I write latex-documents, I >> would like to enable flyspell mode from the beginning without having >> to type M-x flyspell. I googled for a solution and found a reply from >> 1999: >> >> ---------- >> Try `M-x ispell-minor-mode RET'. This will automatically spell each >> word as soon as you type SPC or RET. >> >> Another possibility is the flyspell package (`M-x flyspell RET', I >> think). I don't know if it works with XEmacs. >> ----------- >> >> But how do I put that into my .emacs, in relation to question 2? >> >> This post is X-posted to comp.text.tex and gnu.emacs.help. > > hmmm. No answer. I use Aspell, so I can't help with the first question, but here's what's in my .emacs to activate flyspell: ;; Setup Aspell and turn on flyspell mode (setq-default ispell-program-name "aspell") (setq-default ispell-extra-args '("--mode=tex")) (setq-default ispell-extra-args '("--personal=custom_dict.rws")) (add-hook 'LaTeX-mode-hook 'flyspell-mode) > Where else can I post these 2 questions? I sometimes saw David Kastrup > in here answering something clever on this kind of problems. > > Is there an auctex user group, developers forum or similar place where I > can ask whether or not I just have to live with this behaviour? You can access an auctex newgroup via gmane -- see gmane.org. Alan