From a6a6249da588354a9e48bede7d8b552b4e92b29d Mon Sep 17 00:00:00 2001 From: Daniel Koudouna Date: Fri, 7 Feb 2020 21:12:10 +0000 Subject: [PATCH] Add symlink support --- org-roam.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-roam.el b/org-roam.el index 04905b6..ea1a873 100644 --- a/org-roam.el +++ b/org-roam.el @@ -106,7 +106,7 @@ If called interactively, then PARENTS is non-nil." (setq result (append (org-roam--find-files file) result)))) ((and (file-readable-p file) (string= (file-name-extension file) "org")) - (setq result (cons file result))))) + (setq result (cons (file-truename file) result))))) result))) (defun org-roam--find-all-files ()