From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Korty Subject: Re: flyspell delay in org-mode Date: Sun, 4 Mar 2007 02:04:58 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HNgBH-000848-0F for emacs-orgmode@gnu.org; Sat, 03 Mar 2007 21:10:35 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HNgBF-00083t-8g for emacs-orgmode@gnu.org; Sat, 03 Mar 2007 21:10:34 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HNgBF-00083q-2S for emacs-orgmode@gnu.org; Sat, 03 Mar 2007 21:10:33 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1HNgBE-0004Po-KZ for emacs-orgmode@gnu.org; Sat, 03 Mar 2007 21:10:32 -0500 Received: from root by ciao.gmane.org with local (Exim 4.43) id 1HNgAk-0000bK-MP for emacs-orgmode@gnu.org; Sun, 04 Mar 2007 03:10:11 +0100 Received: from c-68-58-130-131.hsd1.in.comcast.net ([c-68-58-130-131.hsd1.in.comcast.net]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 04 Mar 2007 03:10:02 +0100 Received: from ajk by c-68-58-130-131.hsd1.in.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 04 Mar 2007 03:10:02 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Vinod Valsalam gmail.com> writes: > When using flyspell with org-mode, it seems to be spell checking on partially > typed words without any delay. This is affecting responsiveness of emacs > while typing. Has anyone else experienced this problem, and if so, does > anyone have a solution? flyspell delays checking after commands listed in `flyspell-default-delayed-commands' and `flyspell-delayed-commands'. The default value of the former is (self-insert-command delete-backward-char backward-or-forward-delete-char delete-char scrollbar-vertical-drag) But org-mode seems to use its own replacements for many of those functions. So I defined the latter variable as (org-self-insert-command org-delete-backward-char org-backward-or-forward-delete-char org-delete-char) and flyspell behaves as expected. --ajk