Function: hyrolo-at-tags-p

hyrolo-at-tags-p is a byte-compiled function defined in hyrolo.el.

Signature

(hyrolo-at-tags-p &optional AT-TAG-FLAG)

Documentation

Return non-nil if point is in a HyRolo buffer and at Org tags.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo.el
(defun hyrolo-at-tags-p (&optional at-tag-flag)
  "Return non-nil if point is in a HyRolo buffer and at Org tags."
  (and (or at-tag-flag (hsys-org-at-tags-p)
	   ;; Non-highlighted Org tags in `hyrolo-display-buffer'
	   (and (save-excursion
		  (beginning-of-line)
		  (looking-at org-tag-line-re))
		(>= (point) (match-beginning 1))
		(< (point) (match-end 1))))
       (or (string-prefix-p "*HyRolo" (buffer-name))
	   (and (hypb:buffer-file-name)
		(apply #'derived-mode-p '(org-mode org-agenda-mode))
		(member (hypb:buffer-file-name) (hyrolo-get-file-list))
		t))))