mt22
mt22

Reputation: 323

Vim, how to move the cursor immediately and uniformely

Have you ever noticed (not only in Vim) that the cursor never change position uniformely after pressing movement keys but there's always an extra 0.5 second during which the cursor does not move? Is there a way to prevent this behavior in Vim?

Upvotes: 1

Views: 196

Answers (1)

deviousdodo
deviousdodo

Reputation: 9172

Took me some time to understand what you mean, but the behaviour you are describing is related to the keyboard repeat rate, more precisely the time before it starts repeating. That is OS related, has nothing to do with Vim or any other editor. Just look on the Internet how you can shorten the time for your OS, here's a link for Windows: http://windows.microsoft.com/en-US/windows-vista/Change-keyboard-settings

Upvotes: 5

Related Questions