[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Unable to unfold a folded block having point directly after the fold
From: |
Vlastimil Vondra |
Subject: |
Re: Unable to unfold a folded block having point directly after the folded block |
Date: |
Thu, 20 Jul 2023 10:37:37 +0200 |
User-agent: |
Mozilla Thunderbird |
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
- Re: Unable to unfold a folded block having point directly after the folded block,
Vlastimil Vondra <=