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 23:45:20 -0400 Message-ID: <87wrhosmcv.fsf@norang.ca> References: <553581.47710.qm@web32001.mail.mud.yahoo.com> <8762p8ss7b.fsf@norang.ca> <5308.1305690002@alphaville.dokosmarshall.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:48804) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QMXhN-0004PI-DI for emacs-orgmode@gnu.org; Tue, 17 May 2011 23:45:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QMXhM-00006x-Cp for emacs-orgmode@gnu.org; Tue, 17 May 2011 23:45:25 -0400 Received: from mho-04-ewr.mailhop.org ([204.13.248.74]:16669 helo=mho-02-ewr.mailhop.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QMXhM-00006q-8f for emacs-orgmode@gnu.org; Tue, 17 May 2011 23:45:24 -0400 In-Reply-To: <5308.1305690002@alphaville.dokosmarshall.org> (Nick Dokos's message of "Tue, 17 May 2011 23:40:02 -0400") 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: nicholas.dokos@hp.com Cc: emacs-orgmode@gnu.org, "Mark S." Nick Dokos writes: > Bernt Hansen wrote: > >> "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. >> >> 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) >> > > Isn't this the same as setting line-move-visual to nil? Just pretend > it's an org-mode option. Could be :) I didn't find any details about that var when I looked at the docstrings for the functions involved. Thanks for pointing that out. -Bernt