Function: treemacs-split-path--inliner
treemacs-split-path--inliner is a function defined in
treemacs-core-utils.el.
Signature
(treemacs-split-path--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 'split-string path "/" :omit-nulls)))
(if (eq path exp) body
(macroexp-let* (list (list path exp)) body)))))
(t)]