Remove helm-descbinds remapping

helm-descbinds-mode overrides describe-bindings itself.
This commit is contained in:
Henrik Lissner 2020-04-11 00:36:17 -04:00
parent 7615bacde4
commit 2e6e191da3
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -41,8 +41,7 @@ be negative.")
[remap projectile-switch-project] #'helm-projectile-switch-project [remap projectile-switch-project] #'helm-projectile-switch-project
[remap projectile-switch-to-buffer] #'helm-projectile-switch-to-buffer [remap projectile-switch-to-buffer] #'helm-projectile-switch-to-buffer
[remap recentf-open-files] #'helm-recentf [remap recentf-open-files] #'helm-recentf
[remap yank-pop] #'helm-show-kill-ring [remap yank-pop] #'helm-show-kill-ring)
[remap describe-bindings] #'helm-descbinds)
:config :config
(helm-mode +1) (helm-mode +1)
;; helm is too heavy for `find-file-at-point' ;; helm is too heavy for `find-file-at-point'
@ -193,6 +192,4 @@ be negative.")
(use-package! helm-descbinds (use-package! helm-descbinds
:after helm-mode :hook (helm-mode . helm-descbinds-mode))
:config
(helm-descbinds-mode +1))