Function: org-roam-buffer--visibility
org-roam-buffer--visibility is a byte-compiled function defined in
org-roam-mode.el.
Signature
(org-roam-buffer--visibility)
Documentation
Return the current visibility state of the persistent org-roam-buffer(var)/org-roam-buffer(fun).
Valid states are visible, exists and none.
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-mode.el
(define-inline org-roam-buffer--visibility ()
"Return the current visibility state of the persistent `org-roam-buffer'.
Valid states are `visible', `exists' and `none'."
(declare (side-effect-free t))
(inline-quote
(cond
((get-buffer-window org-roam-buffer) 'visible)
((get-buffer org-roam-buffer) 'exists)
(t 'none))))