From ab09a694ae3df99fef57094a3eb099fb4d33693c Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 17 Aug 2025 17:52:01 +0200 Subject: [PATCH] Use consult function to provide `org-goto` `org-goto` does not work as before, as our custom Org refile location query function does not honor the `org-refile-targets` variable. So, let's just use `consult-org-heading` directly, since this is what I want. --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index c9e5b2d..f03b02b 100644 --- a/init.el +++ b/init.el @@ -741,7 +741,8 @@ split horizontally again, but this extra work should not matter much." :pin "gnu" :bind (:map org-mode-map ([remap org-return] . (lambda () (interactive) (org-return :indent))) - ([remap org-clock-goto] . db/org-clock-goto-first-open-checkbox)) + ([remap org-clock-goto] . db/org-clock-goto-first-open-checkbox) + ([remap org-goto] . consult-org-heading)) :autoload (org-get-todo-state org-entry-get) :commands (org-return)