You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Does not clear active inline suggestions when the editor loses focus.
@@ -4426,7 +4426,7 @@ class InlineEditorSuggest extends BaseEditorOption<EditorOption.inlineSuggest, I
4426
4426
keepOnBlur: false,
4427
4427
fontFamily: 'default',
4428
4428
syntaxHighlightingEnabled: true,
4429
-
minimalDelay: 0,
4429
+
minShowDelay: 0,
4430
4430
edits: {
4431
4431
enabled: true,
4432
4432
showCollapsed: false,
@@ -4468,12 +4468,12 @@ class InlineEditorSuggest extends BaseEditorOption<EditorOption.inlineSuggest, I
4468
4468
default: defaults.suppressSuggestions,
4469
4469
description: nls.localize('inlineSuggest.suppressSuggestions',"Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available.")
4470
4470
},
4471
-
'editor.inlineSuggest.minimalDelay': {
4471
+
'editor.inlineSuggest.minShowDelay': {
4472
4472
type: 'number',
4473
4473
default: 0,
4474
4474
minimum: 0,
4475
4475
maximum: 10000,
4476
-
description: nls.localize('inlineSuggest.minimalDelay',"Controls the minimal delay in milliseconds after which inline suggestions are shown after typing."),
4476
+
description: nls.localize('inlineSuggest.minShowDelay',"Controls the minimal delay in milliseconds after which inline suggestions are shown after typing."),
0 commit comments