Vlastimil Vondra writes:
> Perfect, org-reveal is working as well, haven't known about that! But it
> would be good that org-reveal is called automatically before org-cycle,
> because when going through the task list, I'm just expanding by tab. It is
> not really convenient to use tab and when re
Hi
Vlastimil Vondra writes:
> Perfect, org-reveal is working as well, haven't known about that! But it
> would be good that org-reveal is called automatically before org-cycle,
> because when
> going through the task list, I'm just expanding by tab. It is not really
> convenient to use tab
Perfect, org-reveal is working as well, haven't known about that! But it
would be good that org-reveal is called automatically before org-cycle,
because when going through the task list, I'm just expanding by tab. It is
not really convenient to use tab and when reaching error (or no unfold)
then hi
[ Adding Org mailing list back to CC ]
Vlastimil Vondra writes:
> Sorry, I think I've sent the reply in wrong manner. I was trying to reply
> to this conversation https://list.orgmode.org/87ty4b7ofr@gnu.org/t/
> where Reiner wrote that he is not able to unfold tree if folded and at the
> end
Vlastimil Vondra writes:
> Unable to unfold a folded block having point directly after the folded block
I tried to reproduce the problem and I cannot.
May you please provide more details?
See https://orgmode.org/manual/Feedback.html#Feedback
--
Ihor Radchenko // yantar92,
Org mode contributor
Hi all,
I solved it by using "(org-end-of-line)" before "(org-cycle)"
(defun my/org-cycle (&optional arg)
"adjust org-cycle"
(interactive "P")
(org-end-of-line)
(org-cycle arg)
)
I hope it could be useful to somebody.
Best regards,
Vlastimil Vondra