Tools > Options > Environment > Keyboard
下是设置Edit.ToggleLineComment
我可以看到所选命令的快捷方式设置为
Ctrl + / (Global)
我希望当我按下快捷键时,任何选定的代码都会被注释掉,但是,当按下快捷键时什么也没有发生。我做错了什么?
对于默认键盘映射方案,
Ctrl + /
分配给 EditorContextMenus.CodeWindow.GenerateDocumentationComments
。确保先删除此快捷方式。
将映射从默认更改为 Visual Studio Code。
工具->选项->环境->键盘
重置按钮旁边,更改映射
我与 GitHub Copilot 的快捷方式有冲突。您可以更改或删除它:
{
"key": "ctrl+/",
"command": "-github.copilot.acceptCursorPanelSolution",
"when": "github.copilot.activated && github.copilot.panelVisible"
}