From da650a763100a3d35e07c944e6405ebfc963d36e Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Wed, 3 Sep 2025 14:24:54 -0500 Subject: remapping vanilla org-set-tags to counsel-org-tag --- modules/selection-framework.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/selection-framework.el b/modules/selection-framework.el index a0782997..4d091e72 100644 --- a/modules/selection-framework.el +++ b/modules/selection-framework.el @@ -51,7 +51,11 @@ (use-package counsel :defer .5 :bind - ("C-c U" . counsel-unicode-char)) + ("C-c U" . counsel-unicode-char) + :config + ;; Remap org-set-tag to counsel-org-tag + (with-eval-after-load 'org + (define-key org-mode-map [remap org-set-tags-command] 'counsel-org-tag))) ;; ------------------------------------ Ivy ------------------------------------ ;; A generic completion mechanism for Emacs. https://github.com/abo-abo/swiper#ivy -- cgit v1.2.3