Function: hproperty:but-create

hproperty:but-create is an interactive and byte-compiled function defined in hproperty.el.

Signature

(hproperty:but-create &optional REGEXP-MATCH)

Documentation

Highlight all named Hyperbole buttons in buffer.

De-highlight buttons unless hproperty:but-highlight-flag is set.

If REGEXP-MATCH is non-nil, only buttons matching this argument are highlighted (all others are unhighlighted).

If hproperty:but-emphasize-flag is non-nil when this is called, emphasize that button is selectable whenever the mouse cursor moves over it.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hproperty.el
(defun hproperty:but-create (&optional regexp-match)
  "Highlight all named Hyperbole buttons in buffer.
De-highlight buttons unless `hproperty:but-highlight-flag' is set.

If REGEXP-MATCH is non-nil, only buttons matching this argument are
highlighted (all others are unhighlighted).

If `hproperty:but-emphasize-flag' is non-nil when this is called,
emphasize that button is selectable whenever the mouse cursor
moves over it."
  (interactive)
  (hproperty:but-clear-all regexp-match)
  (hproperty:but-create-all regexp-match))