Backlinks in *org-roam* buffer

This indicates to me that it’s a sequencing issue. I suggest that you put the define-key lines in your .emacs file so that they are evaluated after org-roam has been loaded.

Thanks a lot! It now works after using:

(with-eval-after-load 'org-roam
  (define-key org-roam-node-map [mouse-1] #'org-roam-node-visit)
  (define-key org-roam-preview-map [mouse-1] #'org-roam-preview-visit))

in my .emacs file. I am new to emacs so thanks for helping me figure this out!

1 Like