On Mon, Dec 26, 2022 at 7:03 AM Max Nikulin wrote:
> On 24/12/2022 09:43, Peter Mao wrote:
> > The following commands are missing from the manual!
> >
> > org-forward-element
> > org-backward-element
>
> I think, the manual was written with assumption that Emacs users are
> familiar with C-up, M-
On 24/12/2022 09:43, Peter Mao wrote:
The following commands are missing from the manual!
org-forward-element
org-backward-element
I think, the manual was written with assumption that Emacs users are
familiar with C-up, M-{, C-down, M-} keystrokes.
These two should be mentioned in the manu
Also, it moves you to an outer level if you are at an end.
For my own use, because I want the command to treat the first item in a
list the same way as the others (when moving forward), I tweaked
org-forward-element from
(let* ((elem (org-element-at-point))
to:
(let* ((elem (progn
Marcin Borkowski writes:
>> org-forward-element
>> org-backward-element
>>
>> These two should be mentioned in the manual in section 2.3 "Motion"
>
> How are they different from `org-forward-heading-same-level` and
> `org-backward-heading-same-level'? (Not irony etc., I'm genuinely
> curious.)
On 2022-12-24, at 03:43, Peter Mao wrote:
> Dear maintainers,
>
> The following commands are missing from the manual!
>
> org-forward-element
> org-backward-element
>
> These two should be mentioned in the manual in section 2.3 "Motion"
How are they different from `org-forward-heading-same-lev