From 6112310978efa3cb012561ff75df0f2bb8059720 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Tue, 21 Jul 2020 16:22:47 +0200 Subject: [PATCH] use workbench base config --- .../contrib/preferences/common/preferencesContribution.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vs/workbench/contrib/preferences/common/preferencesContribution.ts b/src/vs/workbench/contrib/preferences/common/preferencesContribution.ts index eab97b668a3..1873c7bdc83 100644 --- a/src/vs/workbench/contrib/preferences/common/preferencesContribution.ts +++ b/src/vs/workbench/contrib/preferences/common/preferencesContribution.ts @@ -23,6 +23,7 @@ import { IEditorInput } from 'vs/workbench/common/editor'; import { IEditorGroup } from 'vs/workbench/services/editor/common/editorGroupsService'; import { IEditorService, IOpenEditorOverride } from 'vs/workbench/services/editor/common/editorService'; import { FOLDER_SETTINGS_PATH, IPreferencesService, USE_SPLIT_JSON_SETTING } from 'vs/workbench/services/preferences/common/preferences'; +import { workbenchConfigurationNodeBase } from 'vs/workbench/common/configuration'; const schemaRegistry = Registry.as(JSONContributionRegistry.Extensions.JSONContribution); @@ -153,6 +154,7 @@ export class PreferencesContribution implements IWorkbenchContribution { const registry = Registry.as(Extensions.Configuration); registry.registerConfiguration({ + ...workbenchConfigurationNodeBase, 'properties': { 'workbench.settings.enableNaturalLanguageSearch': { 'type': 'boolean', -- GitLab