Skip to content

Commit d867dc4

Browse files
author
Daniel Davis
committed
Changing pasted to paste
1 parent d2e1c11 commit d867dc4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/vs/workbench/contrib/debug/browser

src/vs/workbench/contrib/debug/browser/repl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ export class Repl extends ViewPane implements IHistoryNavigationWidget {
606606
await this.clipboardService.writeText(this.getVisibleContent());
607607
return Promise.resolve();
608608
}));
609-
actions.push(new Action('debug.replPaste', localize('paste', "Pasted"), undefined, true, async () => {
609+
actions.push(new Action('debug.replPaste', localize('paste', "Paste"), undefined, true, async () => {
610610
const clipboardText = await this.clipboardService.readText();
611611
if (clipboardText) {
612612
this.replInput.setValue(this.replInput.getValue().concat(clipboardText));

0 commit comments

Comments
 (0)