如何在 Visual Studio 代码中关闭或重新映射 ctrl + 左键单击

How do I turn off or remap ctrl + left click in Visual Studio Code

有谁知道如何关闭或重新映射 Ctrl + 左键单击 Visual Studio 代码?我似乎有 Ctrl 键在用鼠标选择文本时被按下以复制大约 20% 的时间,而且导航到它中间的另一个文件真的很烦人。

Visual Studio Code - Key Bindings

我快速浏览了 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