Re: [O] org-end-of-line and in table interaction

2018-09-29 Thread Robert Pluim
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

Re: [O] org-end-of-line and in table interaction

2018-09-28 Thread Nicolas Goaziou
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

Re: [O] org-end-of-line and in table interaction

2018-09-28 Thread Robert Pluim
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. > >

Re: [O] org-end-of-line and in table interaction

2018-09-28 Thread Nicolas Goaziou
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

Re: [O] org-end-of-line and in table interaction

2018-09-28 Thread Robert Pluim
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

Re: [O] org-end-of-line and in table interaction

2018-09-28 Thread Nicolas Goaziou
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

[O] org-end-of-line and in table interaction

2018-09-28 Thread Robert Pluim
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