Function: smart-org-bob-and-non-heading-p

smart-org-bob-and-non-heading-p is a byte-compiled function defined in hui-mouse.el.

Signature

(smart-org-bob-and-non-heading-p)

Documentation

Check whether {TAB} should globally org-cycle at point.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mouse.el
(defun smart-org-bob-and-non-heading-p ()
  "Check whether {TAB} should globally `org-cycle' at point."
  (and (bobp)
       (hypb:buffer-file-name)
       (derived-mode-p 'org-mode)
       (not (org-at-heading-p))
       (member (hypb:buffer-file-name)
	       (hpath:expand-list hsys-org-cycle-bob-file-list))))