How can I increase the cursor speed in terminal?

MacosTerminalText Cursor

Macos Problem Overview


How can I increase the cursor speed in terminal? I have Mac OS X by the way. It would also be interesting to know it for Linux.

I don't know what I should search for in Google (or what you like).

Macos Solutions


Solution 1 - Macos

System Preferences => Keyboard => increase Key Repeat Rate

enter image description here

Solution 2 - Macos

If by "cursor speed", you mean the repeat rate when holding down a key - then have a look here: http://hints.macworld.com/article.php?story=20090823193018149

To summarize, open up a Terminal window and type the following command:

defaults write NSGlobalDomain KeyRepeat -int 0

More detail from the article:

>Everybody knows that you can get a pretty fast keyboard repeat rate by changing a slider on the Keyboard tab of the Keyboard & Mouse System Preferences panel. But you can make it even faster! In Terminal, run this command: > >defaults write NSGlobalDomain KeyRepeat -int 0 > >Then log out and log in again. The fastest setting obtainable via System Preferences is 2 (lower numbers are faster), so you may also want to try a value of 1 if 0 seems too fast. You can always visit the Keyboard & Mouse System Preferences panel to undo your changes. > >You may find that a few applications don't handle extremely fast keyboard input very well, but most will do just fine with it.

Note: It requires a system restart

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionclassic_programmerView Question on Stackoverflow
Solution 1 - MacosPiotrView Answer on Stackoverflow
Solution 2 - MacosJohn PickupView Answer on Stackoverflow