From d28f895d31bc5e2d445ec643350941257daeb787 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Mon, 10 Dec 2018 11:36:35 +0100 Subject: [PATCH] Revert "remove `shareSuggestSelections`-setting for now #62365" This reverts commit f6cff39cb4c398eba8e041b5a0f50bd3b33ce6a7. --- src/vs/editor/common/config/commonEditorConfig.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/vs/editor/common/config/commonEditorConfig.ts b/src/vs/editor/common/config/commonEditorConfig.ts index 190862e8bd0..8fa09be3b70 100644 --- a/src/vs/editor/common/config/commonEditorConfig.ts +++ b/src/vs/editor/common/config/commonEditorConfig.ts @@ -639,6 +639,11 @@ const editorConfiguration: IConfigurationNode = { default: false, description: nls.localize('suggest.localityBonus', "Controls whether sorting favours words that appear close to the cursor.") }, + 'editor.suggest.shareSuggestSelections': { + type: 'boolean', + default: false, + markdownDescription: nls.localize('suggest.shareSuggestSelections', "Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`).") + }, 'editor.suggest.snippetsPreventQuickSuggestions': { type: 'boolean', default: true, -- GitLab