From 2a2969f3e0774bd5924b3c5ea25079fb4dc5625b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 20 May 2021 23:40:05 -0400 Subject: [PATCH] org-roam-verbose = t Its output is helpful. Let's not silence it. But prevent output during incremental loading from hijacking the minibuffer (likely the original reason org-roam-verbose was disabled). --- core/core.el | 1 + modules/lang/org/contrib/roam.el | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.el b/core/core.el index 5cf3a27cd..7d4b04f91 100644 --- a/core/core.el +++ b/core/core.el @@ -445,6 +445,7 @@ intervals." ;; or is unreadable, Emacs throws up file-missing errors, so ;; we set it to a directory we know exists and is readable. (let ((default-directory doom-emacs-dir) + (inhibit-message t) file-name-handler-alist) (require req nil t)) t) diff --git a/modules/lang/org/contrib/roam.el b/modules/lang/org/contrib/roam.el index df7019559..8c2fe6e8b 100644 --- a/modules/lang/org/contrib/roam.el +++ b/modules/lang/org/contrib/roam.el @@ -61,7 +61,6 @@ org-directory))) org-roam-db-location (or org-roam-db-location (concat doom-etc-dir "org-roam.db")) - org-roam-verbose nil ; https://youtu.be/fn4jIlFwuLU ;; Make org-roam buffer sticky; i.e. don't replace it when opening a ;; file with an *-other-window command. org-roam-buffer-window-parameters '((no-delete-other-windows . t))