You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
registry.registerWorkbenchAction(SyncActionDescriptor.from(FocusFilesExplorer),'File: Focus on Files Explorer',category.value);
42
40
registry.registerWorkbenchAction(SyncActionDescriptor.from(ShowActiveFileInExplorer),'File: Reveal Active File in Side Bar',category.value);
43
41
registry.registerWorkbenchAction(SyncActionDescriptor.from(CollapseExplorerView),'File: Collapse Folders in Explorer',category.value);
@@ -182,19 +180,6 @@ export function appendEditorTitleContextMenuItem(id: string, title: string, when
182
180
});
183
181
}
184
182
185
-
// Reopen with editor title
186
-
187
-
MenuRegistry.appendMenuItem(MenuId.EditorTitle,{
188
-
command: {
189
-
id: ReopenResourcesAction.ID,
190
-
title: ReopenResourcesAction.LABEL,
191
-
category: fileCategory,
192
-
},
193
-
group: '6_reopen',
194
-
order: 20,
195
-
when: ActiveEditorAvailableEditorIdsContext,
196
-
});
197
-
198
183
// Editor Title Menu for Conflict Resolution
199
184
appendSaveConflictEditorTitleAction('workbench.files.action.acceptLocalChanges',nls.localize('acceptLocalChanges',"Use your changes and overwrite file contents"),{id: 'codicon/check'},-10,acceptLocalChangesCommand);
200
185
appendSaveConflictEditorTitleAction('workbench.files.action.revertLocalChanges',nls.localize('revertLocalChanges',"Discard your changes and revert to file contents"),{id: 'codicon/discard'},-9,revertLocalChangesCommand);
0 commit comments