emacs-helm / helm-descbinds

A helm frontend for describe-bindings.
GNU General Public License v3.0
116 stars 12 forks source link

helm-descbinds-mode #28

Open AtomicNess123 opened 4 years ago

AtomicNess123 commented 4 years ago

What does this mode do at all? Thanks!

thierryvolpiatto commented 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

AtomicNess123 commented 4 years ago

I understand that I can call the function "helm-descbinds" but I don't understand what enabling the minor mode "Helm -descbinds-mode" does.

thierryvolpiatto commented 4 years ago

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. C-h.

-- Thierry

Get my Gnupg key: gpg --keyserver pgp.mit.edu --recv-keys 59F29997

AtomicNess123 commented 4 years ago

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?

thierryvolpiatto commented 4 years ago

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

AtomicNess123 commented 4 years ago

Thanks!