repeat-help icon indicating copy to clipboard operation
repeat-help copied to clipboard

Results 7 repeat-help issues
Sort by recently updated
recently updated
newest added

I have both Embark and Which-Key available in my Emacs session. However, the initial value of `repeat-help-popup-type` is `which-key`, not `embark` as suggested in the README. I assume that is...

```elisp (setq repeat-help-popup-type 'which-key) (setq repeat-help-auto nil) ``` When I press `C-h` key, help menu is showing, but after another repeat key is pressed, the menu disappeared again. Could you...

Some commands such as `evil-scroll-down` override `this-command` (in this case, with `next-line`). This makes `repeat-help` show an empty keymap when I use `evil-scroll-down`. This PR removes that behavior by using...

`repeat-echo-function` is set to `#'ignore` in `repeat-help-mode`. I would like to reserve the built-in repeat-mode hint in echo area, which is neat and indicates that I am in repeat state....

When `repeat-help-mode` is on, the `repeat-exit-timeout` no longer exits the transient map. I haven't done any more digging but it would be nice if this timeout worked.

As an example, `evil-scroll-down` overrides `this-command` with `next-line` so the help popup is blank. If `repeat-help-auto` is set to `t` however, this does not happen. Potential solution: Use `real-last-command` instead...

Emacs 30 will allow specifying `:hints` with the repeat maps, so a short bit of text can be displayed with the repeat keys. See bug [70576](https://yhetil.org/emacs-bugs/[email protected]/).