Open AtomicNess123 opened 4 years ago
Gahamelas notifications@github.com writes:
What does this mode do at all? Thanks!
Provide completion and actions for C-h b
and/or <prefix> C-h', e.g.
C-x C-h'.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.*
-- Thierry
Get my Gnupg key: gpg --keyserver pgp.mit.edu --recv-keys 59F29997
I understand that I can call the function "helm-descbinds" but I don't understand what enabling the minor mode "Helm -descbinds-mode" does.
Gahamelas notifications@github.com writes:
I understand that I can call the function "helm-descbinds" but I don't understand what enabling the minor mode "Helm -descbinds-mode" does.
When you enable (helm-descbinds-mode 1) in your config, it bound C-h b
to helm-descbinds and also allows you to have helm completion (and
actions) on e.g. C-x C-h i.e.
-- Thierry
Get my Gnupg key: gpg --keyserver pgp.mit.edu --recv-keys 59F29997
Ok, thanks. I actually created a keybinding like this:
(global-set-key (kbd "C-h b") 'describe-bindings)
So actually, that is doing nothing if I already have the (helm-descbinds-mode)
active, right?
Gahamelas notifications@github.com writes:
Ok, thanks. I actually created a keybinding like this:
(global-set-key (kbd "C-h b") 'describe-bindings)
You don't need this.
So actually, that is doing nothing if I already have the (helm-descbinds-mode) active, right?
Just add (helm-descbinds-mode 1) in your config, that's all.
-- Thierry
Get my Gnupg key: gpg --keyserver pgp.mit.edu --recv-keys 59F29997
Thanks!
What does this mode do at all? Thanks!