Visual Studio代码 - 键盘快捷键 - 展开/折叠全部

时间:2016-09-27 07:17:32

标签: visual-studio-code

尝试在Intellij中找到等同于 ctrl + shift +“ - ”的内容,以折叠/扩展所有功能。

4 个答案:

答案 0 :(得分:65)

在这里。

Ctrl+Shift+[    Fold (collapse) region  editor.fold
Ctrl+Shift+]    Unfold (uncollapse) region  editor.unfold
Ctrl+K Ctrl+[   Fold (collapse) all subregions  editor.foldRecursively
Ctrl+K Ctrl+]   Unfold (uncollapse) all subregions  editor.unfoldRecursively
Ctrl+K Ctrl+0   Fold (collapse) all regions editor.foldAll
Ctrl+K Ctrl+J   Unfold (uncollapse) all regions

在此链接上查看Visual Studio代码Keybindings部分。

pdf.here中提供的平台特定键盘快捷键是链接

WindowsMACLinux

答案 1 :(得分:9)

您可以为其设置自定义值。

  1. 在Mac上打开命令选项板( + + P F1
  2. 搜索Open Keyboard Shortcuts
  3. 然后搜索collapse
  4. 最后点击Collapse AllCollapse Folders in Explorer选项附近的 + 符号,然后像我一样设置快捷方式
  5. keyboard vscode collapse all shortcuts

    或者您可以打开keybindings.json文件并将其添加到主阵列。

     ,
      {
        "key": "cmd+k cmd+s",
        "command": "search.action.collapseSearchResults"
      },
      {
        "key": "cmd+k cmd+e",
        "command": "workbench.files.action.collapseExplorerFolders"
      }
    

    和平! ✌️

答案 2 :(得分:5)

我使用的一种简单方法是:

  1. 使用 Ctrl + Shift + P
  2. 启动命令面板
  3. 搜索Collapse Folders in Explorer
  4. 回车

您还可以在设置中为此命令定义自定义快捷方式。

答案 3 :(得分:1)

转到 文件->首选项->键盘快捷键 (或Ctrl + K Ctrl + S)

搜索单词 全部折叠

您需要的是:

  • 全部折叠
  • 全部展开

设置自定义键盘快捷键