From c2581cfb49976e5faf2e0dc3dc67e46999676f9c Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 7 Aug 2025 17:58:13 +0200 Subject: [PATCH] Use helm only for EMMS Reeducate my muscle memory to not use the other bindings anymore. --- init.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 619b189..9927b8e 100644 --- a/init.el +++ b/init.el @@ -2390,10 +2390,7 @@ Note that this workaround is incomplete, as explained in this comment." (use-package helm :ensure t - :bind (:map helm-command-map - ("#" . helm-emms)) - :init (setopt helm-command-prefix-key "C-c h" ; see `db/run-init' for explicit binding - )) + :init (setopt helm-command-prefix-key nil)) (use-package recentf :commands (recentf-mode recentf-save-list) @@ -3074,6 +3071,7 @@ Note that this workaround is incomplete, as explained in this comment." (bind-key "C-c c" #'org-capture) (bind-key "C-c d" #'define-word-at-point) (bind-key "C-c e" #'crux-eval-and-replace) + (bind-key "C-c h #" #'helm-emms) (bind-key "C-c i" #'ispell-change-dictionary) (bind-key "C-c j" #'avy-goto-char-timer) (bind-key "C-c l" #'org-store-link)