Function: hsys-org-global-cycle

hsys-org-global-cycle is a byte-compiled function defined in hsys-org.el.

Signature

(hsys-org-global-cycle)

Documentation

Call org-global-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-global-cycle ()
  "Call `org-global-cycle' and set as `this-command' to cycle through all states."
  (setq this-command 'org-cycle)
  (save-excursion
    (org-back-to-heading)
    (org-global-cycle nil)))