-
Normally, I use the Vim extension for VSCode and enable key-repeating with: defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false Obviously, that wouldn't work with How do I enable key-repeating so that it works within Much thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
jsjoeio
Nov 5, 2020
Replies: 2 comments 1 reply
-
I don't have a Mac so my knowledge here is severely limited but I think
the only way might be to disable it for Chrome or globally. There
doesn't seem to be an option to disable it for a specific website or
target a PWA or anything like that.
|
Beta Was this translation helpful? Give feedback.
1 reply
-
Disabling it globally worked (as suggested by @code-asher) On macOS, you can do this by running: defaults write -g ApplePressAndHoldEnabled -bool false |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jsjoeio
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Disabling it globally worked (as suggested by @code-asher)
On macOS, you can do this by running:
defaults write -g ApplePressAndHoldEnabled -bool false
Source