From d867dc4e6f25766eb04caa244c0d0db1eb0767fe Mon Sep 17 00:00:00 2001 From: Daniel Davis Date: Tue, 16 Jun 2020 15:01:04 +0100 Subject: [PATCH] Changing pasted to paste --- src/vs/workbench/contrib/debug/browser/repl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/debug/browser/repl.ts b/src/vs/workbench/contrib/debug/browser/repl.ts index 7d17135a75f..6a8b115d6a6 100644 --- a/src/vs/workbench/contrib/debug/browser/repl.ts +++ b/src/vs/workbench/contrib/debug/browser/repl.ts @@ -606,7 +606,7 @@ export class Repl extends ViewPane implements IHistoryNavigationWidget { await this.clipboardService.writeText(this.getVisibleContent()); return Promise.resolve(); })); - actions.push(new Action('debug.replPaste', localize('paste', "Pasted"), undefined, true, async () => { + actions.push(new Action('debug.replPaste', localize('paste', "Paste"), undefined, true, async () => { const clipboardText = await this.clipboardService.readText(); if (clipboardText) { this.replInput.setValue(this.replInput.getValue().concat(clipboardText));