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
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