当前的功能是给我一个下拉选项,选择哪个选项卡是如此烦人。是否有可能删除它,使标签将像在一些现代网络浏览器。


当前回答

Visual Studio Code v1.35.0允许您设置(Ctrl+Tab) / (Shift+Ctrl+Tab)键序列,通过将这些键序列分别绑定到命令“View: Open Next Editor”和“View: Open Previous Editor”来依次在编辑器之间切换。

在macOS:

导航到:代码>首选项>键盘快捷键 搜索或导航到以下两个选项: 查看:打开“下一步编辑器” 查看:打开以前的编辑器 将两个键绑定更改为所需的键序列。 查看:打开下一个编辑器-> (Ctrl+Tab) 查看:打开以前的编辑器-> (Shift+Ctrl+Tab) 您可能会遇到冲突的绑定。如果是,请注意该命令并重新分配或删除现有的键绑定。

如果你搞砸了,你可以通过右键单击任何键绑定并选择“重置键绑定”来恢复到给定绑定的默认状态。

其他回答

窗户

以前的

Ctrl + Shift + Tab

Next

Ctrl + Tab

苹果操作系统

以前的

移位+ Cmd + [

Next

Shift + Cmd +]

macOS - 2017 年修订版

在2017年,VS CODE键盘快捷键已更改为CTRL+1, CTRL+2,CTRL+3等,以切换制表符。

CMD+1、CMD+2和CMD+3在制表符组之间切换并创建制表符组

更好的方法是使用alt+右和alt+左键导航,就像Jetbrains IDE Webstorm一样

这是我的配置。它还包括创建新文件和文件夹

    {
        "key": "ctrl+n",
        "command": "explorer.newFile"
    },
    {
        "key": "ctrl+shift+n",
        "command": "explorer.newFolder"
    },
    { 
        "key": "alt+left",
        "command": "workbench.action.previousEditor" 
    },
    { 
        "key": "alt+right",
        "command": "workbench.action.nextEditor" 
    }

这也适用于MAC OS:

按下选择特定的Tab: Control + 1或Control 2, Control 3等。

按下显示/选择所有可能的选项卡:Control + Tab。

Linux键映射来匹配浏览器:

[
    {
        "key": "ctrl+0",
        "command": "workbench.action.lastEditorInGroup"
    },
    {
        "key": "ctrl+1",
        "command": "workbench.action.openEditorAtIndex1"
    },
    {
        "key": "ctrl+2",
        "command": "workbench.action.openEditorAtIndex2"
    },
    {
        "key": "ctrl+3",
        "command": "workbench.action.openEditorAtIndex3"
    },
    {
        "key": "ctrl+4",
        "command": "workbench.action.openEditorAtIndex4"
    },
    {
        "key": "ctrl+5",
        "command": "workbench.action.openEditorAtIndex5"
    },
    {
        "key": "ctrl+6",
        "command": "workbench.action.openEditorAtIndex6"
    },
    {
        "key": "ctrl+7",
        "command": "workbench.action.openEditorAtIndex7"
    },
    {
        "key": "ctrl+8",
        "command": "workbench.action.openEditorAtIndex8"
    },
    {
        "key": "ctrl+9",
        "command": "workbench.action.openEditorAtIndex9"
    },
    {
        "key": "alt+1",
        "command": "workbench.action.focusFirstEditorGroup"
    },
    {
        "key": "alt+2",
        "command": "workbench.action.focusSecondEditorGroup"
    },
    {
        "key": "alt+3",
        "command": "workbench.action.focusThirdEditorGroup"
    }
]