emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] [PATCH] Make org-[beginning|end]-of-line respect visual-line-mod


From: Nicolas Goaziou
Subject: Re: [O] [PATCH] Make org-[beginning|end]-of-line respect visual-line-mode
Date: Tue, 06 Nov 2012 18:46:27 +0100

Toby Cubitt <address@hidden> writes:

> Aha! You may well be right. In which case why is `org-beginning-of-line'
> doing this:
>
>   (if (org-bound-and-true-p line-move-visual)
>       (beginning-of-visual-line 1)
>     (beginning-of-line 1))
>
> Shouldn't it be doing this instead?
>
>   (if (org-bound-and-true-p visual-line-mode)
>       (beginning-of-visual-line 1)
>     (beginning-of-line 1))

Indeed. Do you want to provide a patch (you get bonus points for
regression tests)?

Regards,



reply via email to

[Prev in Thread] Current Thread [Next in Thread]