Function: hproperty:select-item
hproperty:select-item is a byte-compiled function defined in
hproperty.el.
Signature
(hproperty:select-item &optional PNT)
Documentation
Select item in current buffer at optional position PNT with hproperty:item-face.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hproperty.el
(defun hproperty:select-item (&optional pnt)
"Select item in current buffer at optional position PNT with hproperty:item-face."
(when pnt (goto-char pnt))
(skip-chars-forward " \t")
(skip-chars-backward "^ \t\n\r")
(let ((start (point)))
(save-excursion
(skip-chars-forward "^ \t\n\r")
(hproperty:but-add start (point) hproperty:item-face)))
(sit-for 0)) ;; Force display update