Is there a quick change tabs function in Visual Studio Code?

后端 未结 18 1794
星月不相逢
星月不相逢 2020-12-07 06:26

The current function of giving me a dropdown option of which tab to choose is just so annoying. Is there a possibility to remove it so the tabs would work like in some moder

18条回答
  •  醉酒成梦
    2020-12-07 07:03

    Better approch is use alt+right and alt+left keys to navigate like Jetbrains IDE Webstorm does

    Here is my config. it also include create new file and folder

        {
            "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" 
        }
    

提交回复
热议问题