Function: treemacs--prop-at-point

treemacs--prop-at-point is a byte-compiled function defined in treemacs-core-utils.el.

Signature

(treemacs--prop-at-point PROP)

Documentation

Grab property PROP of the button at point.

Returns nil when there is no button at point.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
(define-inline treemacs--prop-at-point (prop)
  "Grab property PROP of the button at point.
Returns nil when there is no button at point."
  (declare (side-effect-free t))
  (inline-quote
   (-when-let (b (treemacs-current-button))
     (treemacs-button-get b ,prop))))