Replace counsel Org heading dispatch by org-refile

This is nice enough and removes the last dependency to counsel :)
This commit is contained in:
Daniel - 2024-03-09 15:04:21 +01:00
parent aadca01244
commit 7d398a66c8
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
2 changed files with 1 additions and 6 deletions

View File

@ -2163,10 +2163,6 @@ Note that this workaround is incomplete, as explained in this comment."
;; functionality.
(define-key ivy-minibuffer-map (kbd "S-SPC") nil)))
(use-package counsel
:ensure t
:commands (counsel-org-goto-all))
(use-package swiper
:ensure t
:commands (swiper

View File

@ -19,7 +19,6 @@
(require 'ox-icalendar)
(require 'org-ql)
(autoload 'counsel-org-goto-all "counsel")
(autoload 'which-function "which-func")
(autoload 'org-element-property "org-element")
@ -1045,7 +1044,7 @@ Current Task: %s(replace-regexp-in-string \"%\" \"%%\" (or org-clock-current-tas
"
("c" (db/org-clock-goto-first-open-checkbox nil)
nil)
("a" counsel-org-goto-all nil)
("a" (org-refile '(4)) nil)
("s" (db/org-clock-goto-first-open-checkbox t)
nil))