Function: hsys-org-cycle
hsys-org-cycle is a byte-compiled function defined in hsys-org.el.
Signature
(hsys-org-cycle)
Documentation
Call org-cycle and set as this-command to cycle through all states.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
(defun hsys-org-cycle ()
"Call `org-cycle' and set as `this-command' to cycle through all states."
(setq this-command 'org-cycle)
(save-excursion
(org-back-to-heading)
(org-cycle)))