Changing pasted to paste

This commit is contained in:
Daniel Davis
2020-06-16 15:01:04 +01:00
parent d2e1c1112a
commit d867dc4e6f
@@ -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));