Whenever I run org-roam-node-find and enter a new note, the buffer doesn’t show up, and I just get the message: org-capture: Capture template ‘d’: Buffer name ‘CAPTURE-20231121100954-foo.org’ is in use
The buffer is opened but I have to switch to it manually. Isn’t it usually opened automatically? This is my entire roam config. I just copied it from the docs:
(use-package org-roam
:ensure t
:custom
(org-roam-directory (file-truename "~/git/.../roam/"))
:bind (("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)
("C-c n g" . org-roam-graph)
("C-c n i" . org-roam-node-insert)
("C-c n c" . org-roam-capture)
;; Dailies
("C-c n j" . org-roam-dailies-capture-today))
:config
;; If you're using a vertical completion framework, you might want a more informative completion interface
(setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag)))
(org-roam-db-autosync-mode)
;; If using org-roam-protocol
I don’t see anything inside custom.el
.