From a4325f30bf340bf3ca11c5da675aae8f5a02794b Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Fri, 8 Mar 2024 17:26:25 +0100 Subject: [PATCH] Remove some obsolete counsel bindings --- init.el | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/init.el b/init.el index 2226d5d..b7b974c 100644 --- a/init.el +++ b/init.el @@ -2168,13 +2168,8 @@ Note that this workaround is incomplete, as explained in this comment." (use-package counsel :ensure t :commands (counsel-org-goto-all - counsel-M-x - counsel-find-file counsel-info-lookup-symbol counsel-unicode-char - counsel-descbinds - counsel-describe-variable - counsel-describe-function counsel-recentf counsel-shell-history)) @@ -3048,14 +3043,6 @@ eventuelly be set to nil, however)." ;; Overwrite certain keybindings only if packages are avilable - (when (package-installed-p 'counsel) - (bind-key "M-x" #'counsel-M-x) ; gets nicer sorting with smex installed - (bind-key "C-x C-f" #'counsel-find-file) - (bind-key "C-h f" #'counsel-describe-function) - (bind-key "C-h v" #'counsel-describe-variable) - (bind-key "C-h b" #'counsel-descbinds) - (bind-key "C-S-s" #'counsel-grep-or-swiper)) - (when (package-installed-p 'helm) ;; Explicitly require helm, because autoloading is difficult with helm's ;; separate `helm-command-prefix-key' mechanism.