Function: hui:hbut-rename

hui:hbut-rename is a byte-compiled function defined in hui.el.

Signature

(hui:hbut-rename)

Documentation

Interactively rename a Hyperbole button from the current buffer.

The default is the button at point.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui.el
(defun hui:hbut-rename ()
  "Interactively rename a Hyperbole button from the current buffer.
The default is the button at point."
  (cond ((ebut:at-p)
         (call-interactively #'hui:ebut-rename))
        ((ibut:at-p)
         (call-interactively #'hui:ibut-rename))
        (t
         (hui:hbut-operate #'hbut:rename "Rename Hyperbole button: "))))