tweak(org-roam): invert unlinked refs toggle property

This commit is contained in:
Kiana Sheibani 2025-02-17 15:44:21 -05:00
parent d7c0810002
commit 026bca14f7
Signed by: toki
GPG key ID: 6CB106C25E86A9F7

View file

@ -3558,8 +3558,8 @@ The unlinked references section is turned off by default for performance reasons
#+begin_src emacs-lisp #+begin_src emacs-lisp
(defadvice! ~/org-roam-unlinked-references-p (node) (defadvice! ~/org-roam-unlinked-references-p (node)
"A predicate to control when unlinked references are shown in the `org-roam' buffer." "A predicate to control when unlinked references are shown in the `org-roam' buffer."
:before-while #'org-roam-unlinked-references-section :before-until #'org-roam-unlinked-references-section
(assoc "UNLINKED_REFS" (org-roam-node-properties node))) (assoc "ROAM_NO_UNLINKED" (org-roam-node-properties node)))
#+end_src #+end_src
#+begin_src emacs-lisp #+begin_src emacs-lisp