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.
This commit is contained in:
parent
dbf0963511
commit
ab09a694ae
3
init.el
3
init.el
@ -741,7 +741,8 @@ split horizontally again, but this extra work should not matter much."
|
|||||||
:pin "gnu"
|
:pin "gnu"
|
||||||
:bind (:map org-mode-map
|
:bind (:map org-mode-map
|
||||||
([remap org-return] . (lambda () (interactive) (org-return :indent)))
|
([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
|
:autoload (org-get-todo-state
|
||||||
org-entry-get)
|
org-entry-get)
|
||||||
:commands (org-return)
|
:commands (org-return)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user