From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Right click on link bug Date: Tue, 20 Mar 2007 17:18:01 +0100 Message-ID: <298107ce0840fde4204b6274d3a4f4a3@science.uva.nl> 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 1HTi7I-0006Dc-Vr for emacs-orgmode@gnu.org; Tue, 20 Mar 2007 13:27:25 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HTi7H-0006DK-Ha for emacs-orgmode@gnu.org; Tue, 20 Mar 2007 13:27:24 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HTi7H-0006DH-BE for emacs-orgmode@gnu.org; Tue, 20 Mar 2007 12:27:23 -0500 Received: from korteweg.uva.nl ([146.50.98.70]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HTi5g-0001Xb-Fd for emacs-orgmode@gnu.org; Tue, 20 Mar 2007 13:25:44 -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 Org-mode 4.69 will have a modified version built-in, so please remove this setup when switching to the next version. - Carsten On Mar 20, 2007, at 13:52, Leo wrote: > On 2007-03-18, Carsten Dominik said: > >> 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 > > This fixed the internal link problem mentioned above. Thanks.