Function: treemacs-is-path-visible?

treemacs-is-path-visible? is a byte-compiled function defined in treemacs-core-utils.el.

Signature

(treemacs-is-path-visible? PATH)

Documentation

Return whether a node for PATH is displayed in the current buffer.

Returns the backing dom node is the PATH is visible, nil otherwise.

Morally equivalent to treemacs-find-in-dom.

PATH: Node Path

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
(define-inline treemacs-is-path-visible? (path)
  "Return whether a node for PATH is displayed in the current buffer.
Returns the backing dom node is the PATH is visible, nil otherwise.

Morally equivalent to `treemacs-find-in-dom'.

PATH: Node Path"
  (declare (side-effect-free t))
  (inline-letevals (path)
    (inline-quote
     (treemacs-find-in-dom ,path))))