-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Paging with which-key not working #114
Comments
Hi @SirPscl! Have you tried calling For example, if you're using (use-package which-key
:config
(which-key-enable-god-mode-support)) |
Hi @darth10 Thanks for your reply. Yes, I have enabled god-mode support. and the which-key menu also shows up. Its the paging which doesn't work. Sorry for not describing the problem better, Ill give it another shot: Sometimes there is not enough space to show all key bindings in the which-key minibuffer. With "normal" which-key you can then use |
Yes, Another recommended I used to have several issues with (use-package which-key
:bind (("C-' k" . which-key-mode)
("C-' C-k" . which-key-mode))
:init
(which-key-setup-side-window-bottom)
(which-key-enable-god-mode-support)
;; ...
(which-key-mode t)) If you're using Doom Emacs, (after! which-key
(which-key-enable-god-mode-support)) I will try to get this configuration added to Doom Emacs soon. If you're still having issues, could you please send me more details such as your Emacs configuration and which OS you're using. |
@darth10 thank you
A minimal vanilla config with which it doesn't work on my machine (with and without the dedicated window, and the order doesn't seem to matter)
emacs 26.3 on Void Linux. |
@SirPscl I've managed to recreate this issue even with a dedicated window. |
Looks like this can be fixed in @SirPscl It would be really helpful if you could try out this fix from my |
@darth10 Thanks! Just gave it a shot. That looks promising :) I did encounter a weird behavior though:
If in step 3 I quickly enter Edit: I think this may be an issue on my side - If I use the minimal init.el I don't get the issue described above. |
@SirPscl That sounds like the timer issue I mentioned in the PR. |
Just tried it out - works like a charm :) Thanks a lot! 👍 |
Since justbur/emacs-which-key#247 hasn't been merged yet (and still has issues), my current workaround is to use (setq which-key-use-C-h-commands nil
prefix-help-command #'embark-prefix-help-command) |
Hi, I am delighted to see that god-mode is maintained again and even with us evil-users in mind! 👍
I created my own copy of god-mode a while back to work in evil-mode. Though I have changed god-modes behavior as suggested here (e.g.
C-c p f
=cpf
) and removed quite a lot of stuff I don't need.One challenge I faced was to get which-key paging working. I ended up hard-coding internal which-key commands. I just installed your melpa release (2.16.2) and which-key help & paging doesn't seem to work. I get:
God: Unknown key binding for ‘C-c C-^H‘
. Or am I doing something wrong?Also I want to ask about your intentions on the above mentioned issue 73 - but maybe this should be discussed in that issue.
The text was updated successfully, but these errors were encountered: