Function: treemacs-project->is-local?

treemacs-project->is-local? is a byte-compiled function defined in treemacs-workspaces.el.

Signature

(treemacs-project->is-local? SELF)

Documentation

Return t if the project SELF is local. Returns nil for extensions.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
(define-inline treemacs-project->is-local? (self)
  "Return t if the project SELF is local.  Returns nil for extensions."
  (declare (side-effect-free t))
  (inline-letevals (self)
    (inline-quote (memq (treemacs-project->path-status ,self)
                        '(local-readable local-unreadable)))))