LineHasInlineSuggestion
Plays a sound / audio cue when the active line has an inline suggestion
{
"accessibility.signals.lineHasInlineSuggestion": {
"sound": "auto"
} // default
}
Type
object
Default
{
"sound": "auto"
}
Object Properties
Key | Type | Default | Range | Description |
---|---|---|---|---|
"sound" | string | "auto" | "auto" , "off" , "on" | Plays a sound when the active line has an inline suggestion. |
BUG: Intellisense says default is off
but is actually auto
.
Description
Controls if sound signals are played when an Inline Suggestion appears on the focused Editor line.
When "sound"
is set to "auto"
, the sound signal will play whenever an Inline Suggestion appears on the focused Editor line and a screen reader is detected or "editor.accessibilitySupport": "on"
. When set to "off"
, the sound signal will never play even when a screen reader is detected or "editor.accessibilitySupport": "on"
. When set to "on"
, the sound signal will always play even when no screen reader is detected or "editor.accessiblitySupport": "off"
.