When I run vim from the root, there is an interesting thing in the driver that displays all the pressed actions, be it a change of buffer, search, or creation of a mark, who will tell you what it is called or how to include it in your status bar?
1 answer
Enable the display of the partially entered command in the last line of the screen: set showcmd
( set sc
).
disable: set noshowcmd
( set nosc
).
more :help showcmd
- Thank you, is it possible to transfer it to the status line? - nammidd
- As far as I understand, no. from elementary considerations: the status line is formed by a user-specified command (sometimes rather “heavy”), and executing this command after each keystroke could seriously impair the interactivity of work. - aleksandr barakin
|