gpt4 book ai didi

c# - 如何在 Visual Studio Code 中关闭或重新映射 ctrl + 左键单击

转载 作者:搜寻专家 更新时间:2023-10-30 21:42:59 24 4
gpt4 key购买 nike

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

Visual Studio Code - Key Bindings

最佳答案

我快速浏览了 VS Code 键盘快捷键文档并找到了 accepted keys 的列表。 .

enter image description here

通常您会转到文件 > 首选项 > 键盘快捷键 并像这样添加您的自定义绑定(bind):

(这是在 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" }
]

但不幸的是,根据文档,鼠标重新绑定(bind)似乎不受支持。

据说 VS Code 是一个开源项目,因此您可以随时提出此功能或参与进来,看看您能做什么!

这是编辑器的配置文件。 https://github.com/Microsoft/vscode/blob/master/src/vs/editor/common/config/config.ts

关于c# - 如何在 Visual Studio Code 中关闭或重新映射 ctrl + 左键单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34322139/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com