Function: treemacs-is-path-visible?--inliner

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

Signature

(treemacs-is-path-visible?--inliner INLINE--FORM PATH)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
;; Could not find source code, showing raw function object.
#[(inline--form path)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp path)
	  (path
	   (if (macroexp-copyable-p exp) exp (make-symbol "path")))
	  (body (list 'treemacs-find-in-dom path)))
       (if (eq path exp) body
	 (macroexp-let* (list (list path exp)) body)))))
  (t)]