Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 416 Bytes

File metadata and controls

13 lines (8 loc) · 416 Bytes

Working with Vim Extensions

Allow for pressing and holding vim keybinds

To disable the Apple press and hold for VSCode only, run this command in a terminal:

defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false

Then restart VSCode. To re-enable, run this command in a terminal:

defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool true

https://stackoverflow.com/a/44010683