有没有人知道如何在Visual Studio代码中关闭或重新映射 Ctrl +左键单击?我用鼠标选择文本时似乎按下了 Ctrl 键约占20%的时间,导致到中间的另一个文件真的很烦人。
答案 0 :(得分:2)
我快速浏览了 VS Code 键盘快捷键文档,找到了accepted keys的列表。
通常你会去档案>偏好>键盘快捷键并添加您的自定义绑定:
(这是在@ C:\ Users \ [user] \ AppData \ Roaming \ Code \ User找到的keybindings.json文件)
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "f8", "command": "workbench.action.tasks.build" },
{ "key": "ctrl+[mouse button]", "command": "cursorWordLeft",
"when": "editorTextFocus" }
]
但不幸的是,根据文档,鼠标重新绑定似乎不受支持。
据说VS Code是一个开源项目,所以你总是可以提出这个功能或者投入,看看你能做些什么!
这是编辑器的配置文件。 https://github.com/Microsoft/vscode/blob/master/src/vs/editor/common/config/config.ts