From f76f6ec3c63c50906d5e9abaf9f2ba82c15ae2af Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Thu, 26 Jan 2023 10:53:49 -0800 Subject: [PATCH] Revert "tweak command name (#168214)" This reverts commit 3c84e0d7637df08ffe1e88b63a02d5a684eaab3a. --- .../contrib/quickaccess/browser/commandsQuickAccess.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/contrib/quickaccess/browser/commandsQuickAccess.ts b/src/vs/workbench/contrib/quickaccess/browser/commandsQuickAccess.ts index 4b9757a76d5..ab5145e138a 100644 --- a/src/vs/workbench/contrib/quickaccess/browser/commandsQuickAccess.ts +++ b/src/vs/workbench/contrib/quickaccess/browser/commandsQuickAccess.ts @@ -196,8 +196,8 @@ export class ClearCommandHistoryAction extends Action2 { constructor() { super({ - id: 'workbench.action.clearPreviousSessionCommandHistory', - title: { value: localize('clearPreviousSessionCommandHistory', "Clear Previous Session Command History"), original: 'Clear Previous Session Command History' }, + id: 'workbench.action.clearCommandHistory', + title: { value: localize('clearCommandHistory', "Clear Command History"), original: 'Clear Command History' }, f1: true }); } @@ -212,7 +212,7 @@ export class ClearCommandHistoryAction extends Action2 { // Ask for confirmation const { confirmed } = await dialogService.confirm({ - message: localize('confirmClearMessage', "Do you want to clear the previous session command history?"), + message: localize('confirmClearMessage', "Do you want to clear the history of recently used commands?"), detail: localize('confirmClearDetail', "This action is irreversible!"), primaryButton: localize({ key: 'clearButtonLabel', comment: ['&& denotes a mnemonic'] }, "&&Clear"), type: 'warning'