Files
azuredatastudio/src/vs/workbench/contrib/preferences/browser/settingsLayout.ts
Anthony Dresser 07109617b5 Merge from vscode e0762af258c0b20320ed03f3871a41967acc4421 (#7404)
* Merge from vscode e0762af258c0b20320ed03f3871a41967acc4421

* readd svgs
2019-09-27 11:13:19 -07:00

228 lines
5.7 KiB
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { localize } from 'vs/nls';
import { ISetting } from 'vs/workbench/services/preferences/common/preferences';
export interface ITOCEntry {
id: string;
label: string;
children?: ITOCEntry[];
settings?: Array<string | ISetting>;
}
export const commonlyUsedData: ITOCEntry = {
id: 'commonlyUsed',
label: localize('commonlyUsed', "Commonly Used"),
settings: ['files.autoSave', 'editor.fontSize', 'editor.fontFamily', 'editor.tabSize', 'editor.renderWhitespace', 'editor.cursorStyle', 'editor.multiCursorModifier', 'editor.insertSpaces', 'editor.wordWrap', 'files.exclude', 'files.associations']
};
export const tocData: ITOCEntry = {
id: 'root',
label: 'root',
children: [
{
id: 'editor',
label: localize('textEditor', "Text Editor"),
settings: ['editor.*'],
children: [
{
id: 'editor/cursor',
label: localize('cursor', "Cursor"),
settings: ['editor.cursor*']
},
{
id: 'editor/find',
label: localize('find', "Find"),
settings: ['editor.find.*']
},
{
id: 'editor/font',
label: localize('font', "Font"),
settings: ['editor.font*']
},
{
id: 'editor/format',
label: localize('formatting', "Formatting"),
settings: ['editor.format*']
},
{
id: 'editor/diffEditor',
label: localize('diffEditor', "Diff Editor"),
settings: ['diffEditor.*']
},
{
id: 'editor/minimap',
label: localize('minimap', "Minimap"),
settings: ['editor.minimap.*']
},
{
id: 'editor/suggestions',
label: localize('suggestions', "Suggestions"),
settings: ['editor.*suggest*']
},
{
id: 'editor/files',
label: localize('files', "Files"),
settings: ['files.*']
}
]
},
{
id: 'workbench',
label: localize('workbench', "Workbench"),
settings: ['workbench.*'],
children: [
{
id: 'workbench/appearance',
label: localize('appearance', "Appearance"),
settings: ['workbench.activityBar.*', 'workbench.*color*', 'workbench.fontAliasing', 'workbench.iconTheme', 'workbench.sidebar.location', 'workbench.*.visible', 'workbench.tips.enabled', 'workbench.tree.*', 'workbench.view.*']
},
{
id: 'workbench/breadcrumbs',
label: localize('breadcrumbs', "Breadcrumbs"),
settings: ['breadcrumbs.*']
},
{
id: 'workbench/editor',
label: localize('editorManagement', "Editor Management"),
settings: ['workbench.editor.*']
},
{
id: 'workbench/settings',
label: localize('settings', "Settings Editor"),
settings: ['workbench.settings.*']
},
{
id: 'workbench/zenmode',
label: localize('zenMode', "Zen Mode"),
settings: ['zenmode.*']
},
{
id: 'workbench/screencastmode',
label: localize('screencastMode', "Screencast Mode"),
settings: ['screencastMode.*']
}
]
},
{
id: 'window',
label: localize('window', "Window"),
settings: ['window.*'],
children: [
{
id: 'window/newWindow',
label: localize('newWindow', "New Window"),
settings: ['window.*newwindow*']
}
]
},
{
id: 'features',
label: localize('features', "Features"),
children: [
{
id: 'features/explorer',
label: localize('fileExplorer', "Explorer"),
settings: ['explorer.*', 'outline.*']
},
{
id: 'features/search',
label: localize('search', "Search"),
settings: ['search.*', 'searchRipgrep.*']
}
,
{
id: 'features/debug',
label: localize('debug', "Debug"),
settings: ['debug.*', 'launch']
},
{
id: 'features/scm',
label: localize('scm', "SCM"),
settings: ['scm.*']
},
{
id: 'features/extensions',
label: localize('extensionViewlet', "Extension Viewlet"),
settings: ['extensions.*']
},
{
id: 'features/terminal',
label: localize('terminal', "Terminal"),
settings: ['terminal.*']
},
{
id: 'features/problems',
label: localize('problems', "Problems"),
settings: ['problems.*']
},
{
id: 'features/comments',
label: localize('comments', "Comments"),
settings: ['comments.*']
},
{
id: 'features/remote',
label: localize('remote', "Remote"),
settings: ['remote.*']
}
]
},
{
id: 'application',
label: localize('application', "Application"),
children: [
{
id: 'application/http',
label: localize('proxy', "Proxy"),
settings: ['http.*']
},
{
id: 'application/keyboard',
label: localize('keyboard', "Keyboard"),
settings: ['keyboard.*']
},
{
id: 'application/update',
label: localize('update', "Update"),
settings: ['update.*']
},
{
id: 'application/telemetry',
label: localize('telemetry', "Telemetry"),
settings: ['telemetry.*']
},
{
id: 'application/configurationSync',
label: localize('configuration sync', "Configuration Sync"),
settings: ['configurationSync.*']
}
]
}
]
};
export const knownAcronyms = new Set<string>();
[
'css',
'html',
'scss',
'less',
'json',
'js',
'ts',
'ie',
'id',
'php',
].forEach(str => knownAcronyms.add(str));
export const knownTermMappings = new Map<string, string>();
knownTermMappings.set('power shell', 'PowerShell');
knownTermMappings.set('powershell', 'PowerShell');
knownTermMappings.set('javascript', 'JavaScript');
knownTermMappings.set('typescript', 'TypeScript');