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
* Prevent quick suggestions when a snippet is active. Defaults to true.
4139
+
*/
4140
+
snippetsPreventQuickSuggestions?: boolean;
4137
4141
/**
4138
4142
* Favors words that appear close to the cursor.
4139
4143
*/
@@ -4295,6 +4299,7 @@ class EditorSuggest extends BaseEditorOption<EditorOption.suggest, ISuggestOptio
4295
4299
constdefaults: InternalSuggestOptions={
4296
4300
insertMode: 'insert',
4297
4301
filterGraceful: true,
4302
+
snippetsPreventQuickSuggestions: false,
4298
4303
localityBonus: false,
4299
4304
shareSuggestSelections: false,
4300
4305
selectionMode: 'always',
@@ -4373,6 +4378,11 @@ class EditorSuggest extends BaseEditorOption<EditorOption.suggest, ISuggestOptio
4373
4378
default: defaults.selectionMode,
4374
4379
markdownDescription: nls.localize('suggest.selectionMode',"Controls whether a suggestion is selected when the widget shows. Note that this only applies to automatically triggered suggestions (`#editor.quickSuggestions#` and `#editor.suggestOnTriggerCharacters#`) and that a suggestion is always selected when explicitly invoked, e.g via `Ctrl+Space`.")
0 commit comments