Appearance
Settings that control the appearance of the spell checker.
| Setting | Scope | Description |
|---|---|---|
cSpell.dark | application | Decoration for dark themes. |
cSpell.doNotUseCustomDecorationForScheme | application | Use VS Code to Render Spelling Issues |
cSpell.light | application | Decoration for light themes. |
cSpell.overviewRulerColor | application | The CSS color used to show issues in the ruler. |
cSpell.showInRuler | application | Show spelling issues in the editor ruler. |
cSpell.textDecoration | application | The CSS Style used to decorate spelling issues. Depends upon cSpell.useCustomDecorations. |
cSpell.textDecorationColor | application | The decoration color for normal spelling issues. |
cSpell.textDecorationColorFlagged | application | The decoration color for flagged issues. |
cSpell.textDecorationColorSuggestion | application | The decoration color for spelling suggestions. |
cSpell.textDecorationLine | application | The CSS line type used to decorate issues. |
cSpell.textDecorationStyle | application | The CSS line style used to decorate issues. |
cSpell.textDecorationThickness | application | The CSS line thickness used to decorate issues. |
cSpell.useCustomDecorations | application | Draw custom decorations on Spelling Issues. |
Settings
cSpell.dark
Name
cSpell.darkDescription
Decoration for dark themes.
See:
Type
objectScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
- none -
Since Version
4.0.0
cSpell.doNotUseCustomDecorationForScheme
Name
cSpell.doNotUseCustomDecorationForScheme-- Use VS Code to Render Spelling IssuesDescription
Use the VS Code Diagnostic Collection to render spelling issues.
With some edit boxes, like the source control message box, the custom decorations do not show up. This setting allows the use of the VS Code Diagnostic Collection to render spelling issues.
Type
objectScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
{"vscode-scm":true}Since Version
4.0.0
cSpell.light
Name
cSpell.lightDescription
Decoration for light themes.
See:
Type
objectScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
- none -
Since Version
4.0.0
cSpell.overviewRulerColor
Name
cSpell.overviewRulerColorDescription
The CSS color used to show issues in the ruler.
Depends upon
cSpell.useCustomDecorations. Disable the ruler by settingcSpell.showInRulertofalse.See:
Examples:
greenDarkYellow#ffff0080- semi-transparent yellow.rgb(255 153 0 / 80%)
Type
stringScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
"#348feb80"Since Version
4.0.0
cSpell.showInRuler
Name
cSpell.showInRulerDescription
Show spelling issues in the editor ruler.
Note: This setting is only used when
cSpell.useCustomDecorationsistrue.Note: To set the color of the ruler, use
cSpell.overviewRulerColor.Type
booleanScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
trueSince Version
4.0.35
cSpell.textDecoration
Name
cSpell.textDecorationDescription
The CSS Style used to decorate spelling issues. Depends upon
cSpell.useCustomDecorations.This setting is used to manually configure the text decoration. If it is not set, the following settings are used:
cSpell.textDecorationLineto pick the line typecSpell.textDecorationStyleto pick the stylecSpell.textDecorationColorto set the colorcSpell.textDecorationThicknessto set the thickness.
See: text-decoration - CSS: Cascading Style Sheets, MDN
Format:
<line> [style] <color> [thickness]- line -
underline,overline, see: text-decoration-line, MDN - style -
solid,wavy,dotted, see: text-decoration-style, MDN - color - see: text-decoration-color, MDN
- thickness - see: text-decoration-thickness, MDN
Examples:
underline greenunderline dotted yellow 0.2remunderline wavy #ff0c 1.5px- Wavy underline with 1.5px thickness in semi-transparent yellow.
To change the ruler color, use
cSpell.overviewRulerColor.Type
stringScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
- none -
Since Version
4.0.0
cSpell.textDecorationColor
Name
cSpell.textDecorationColorDescription
The decoration color for normal spelling issues.
See: text-decoration - CSS: Cascading Style Sheets, MDN
- color - see: text-decoration-color, MDN
To change the ruler color, use
cSpell.overviewRulerColor.Examples:
greenyellow#ff0c
Type
stringScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
"#348feb"Since Version
4.0.0
cSpell.textDecorationColorFlagged
Name
cSpell.textDecorationColorFlaggedDescription
The decoration color for flagged issues.
See: text-decoration - CSS: Cascading Style Sheets, MDN
- color - see: text-decoration-color, MDN
Examples:
greenyellow#ff0c
Type
stringScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
"#f44"Since Version
4.0.0
cSpell.textDecorationColorSuggestion
Name
cSpell.textDecorationColorSuggestionDescription
The decoration color for spelling suggestions.
See: text-decoration - CSS: Cascading Style Sheets, MDN
- color - see: text-decoration-color, MDN
Common Format:
#RGBAor#RRGGBBAAor#RGBor#RRGGBBExamples:
greenyellow#ff0c
Type
stringScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
"#cf88"Since Version
4.0.2
cSpell.textDecorationLine
Name
cSpell.textDecorationLineDescription
The CSS line type used to decorate issues.
See: text-decoration - CSS: Cascading Style Sheets, MDN
- line -
underline,overline, see: text-decoration-line, MDN
- line -
Type
( "underline" | "overline" | "line-through" )Scope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
"underline"Since Version
4.0.0
cSpell.textDecorationStyle
Name
cSpell.textDecorationStyleDescription
The CSS line style used to decorate issues.
See: text-decoration - CSS: Cascading Style Sheets, MDN
- style -
solid,wavy,dotted, see: text-decoration-style, MDN
- style -
Type
( "solid" | "wavy" | "dotted" | "dashed" | "double" )Scope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
"dashed"Since Version
4.0.0
cSpell.textDecorationThickness
Name
cSpell.textDecorationThicknessDescription
The CSS line thickness used to decorate issues.
See: text-decoration - CSS: Cascading Style Sheets, MDN
- thickness - see: text-decoration-thickness, MDN
Examples:
autofrom-font0.2rem1.5px10%
Type
stringScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
"auto"Since Version
4.0.0
cSpell.useCustomDecorations
Name
cSpell.useCustomDecorationsDescription
Draw custom decorations on Spelling Issues.
true- Use custom decorations. - VS Code Diagnostic Severity Levels are not used.false- Use the VS Code Diagnostic Collection to render spelling issues.
Note: This setting overrides the VS Code Diagnostics setting:
cSpell.diagnosticLevel.Type
booleanScope
application - Settings that apply to all instances of VS Code and can only be configured in user settings.
Default
falseSince Version
4.0.0