Re: Unable to unfold a folded block having point directly after the folded block

2023-07-21 Thread Ihor Radchenko
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

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Evgenii Klimov
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

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Vlastimil Vondra
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

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Ihor Radchenko
[ 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

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Ihor Radchenko
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

Re: Unable to unfold a folded block having point directly after the folded block

2023-07-20 Thread Vlastimil Vondra
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