From 1e277492ce68130df3a3d78d9b1daf7d23c7d740 Mon Sep 17 00:00:00 2001 From: Vikram Mandyam Date: Thu, 1 Feb 2024 21:38:25 +0530 Subject: [PATCH] Fix the issue with org-roam-directory having spaces and Unlinked References not wokring --- org-roam-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-roam-mode.el b/org-roam-mode.el index a13416c49f..682b08cd9b 100644 --- a/org-roam-mode.el +++ b/org-roam-mode.el @@ -672,7 +672,7 @@ References from FILE are excluded." (mapconcat (lambda (title) (format "|(\\b%s\\b)" (shell-quote-argument title))) titles "")) - org-roam-directory)) + (shell-quote-argument org-roam-directory))) (results (split-string (shell-command-to-string rg-command) "\n")) f row col match) (magit-insert-section (unlinked-references)