Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat
Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.
Settings: System Preferences » Keyboard » Key Repeat/Delay Until Repeat
Use the commands below to increase the key repeat rate on macOS beyond the possible settings via the user interface. The changes aren't applied until you restart your computer.
defaults write -g InitialKeyRepeat -int 10 # normal minimum is 15 (225 ms) | |
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms) |
Good to know! Thx for the inputs @varenc & @hofmannsven
The issue I have with KeyRepeat is that you can't have it faster than 1. Doesn't accept floating-point values from what I saw.
Used to work around this using Karabiner (actually not Karabiner but the app that it replaced) but that was apparently not possible anymore since some MacOS version.
I imagine the com.apple.Accessibility. KeyRepeatInterval
relates to key repeat speed on virtual accessibility keyboard
If anyone figures out how to increase key repeat interval beyond 1 please do reach out 🙏🏻
@nclsndr I suspect that those settings control something else? I say that because my
com.apple.Accessibility.KeyRepeatEnabled
is0
but of course hold-to-repeat actually works. My guess is that this "KeyRepeat" only refers to some accessibility feature that might have key repeat.Also I noticed that on my Mojave machine those keys don't exist at all, but they do on Catalina. Catalina introduced a bunch of new accessibility features so my guess is it's related to one of those. I'd be curious to hear if you figure this out!