mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-08 15:55:15 +01:00
Changing pasted to paste
This commit is contained in:
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user