diff options
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 |
