bshanks
bshanks

Reputation: 1248

Turn off helm-descbinds in spacemacs

How can i turn off helm-descbinds so that describe-bindings executes the old describe-bindings? (helm-descbinds-mode nil) doesn't work.

Upvotes: 0

Views: 268

Answers (2)

Dr Neo
Dr Neo

Reputation: 824

[Solved for spacemacs]

I have utilized this with GNU Emacs version 30.0.50, and the outcome is that I can use which-key once again as it was automatically disabled when helm-descbinds-mode is turned on.

(helm-descbinds-mode 0)

In spacmeacs I put this command in the user-config with my other configurations.

(defun dotspacemacs/user-config ()
          (helm-descbinds-mode 0) 
)

Upvotes: 0

bshanks
bshanks

Reputation: 1248

(advice-remove 'describe-bindings #'helm-descbinds)

Upvotes: 0

Related Questions