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
8c5cdd00bd
commit
4dd695a333
3
init.el
3
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)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user