Skip to content

Commit

Permalink
Merge pull request #154159 from microsoft/tyriar/153905
Browse files Browse the repository at this point in the history
Add ellipsis to recent command/dir commands
  • Loading branch information
Tyriar committed Jul 5, 2022
2 parents 1c57238 + 25cf087 commit a72212f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/contrib/terminal/browser/terminalActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.RunRecentCommand,
title: { value: localize('workbench.action.terminal.runRecentCommand', "Run Recent Command"), original: 'Run Recent Command' },
title: { value: localize('workbench.action.terminal.runRecentCommand', "Run Recent Command..."), original: 'Run Recent Command...' },
f1: true,
category,
precondition: ContextKeyExpr.or(TerminalContextKeys.processSupported, TerminalContextKeys.terminalHasBeenCreated)
Expand All @@ -331,7 +331,7 @@ export function registerTerminalActions() {
constructor() {
super({
id: TerminalCommandId.GoToRecentDirectory,
title: { value: localize('workbench.action.terminal.goToRecentDirectory', "Go to Recent Directory"), original: 'Go to Recent Directory' },
title: { value: localize('workbench.action.terminal.goToRecentDirectory', "Go to Recent Directory..."), original: 'Go to Recent Directory...' },
f1: true,
category,
precondition: ContextKeyExpr.or(TerminalContextKeys.processSupported, TerminalContextKeys.terminalHasBeenCreated)
Expand Down

0 comments on commit a72212f

Please sign in to comment.