Function: treemacs-project->is-readable?

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

Signature

(treemacs-project->is-readable\? SELF)

Documentation

Return t if the project SELF is definitely readable for file operations.

Does not verify the readability - the cached state is used.

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
(define-inline treemacs-project->is-readable? (self)
  "Return t if the project SELF is definitely readable for file operations.

Does not verify the readability - the cached state is used."
  (declare (side-effect-free t))
  (inline-quote (memq (treemacs-project->path-status ,self)
                      '(local-readable remote-readable))))