Nicolas Goaziou writes:
> Robert Pluim writes:
>
>> It does call 'end-of-line'. If thatʼs the intended semantics, itʼs not
>> entirely clear from the docstring (and I will adjust my code).
>
> The first sentence is:
>
> Go to the end of line, but before ellipsis, if any.
>
> If you think that'
Robert Pluim writes:
> It does call 'end-of-line'. If thatʼs the intended semantics, itʼs not
> entirely clear from the docstring (and I will adjust my code).
The first sentence is:
Go to the end of line, but before ellipsis, if any.
If you think that's ambiguous, would you want to suggest a
Nicolas Goaziou writes:
> Robert Pluim writes:
>
>> I was under the impression that 'org-end-of-line' is intended to do
>> something only when in a heading, since it does:
>>
>> (looking-at org-complex-heading-regexp)))
>>
>> hence my patch to make it not do anything in tables.
>
> I
Robert Pluim writes:
> I was under the impression that 'org-end-of-line' is intended to do
> something only when in a heading, since it does:
>
> (looking-at org-complex-heading-regexp)))
>
> hence my patch to make it not do anything in tables.
It is meant to do something special on
Nicolas Goaziou writes:
> Hello,
>
> Robert Pluim writes:
>
>> I have
>>
>> (add-hook 'org-tab-first-hook 'org-end-of-line)
>>
>> This causes inside a table to always create another row, rather
>> than moving to the next field. The patch below fixes this for me,
>> although Iʼm not sure itʼs th
Hello,
Robert Pluim writes:
> I have
>
> (add-hook 'org-tab-first-hook 'org-end-of-line)
>
> This causes inside a table to always create another row, rather
> than moving to the next field. The patch below fixes this for me,
> although Iʼm not sure itʼs the right solution.
Why would you want t
Hi,
I have
(add-hook 'org-tab-first-hook 'org-end-of-line)
This causes inside a table to always create another row, rather
than moving to the next field. The patch below fixes this for me,
although Iʼm not sure itʼs the right solution.
diff --git a/org.el b/org.el
index 45be987..f22e9a1 100644