mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-19 13:43:36 -05:00
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:
@@ -188,7 +188,13 @@ Can be negative.")
|
||||
|
||||
|
||||
(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
|
||||
|
Reference in New Issue
Block a user