Answers for "how to collapse all code in vs code"

40

collapse all code vscode

Use:
Ctrl + K + 0 to fold all 
Ctrl + K + J to unfold all

Mac:
Command + K + 0
Command + K + J
Posted by: Guest on October-21-2020
3

visual studio code collapse all

// Fold
Ctrl + K + 0 // fold everything that could be folded
Ctrl + K + 1 // fold just the main branches

// Unfold
Ctrl + K + J // unfold everything
Posted by: Guest on February-11-2021
5

collapse all code visual studio

Visual studio 
fold all: Ctrl + M + O
unfold all: Ctrl + M + P
Posted by: Guest on November-23-2020
0

open all collapse in vscode

Ctrl + K + 0    fold all 
Ctrl + K + J    unfold all
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
Posted by: Guest on March-23-2022

Code answers related to "how to collapse all code in vs code"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language