切换浏览器栏

问题描述 投票:0回答:1

我知道cmd+b切换边栏。我知道cmd+shift+e展示了探险家酒吧。我想要一个命令切换,而不是显示,切换,只有浏览器栏。有没有办法做到这一点?

visual-studio-code
1个回答
2
投票

Windows的快捷方式。将Ctrl更改为Cmd for mac:

{
    "key": "ctrl+shift+e",
    "command": "-workbench.view.explorer"
},
{
    "key": "ctrl+shift+e",
    "command": "workbench.view.explorer",
    "when": "!explorerViewletVisible"
},
{
    "key": "ctrl+shift+e",
    "command": "workbench.action.toggleSidebarVisibility",
    "when": "explorerViewletVisible"
},
© www.soinside.com 2019 - 2024. All rights reserved.