justbur / emacs-which-key

Emacs package that displays available keybindings in popup
GNU General Public License v3.0
1.73k stars 87 forks source link

`which-key` doesn't show correct completions #324

Open librarianmage opened 2 years ago

librarianmage commented 2 years ago

I'm using use-package to load my packages, like so:

(use-package helpful
  :bind (([remap describe-function] . helpful-callable)
         ([remap Info-goto-emacs-command-node] . helpful-command)
         ([remap describe-variable] . helpful-variable)
         ([remap describe-key] . helpful-key)
         ("C-c C-d" . helpful-at-point)))

however, the command names aren't overridden for the rebind ones: image is there something that I'm missing? Do I need to refresh the command bindings, or something?

justbur commented 2 years ago

Do you have which-key-compute-remaps set to t?