我使用vim插件,我通常通过按住j来滚动vim。在VSCode中,按住j只做一个j命令,不管它保持了多长时间。

即使在vanilla vscode中,这也不能工作-如果你试图输入###########################的长块作为注释分隔符,这是有问题的。你知道如何启用这个功能吗?


当前回答

VS Code的官方vim-plugin提到了如何在macOS上设置它

defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false
defaults delete -g ApplePressAndHoldEnabled  # If necessary, reset global default

其他回答

Though I reset with above mentioned commands and even after reboot, Once I open
VSCode they are getting reset, so I had 'code' script to set them back
every time I open VSCode editor.

 $ cat code
VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* &
defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false
defaults delete -g ApplePressAndHoldEnabled

如果你在mac上使用VSCodium:

默认写com.visualstudio.code.oss ApplePressAndHoldEnabled -bool false

其他针对com.microsoft.VSCode的答案不工作,因为您没有运行MS VSCode。命令default write生成/更新~/Library/Preferences/中附加了.plist的文件,您必须以正确的文件为目标。


我的软件和版本: macOS Mojave 10.14.6 VSCodium 1.41.1 - Vim (vscodevim) 1.12.4与neovim启用 Neovim 0.4.3 Vim 8.1.2250

为了我的M1 MacBook Pro,我不得不跑路

sudo defaults write -g ApplePressAndHoldEnabled -bool false

就像苹果头说的那样

然后不得不重新启动/重新登录Mac。然后它开始正常工作。

如果你在Mac M1上,我必须做的是运行@NoAppleOnHead说的:

sudo defaults write -g ApplePressAndHoldEnabled -bool false

然后重新启动你的Mac,你应该很好

以上这些方法在我的新笔记本电脑上都不适用,相反,我必须使用:

defaults write -g ApplePressAndHoldEnabled -bool false