Suppose I am in command mode, and I am in the process of typing 3dd to delete three lines. How can I make evil mode show the (partial) command I have typed so far?
In other words, is there an evil mode equivalent to vim's set showcmd?
Does https://emacs.stackexchange.com/questions/29216/how-to-get-keystrokes-displayed-in-the-echo-area-immediately answer your question?
– drRobertzApr 29 '18 at 05:58
@drRobertz I tried adding (setq echo-keystrokes 0.1) to my config file. When trying to do 3dd to delete three lines, C-u 3- is shown when 3 is pressed, but that disappears when d is pressed.
– FluxMay 02 '18 at 01:53
(setq echo-keystrokes 0.1)
to my config file. When trying to do3dd
to delete three lines,C-u 3-
is shown when3
is pressed, but that disappears whend
is pressed. – Flux May 02 '18 at 01:53