Level Navigation: 0 | 1 | 2 | Current Level: 3 | 4 | 5 | 6 |
Enable word wrap and format-on-save features to enhance your text editing experience and maintain code quality.
Update your ./vscode/settings.json
file to look like this:
{
"workbench.colorTheme": "Default Dark+",
"editor.minimap.enabled": true,
"editor.wordWrap": "on"
}
"editor.wordWrap"
β value is a string, so use quotes around "on"
."off"
also need quotes."on"
to "off"
(keep the quotes).Update your ./vscode/settings.json
file to look like this:
{
"workbench.colorTheme": "Default Dark+",
"editor.minimap.enabled": true,
"editor.wordWrap": "on",
"editor.formatOnSave": true
}
"editor.formatOnSave"
β the value is a boolean, so write true or false without quotes.true
to false
to turn it off (no quotes).You learned how to:
Level Navigation: 0 | 1 | 2 | Current Level: 3 | 4 | 5 | 6 |