From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Right click on link bug Date: Sun, 18 Mar 2007 23:55:44 +0100 Message-ID: References: Mime-Version: 1.0 (Apple Message framework v624) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HT4JQ-0004AR-Lf for emacs-orgmode@gnu.org; Sun, 18 Mar 2007 18:57:16 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HT4JP-00047W-1k for emacs-orgmode@gnu.org; Sun, 18 Mar 2007 18:57:16 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HT4JO-00047N-Ue for emacs-orgmode@gnu.org; Sun, 18 Mar 2007 17:57:14 -0500 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HT4I0-0005uW-Jc for emacs-orgmode@gnu.org; Sun, 18 Mar 2007 18:55:48 -0400 In-Reply-To: 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: Leo Cc: emacs-orgmode@gnu.org On Mar 18, 2007, at 22:46, Leo wrote: > > For example, if I have an internal link [[* MFE][MFE]], mouse1 won't > bring it to the right place. This is when it is rather inconvenient. I guess this could be a start: (defun org-flyspell-predicate () (not (org-at-regexp-p org-bracket-link-regexp))) (add-hook 'org-mode-hook (lambda () (setq flyspell-generic-check-word-predicate 'org-flyspell-predicate))) - Carsten