fix(helm): helm-descbinds-disable-which-key = nil

Otherwise, helm-descbind throws errors if which-key is enabled. Setting
prefix-help-command seems to resolve the incompatibility (more testing
is needed).

Ref: emacs-helm/helm-descbinds@ca03f02da4
Ref: emacs-helm/helm-descbinds@14d1929d54
Amend: 52599ab536
This commit is contained in:
Henrik Lissner 2024-04-08 19:12:08 -04:00
parent 21f6fb7576
commit a4b7aa1c56
No known key found for this signature in database
GPG key ID: B60957CA074D39A3

View file

@ -188,7 +188,13 @@ Can be negative.")
(use-package! helm-descbinds (use-package! helm-descbinds
:hook (helm-mode . helm-descbinds-mode)) :hook (helm-mode . helm-descbinds-mode)
:config
;; HACK: Upstream claims that the two packages are incompatible, but changing
;; `prefix-help-command' seems to smooth the incompatibility over. More
;; testing is needed...
(setq helm-descbinds-disable-which-key nil
prefix-help-command #'helm-descbinds))
(use-package! helm-icons (use-package! helm-icons