英文:
Shortcut key in visual studio code to view the current editor tab's handle's context menu
问题
Visual Studio Code 中是否有快捷键可以打开当前打开标签的上下文菜单?我想通过快捷键打开此菜单,而不是用鼠标右键单击它。
这是一个示例:
标签菜单示例
在 Visual Studio 中有一个快捷键,即 Alt + -,我在这里找到了它:Visual Studio 帖子
英文:
Is there a shortcut in visual studio code to open the context menu of the currently open tab's handle? I want to open this menu via shortcut, not by right clicking on it with my mouse.
Here is the example:
There is a shortcut for this in visual studio <kbd>Alt</kbd> + <kbd>-</kbd> which i've found here: visual studio post
答案1
得分: 0
I don't think there is a bindable command for opening the context menu for editor tab handles at the time of this writing. Searching "context menu" in the keyboard shortcut editor, there are editor.action.showContextMenu
(for the editor area), and settings.action.showContextMenu
(for the settings UI), but that's it.
Googling "github vscode issues keyboard shortcut tab context menu
", I found the following:
- Show context menu on a tab should be a command #93497
- List and tabs area: show context menu should be a command #93677
Both are closed as backlog candidates. Maybe some day they will be looked at again.
I'm not aware of any workarounds.
英文:
I don't think there is a bindable command for opening the the context menu for editor tab handles at the time of this writing. Searching "context menu" in the keyboard shortcut editor, there are editor.action.showContextMenu
(for the editor area), and settings.action.showContextMenu
(for the settings UI), but that it.
Googling "github vscode issues keyboard shortcut tab context menu
", I found the following:
- Show context menu on a tab should be a command #93497
- List and tabs area: show context menu should be a command #93677
Both are closed as backlog candidates. Maybe some day they will be looked at again.
I'm not aware of any workarounds.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论