Skip to content

Commit

Permalink
add schema/docs for editor.suggest.selectQuickSuggestions setting
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Dec 14, 2022
1 parent d736ca9 commit e70d990
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/vs/editor/common/config/editorOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4244,6 +4244,11 @@ class EditorSuggest extends BaseEditorOption<EditorOption.suggest, ISuggestOptio
default: defaults.shareSuggestSelections,
markdownDescription: nls.localize('suggest.shareSuggestSelections', "Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`).")
},
'editor.suggest.selectQuickSuggestions': {
type: 'boolean',
default: defaults.selectQuickSuggestions,
markdownDescription: nls.localize('suggest.selectQuickSuggestions', "Controls whether the suggest becomes active when triggered via quick suggest or trigger characters. ")
},
'editor.suggest.snippetsPreventQuickSuggestions': {
type: 'boolean',
default: defaults.snippetsPreventQuickSuggestions,
Expand Down

0 comments on commit e70d990

Please sign in to comment.