diff options
| author | Craig Jennings <c@cjennings.net> | 2025-09-03 14:24:54 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-09-03 14:24:54 -0500 |
| commit | da650a763100a3d35e07c944e6405ebfc963d36e (patch) | |
| tree | d123fbd4cf380b4b39c5daebe1f3f20be46e407a /modules | |
| parent | a1d65d21fa745bab14a2e8c858bd3161110cb4db (diff) | |
| download | dotemacs-da650a763100a3d35e07c944e6405ebfc963d36e.tar.gz dotemacs-da650a763100a3d35e07c944e6405ebfc963d36e.zip | |
remapping vanilla org-set-tags to counsel-org-tag
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/selection-framework.el | 6 |
1 files changed, 5 insertions, 1 deletions
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 |
