From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Ctl-E doesn't go to end of line? Date: Tue, 17 May 2011 21:39:04 -0400 Message-ID: <8762p8ss7b.fsf@norang.ca> References: <553581.47710.qm@web32001.mail.mud.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55476) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QMVjA-0000Mt-P5 for emacs-orgmode@gnu.org; Tue, 17 May 2011 21:39:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QMVj9-00058O-9L for emacs-orgmode@gnu.org; Tue, 17 May 2011 21:39:08 -0400 Received: from mho-03-ewr.mailhop.org ([204.13.248.66]:57879 helo=mho-01-ewr.mailhop.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QMVj9-00058K-7e for emacs-orgmode@gnu.org; Tue, 17 May 2011 21:39:07 -0400 In-Reply-To: <553581.47710.qm@web32001.mail.mud.yahoo.com> (Mark S.'s message of "Tue, 17 May 2011 18:26:21 -0700 (PDT)") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Mark S." Cc: emacs-orgmode@gnu.org "Mark S." writes: > Hi Bernt, > > Thanks for pointing that out. > > However, I'm not on an item line nor a header line, so those settings > should not apply. But even when I changed my line to an item, and then > tried the settings "t" and "reversed", it still wouldn't hop to the > end of the line in one go. In fact, if the line is long enough, I may > have to hit Ctl-E several times. So is something broken, or is there > some other incantation? > Sorry Mark, I just tried it on a headline only. C-e invokes end-of-visual-line and there seems to be no way to turn that off as a option. The following patch disables this behaviour permanently but it should probably be turned into an option in org-mode preserving the current behaviour as the default. --8<---------------cut here---------------start------------->8--- Modified lisp/org.el diff --git a/lisp/org.el b/lisp/org.el index 975266c..af57d54 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -19495,8 +19495,7 @@ beyond the end of the headline." (not (org-on-heading-p)) arg) (call-interactively - (cond ((org-bound-and-true-p line-move-visual) 'end-of-visual-line) - ((fboundp 'move-end-of-line) 'move-end-of-line) + (cond ((fboundp 'move-end-of-line) 'move-end-of-line) (t 'end-of-line))) (let ((pos (point))) (beginning-of-line 1) --8<---------------cut here---------------end--------------->8--- Regards, Bernt