gpt4 book ai didi

visual-studio-code - 如何在 VS Code 中为一个命令添加多个键盘快捷键?

转载 作者:行者123 更新时间:2023-12-05 03:52:22 24 4
gpt4 key购买 nike

如何向 VS Code 中的单个命令添加多个键盘快捷键?

举个例子(来自评论),ctrl + 0 & ctrl + 1 都应该做相同的命令/ Action 。因此,执行相同命令的快捷方式完全不同。

最佳答案

假设有 2 个绑定(bind)可以像这样关闭窗口:

enter image description here

假设我们想再添加一个键绑定(bind),例如 CMD+K、CMD+1。您可以通过右键单击命令并选择复制来做到这一点:

enter image description here

然后,单击右上角的图标以打开键盘快捷键 JSON。该图标在页面上有一个弯曲的箭头:

enter image description here

您的用户定义的键绑定(bind).JSON 将出现。在其中输入:

// Place your key bindings in this file to override the defaults
[
{
"key": "cmd+k cmd+1",
"command": "workbench.action.closeWindow"
}
]

保存并关闭。

现在您将看到 3 个按键绑定(bind),如下所示:

enter image description here

现在,试试你的新键绑定(bind)。

关于visual-studio-code - 如何在 VS Code 中为一个命令添加多个键盘快捷键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62235792/

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