Function: treemacs-join-path
treemacs-join-path is a byte-compiled function defined in
treemacs-core-utils.el.
Signature
(treemacs-join-path &rest ITEMS)
Documentation
Join the given ITEMS to a single file PATH.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-core-utils.el
(defun treemacs-join-path (&rest items)
"Join the given ITEMS to a single file PATH."
(declare (side-effect-free t))
(--reduce-from (expand-file-name it acc) "/" items))