Merge pull request #23049 from cristianhosu/22768

Feature #22768
This commit is contained in:
Benjamin Pasero
2017-03-24 06:57:31 -07:00
committed by GitHub
7 changed files with 39 additions and 2 deletions

View File

@@ -511,7 +511,7 @@ export class VSCodeMenu {
if (folders.length || files.length) {
openRecentMenu.append(__separator__());
openRecentMenu.append(new MenuItem(this.likeAction('clearRecentlyOpened', { label: mnemonicLabel(nls.localize({ key: 'miClearItems', comment: ['&& denotes a mnemonic'] }, "&&Clear Items")), click: () => this.windowsService.clearRecentPathsList() }, false)));
openRecentMenu.append(this.createMenuItem(nls.localize({ key: 'miClearRecentOpen', comment: ['&& denotes a mnemonic'] }, "&&Clear Recent Files"), 'workbench.action.clearRecentFiles'));
}
}