How can I increase the key repeat rate beyond the OS's limit?

前端 未结 15 2109
攒了一身酷
攒了一身酷 2021-01-29 21:16

I have a bad habit of using the cursor keys of my keyboard to navigate source code. It\'s something I\'ve done for 15 years and this of course means that my navigating speed is

15条回答
  •  不知归路
    2021-01-29 21:40

    Many times I want to center a function in my window. Scrolling is the only way. Also, Ctrl-left/right can still be slow in code where there are a lot of non-word characters. I use keyboardking also. It has a couple of isssues for me though. One, it sometimes uses the default speed instead of the actual value I set. The other is sometimes it ignores the initial delay. I still find it very useful though. They said 4 years ago they would release the source in 6 months... :(

    Ok, on the suggestion of someone that modified HCU\...\Keyboard Response, this works well for me.

    [HKEY_CURRENT_USER\Control Panel\Accessibility\Keyboard Response]
    "AutoRepeatDelay"="250"
    "AutoRepeatRate"="13"
    "BounceTime"="0"
    "DelayBeforeAcceptance"="0"
    "Flags"="59"
    

    Windows standard AutoRepeat delay. 13 ms (77 char/sec) repeat rate. flags turns on FilterKeys? These values are read at login. Remember to log out and back in for this to take effect.

提交回复
热议问题