Level Navigation: 0 | 1 | 2 | 3 | Current Level: 4 | 5 | 6 |
Configure auto-save and tab label formatting to streamline your file management workflow.
Update your ./vscode/settings.json
file to look like this:
{
"workbench.colorTheme": "Default Dark+",
"editor.minimap.enabled": true,
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"files.autoSave": "afterDelay"
}
"files.autoSave"
→ value is a string, so use quotes (e.g., "afterDelay"
, "off"
)."afterDelay"
to "off"
if you want to disable it.Update your ./vscode/settings.json
file to look like this:
{
"workbench.colorTheme": "Default Dark+",
"editor.minimap.enabled": true,
"editor.wordWrap": "on",
"editor.formatOnSave": true,
"files.autoSave": "afterDelay",
"workbench.editor.labelFormat": "short"
}
"workbench.editor.labelFormat"
→ value is a string, so always use quotes like "short"
, "default"
, or "long"
."short"
, "default"
, and "long"
to compare.You learned how to:
Level Navigation: 0 | 1 | 2 | 3 | Current Level: 4 | 5 | 6 |