From f90cf1f974d502a7b90d394d0f50aaac2d48cdb6 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 28 Aug 2019 19:04:17 -0400 Subject: [PATCH] Fix +default/org-notes-headlines --- modules/config/default/autoload/default.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/config/default/autoload/default.el b/modules/config/default/autoload/default.el index 6efbff355..89fa2f4dd 100644 --- a/modules/config/default/autoload/default.el +++ b/modules/config/default/autoload/default.el @@ -305,6 +305,5 @@ ARG is set, prompt for a known project to search from." (defun +default/org-notes-headlines () "Jump to an Org headline in `org-agenda-files'." (interactive) - (completing-read - "Jump to org headline: " - (doom-completing-read-org-headings org-agenda-files 3 t))) + (doom-completing-read-org-headings + "Jump to org headline: " org-agenda-files 3 t))