diff --git a/docs/getstarted/settings.md b/docs/getstarted/settings.md index e5396940e..160d5d231 100644 --- a/docs/getstarted/settings.md +++ b/docs/getstarted/settings.md @@ -1541,6 +1541,12 @@ Below are the Visual Studio Code default settings and their values. You can also // LESS + // Insert semicolon at end of line when completing CSS properties + "less.completion.completePropertyWithSemicolon": true, + + // By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior. + "less.completion.triggerPropertyValueCompletion": true, + // Invalid number of parameters. "less.lint.argumentsInColorFunction": "error", @@ -1603,6 +1609,12 @@ Below are the Visual Studio Code default settings and their values. You can also // SCSS (Sass) + // Insert semicolon at end of line when completing CSS properties + "scss.completion.completePropertyWithSemicolon": true, + + // By default, VS Code triggers property value completion after selecting a CSS property. Use this setting to disable this behavior. + "scss.completion.triggerPropertyValueCompletion": true, + // Invalid number of parameters. "scss.lint.argumentsInColorFunction": "error",