Hide cursor during all non-insert commands
This commit is contained in:
parent
f84b895d22
commit
7c8dc6b7ba
1 changed files with 4 additions and 1 deletions
|
@ -1096,7 +1096,10 @@ Additionally ensures correct line numbers on the way, as a bonus."
|
|||
(let ((input (get-input-sequence)))
|
||||
(if (characterp input)
|
||||
(insert-char input)
|
||||
(key-command-dispatch input)))
|
||||
(progn
|
||||
(hide-cursor)
|
||||
(key-command-dispatch input)
|
||||
(show-cursor))))
|
||||
(redisplay-status-line)
|
||||
(force-output *eio*))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue