repeat-help
repeat-help copied to clipboard
[Feature request]: provide a user option for `repeat-echo-function`
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.
I have a workaround by using advice, but it's not that elegent:
(use-package repeat-help
:hook (repeat-mode . repeat-help-mode)
:config
(advice-add 'repeat-help-mode :after (lambda () (setq repeat-echo-function #'repeat-echo-message))))
IMHO, a user option for set repeat-echo-function is good to have, defaults to #'ignore is ok to me. What do you think? Any feedback is more than welcome!
would allow users to easily customize the behavior of the repeat-mode hint and choose whether to use the built-in hint or a custom message.