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

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


当前回答

如果你在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。然后它开始正常工作。

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

defaults write -g ApplePressAndHoldEnabled -bool false
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 '默认写com.microsoft.VSCode ApplePressAndHoldEnabled -bool false',但下面对我有用:

sudo defaults write -g ApplePressAndHoldEnabled -bool false

参考:https://github.com/VSCodeVim/Vim/issues/345

操作系统:Mac

要启用重复键,请在终端中执行以下命令并重新启动VS Code:

$ defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false         # For VS Code
$ defaults write com.microsoft.VSCodeInsiders ApplePressAndHoldEnabled -bool false # For VS Code Insider
$ defaults write com.visualstudio.code.oss ApplePressAndHoldEnabled -bool false    # For VS Codium
$ defaults delete -g ApplePressAndHoldEnabled                                      # If necessary, reset global default

我们还建议增加系统首选项->键盘中的键重复和延迟直到重复设置。

这都在我们的自述文件https://github.com/VSCodeVim/Vim/blob/master/README.md#mac-setup