Skip to content

Commit f76f6ec

Browse files
committed
Revert "tweak command name (microsoft#168214)"
This reverts commit 3c84e0d.
1 parent 1a58734 commit f76f6ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/workbench/contrib/quickaccess/browser/commandsQuickAccess.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ export class ClearCommandHistoryAction extends Action2 {
196196

197197
constructor() {
198198
super({
199-
id: 'workbench.action.clearPreviousSessionCommandHistory',
200-
title: { value: localize('clearPreviousSessionCommandHistory', "Clear Previous Session Command History"), original: 'Clear Previous Session Command History' },
199+
id: 'workbench.action.clearCommandHistory',
200+
title: { value: localize('clearCommandHistory', "Clear Command History"), original: 'Clear Command History' },
201201
f1: true
202202
});
203203
}
@@ -212,7 +212,7 @@ export class ClearCommandHistoryAction extends Action2 {
212212

213213
// Ask for confirmation
214214
const { confirmed } = await dialogService.confirm({
215-
message: localize('confirmClearMessage', "Do you want to clear the previous session command history?"),
215+
message: localize('confirmClearMessage', "Do you want to clear the history of recently used commands?"),
216216
detail: localize('confirmClearDetail', "This action is irreversible!"),
217217
primaryButton: localize({ key: 'clearButtonLabel', comment: ['&& denotes a mnemonic'] }, "&&Clear"),
218218
type: 'warning'

0 commit comments

Comments
 (0)