From 0cbd9ea2f6b7e8f7f15885d0cabf99e4a6e7df36 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Tue, 22 May 2018 10:58:32 -0700 Subject: [PATCH] Fix #50295, add missing type to search.location setting --- .../parts/search/electron-browser/search.contribution.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/workbench/parts/search/electron-browser/search.contribution.ts b/src/vs/workbench/parts/search/electron-browser/search.contribution.ts index ead689a6e83..443ce0afc57 100644 --- a/src/vs/workbench/parts/search/electron-browser/search.contribution.ts +++ b/src/vs/workbench/parts/search/electron-browser/search.contribution.ts @@ -600,6 +600,7 @@ configurationRegistry.registerConfiguration({ included: platform.isMacintosh }, 'search.location': { + type: 'string', enum: ['sidebar', 'panel'], default: 'sidebar', description: nls.localize('search.location', "Controls if the search will be shown as a view in the sidebar or as a panel in the panel area for more horizontal space. Next release search in panel will have improved horizontal layout and this will no longer be a preview."), -- GitLab