Visual studio code - keyboard shortcuts - expand/collapse all
Trying to find the equivalent to Ctrl + Shift + - in Intellij that collapses/expands all functions.
Here it is.
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
Take Look at Visual studio Code Keybindings section at this link.
Also Platform specific Key board shortcuts available in pdf.here is the links
Windows,MAC,Linux
You can set custom values for that.
- Open the Command Palette (⌘ + ⇧ + P or F1 on Mac)
- Search
Open Keyboard Shortcuts
- Then search for
collapse
- Finally click the + sign near the
Collapse All
andCollapse Folders in Explorer
options and set the shortcuts like I did
Or you can open keybindings.json
file and add this to the main array.
,
{
"key": "cmd+k cmd+s",
"command": "search.action.collapseSearchResults"
},
{
"key": "cmd+k cmd+e",
"command": "workbench.files.action.collapseExplorerFolders"
}
Go to File --> Preferences --> Keyboard Shortcuts (or Ctrl+K Ctrl+S)
Search for the word fold all
The ones you need are:
- Fold All
- Unfold All
Set your custom keyboard shortcut
One simple way I use is:
- Launch command pallete with Ctrl + Shift + P
- Search for
Collapse Folders in Explorer
- Press Enter
You can also define a custom shortcut for this command in settings.