在使用ctrl + /
快捷方式注释当前行之后,如何使Visual Studio Code将光标向下移动一行?我尝试过(在用户设置中):
"vim.normalModeKeyBindings": [
{
"before": ["<C+/>"],
"after": ["<C+/>", "j"]
}
]
但它不起作用。
使用Linux Manjaro + vscode 1.27.2
答案 0 :(得分:0)
如果您选中keybindings.json
(点击齿轮图标),则搜索comment
您会发现那里有一个Toggle Line Comment
命令。
因此,您可能需要先禁用它。
答案 1 :(得分:0)
当前vscode(1.48.0)的解决方案是将其添加到keybindings.json
:
{
"key": "ctrl+/",
"command": "macros.commentLine",
"when": "editorTextFocus && !editorReadonly"
},