DEV Community

Discussion on: VS Code: Collapse-and-Expand

Collapse
 
vikasjk profile image
Vikas-jk

Great article, but you should also note, VS code should also have this settings enabled in VS Code JSON settings
{
"editor.showFoldingControls": "always",
"editor.folding": true,
"editor.foldingStrategy": "indentation",
}

Source: What is shortcut for expand-collapse sections of code in VS Code?