From 2a40b180076b5d8959904d6a354a8acc3889abe8 Mon Sep 17 00:00:00 2001 From: Adam Porter Date: Wed, 17 Jul 2019 09:22:08 -0500 Subject: [PATCH] Fix: (org-ql-search) Space ending prompt string --- org-ql-agenda.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-ql-agenda.el b/org-ql-agenda.el index 89c9364..8ff3a9f 100644 --- a/org-ql-agenda.el +++ b/org-ql-agenda.el @@ -154,7 +154,7 @@ searching. Interactively, with prefix, leave narrowed. SORT: One or a list of `org-ql' sorting functions, like `date' or `priority'." (declare (indent defun)) - (interactive (list (pcase-exhaustive (completing-read "Buffers/Files:" + (interactive (list (pcase-exhaustive (completing-read "Buffers/Files: " (list 'buffer 'agenda 'all)) ("agenda" (org-agenda-files)) ("all" (--select (equal (buffer-local-value 'major-mode it) 'org-mode)