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:
parent
21f6fb7576
commit
a4b7aa1c56
1 changed files with 7 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue