提交 d2148923 编写于 作者: R Rob Lourens

Revert "Fix #56415 - 'new' tag for settings"

上级 5cf8f61b
......@@ -492,14 +492,12 @@ const editorConfiguration: IConfigurationNode = {
'editor.parameterHints.enabled': {
'type': 'boolean',
'default': EDITOR_DEFAULTS.contribInfo.parameterHints.enabled,
'description': nls.localize('parameterHints.enabled', "Enables a pop-up that shows parameter documentation and type information as you type."),
'tags': ['new']
'description': nls.localize('parameterHints.enabled', "Enables a pop-up that shows parameter documentation and type information as you type.")
},
'editor.parameterHints.cycle': {
'type': 'boolean',
'default': EDITOR_DEFAULTS.contribInfo.parameterHints.cycle,
'description': nls.localize('parameterHints.cycle', "Controls whether the parameter hints menu cycles or closes when reaching the end of the list."),
'tags': ['new']
'description': nls.localize('parameterHints.cycle', "Controls whether the parameter hints menu cycles or closes when reaching the end of the list.")
},
'editor.autoClosingBrackets': {
'type': 'boolean',
......
......@@ -653,8 +653,7 @@ configurationRegistry.registerConfiguration({
],
'description': nls.localize('settings.editor.desc', "Determines which settings editor to use by default."),
'default': 'ui',
'scope': ConfigurationScope.WINDOW,
'tags': ['new']
'scope': ConfigurationScope.WINDOW
},
'workbench.enableExperiments': {
'type': 'boolean',
......
......@@ -53,7 +53,7 @@ export class SettingsEditor2 extends BaseEditor {
private static NUM_INSTANCES: number = 0;
private static readonly SUGGESTIONS: string[] = [
'@modified', '@tag:usesOnlineServices', '@tag:new'
'@modified', '@tag:usesOnlineServices'
];
private defaultSettingsEditorModel: DefaultSettingsEditorModel;
......@@ -256,10 +256,6 @@ export class SettingsEditor2 extends BaseEditor {
this.instantiationService.createInstance(FilterByTagAction,
localize('filterModifiedLabel', "Show modified settings"),
MODIFIED_SETTING_TAG,
this),
this.instantiationService.createInstance(FilterByTagAction,
localize('filterNewLabel', "Show new settings"),
'new',
this)
];
if (this.environmentService.appQuality !== 'stable') {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册