How can I increase the speed of the cursor in Gnome terminal?

Compared to the getty tty's the cursor speed in Gnome Terminal feels slow and sluggish.
By cursor speed I mean if say you were in the middle of a long line at a command prompt and you held down - how fast the cursor travels as well and general scrolling etc.
Yes if know you could use Ctrl+a to get to the start of a long line also - but I want to speed up the cursor speed in general.
Is this possible using gnome terminal or possibly using xset, e.g to slow down mouse pointer speed I typically use xset m 3/2 5.
If I dump xset, with xset q I get

Keyboard Control:
  auto repeat:  on    key click percent:  0    LED mask:  00000000
  XKB indicators:
    00: Caps Lock:   off    01: Num Lock:    off    02: Scroll Lock: off
    03: Compose:     off    04: Kana:        off    05: Sleep:       off
    06: Suspend:     off    07: Mute:        off    08: Misc:        off
    09: Mail:        off    10: Charging:    off    11: Shift Lock:  off
    12: Group 2:     off    13: Mouse Keys:  off
  auto repeat delay:  500    repeat rate:  33
  auto repeating keys:  00ffffffdffffbbf
                        fadfffefffedffff
                        9fffffffffffffff
                        fff7ffffffffffff

Does the value of repeat rate affect terminal cursor speed? otherwise, how can I increase cursor speed of gnome terminal?


Solution 1:

The cursor move speed is related to your keyboard's repetition rate you can use kbdrate to change it but it will change it globally.

sudo kbdrate 

will give you the current settings

Usage: kbdrate [-V] [-s] [-r rate] [-d delay]

I'm not really sure on this .. didn't look into it but I found that the delay is the time before the repeating starts and the rate is the speed of repeating ..the rate seems limited from 2 to 30.

I also do not really know the function of the -s switch ... I thought it was set but I was wrong since when using it .. the values didn't seem to change .. I had to use the command

sudo kbdrate -r 10 

or

sudo kbdrate -d 250 

to have the settings change.

This doesn't seem to be working in 16.04... I looked into it some more and also found you can try editing your X Server config

The option to look for would be

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
    Option         "AutoRepeat" "<delay> <rate>".
EndSection