Function: hsys-org-mode-p

hsys-org-mode-p is an autoloaded and byte-compiled function defined in hsys-org.el.

Signature

(hsys-org-mode-p)

Documentation

Return non-nil if point is within an Org major or minor-mode buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
;;;###autoload
(defun hsys-org-mode-p ()
  "Return non-nil if point is within an Org major or minor-mode buffer."
  (or (derived-mode-p 'org-mode)
      (derived-mode-p 'org-agenda-mode)
      (and (boundp 'outshine-mode) outshine-mode)
      (and (boundp 'poporg-mode) poporg-mode)))