Function: ibut:label-key-match

ibut:label-key-match is a byte-compiled function defined in hbut.el.

Signature

(ibut:label-key-match NAME-KEY)

Documentation

Return a list of implicit button label keys fully matching NAME-KEY.

There may be multiple results if there are numbered instances with the same label. Names are returned in the order they are first encountered.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun    ibut:label-key-match (name-key)
  "Return a list of implicit button label keys fully matching NAME-KEY.
There may be multiple results if there are numbered instances
with the same label.  Names are returned in the order they are
first encountered."
  (when (stringp name-key)
    (apply #'set:create
	   (ibut:map
	    (lambda (lbl _start _end) (ibut:label-to-key lbl))
	    (ibut:name-instances-regexp name-key)))))