We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65fab51 commit ee3098dCopy full SHA for ee3098d
packages/cursorless-vscode/src/ide/vscode/VscodeTextEditorImpl.ts
@@ -133,7 +133,10 @@ export class VscodeTextEditorImpl implements EditableTextEditor {
133
}
134
135
public async clipboardPaste(_ranges?: Range[]): Promise<void> {
136
+ // We add these sleeps here to workaround a bug in VSCode. See #1521
137
+ await sleep(100);
138
await vscode.commands.executeCommand("editor.action.clipboardPasteAction");
139
140
141
142
public async indentLine(_ranges?: Range[]): Promise<void> {
0 commit comments