Function: treemacs-project->is-unreadable?
treemacs-project->is-unreadable? is a byte-compiled function defined
in treemacs-workspaces.el.
Signature
(treemacs-project->is-unreadable? SELF)
Documentation
Return non-nil if the project SELF is definitely unreadable.
If path-status of the project is remote-disconnected, the return value will
be nil even though the path might still be unreadable. Does not verify the
readability, the cached path-state is used. Extension projects will count as
readable.
Source Code
;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-workspaces.el
(define-inline treemacs-project->is-unreadable? (self)
"Return non-nil if the project SELF is definitely unreadable.
If `path-status' of the project is `remote-disconnected', the return value will
be nil even though the path might still be unreadable. Does not verify the
readability, the cached path-state is used. Extension projects will count as
readable."
(declare (side-effect-free t))
(inline-quote (memq (treemacs-project->path-status ,self)
'(local-unreadable remote-unreadable))))