emacs-which-key
emacs-which-key copied to clipboard
It is not showing all vc alternatives
Hi:
I have been trying the internal emacs vc features today and I can see that which-key is not showing some of the commands like C-x v = or C-x v D
This is everything I can see:

As you can see there are very few commands and no other pages... And the commands are properly bindend (I didn't change that):

My config is:
(use-package which-key
:defer t
:diminish
:custom
(which-key-idle-secondary-delay 0.01) ;; nil sets the same delay
(which-key-dont-use-unicode t)
:config
(which-key-mode t)
(which-key-add-key-based-replacements
"C-c h" "highlight"
"C-c s" "sidebars"
"C-x r" "rectangle||register"
"C-x n" "narrow"
"C-x t" "tabs"
"C-x a" "abbrev"))
And the full config (single file, in case it is important, and I am using the emacs master branch, but I observe the issue in other versions too) is here: My config
Any help? Thank's in advance, Ergus
possibly related to #267