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 3b9d9a5 commit 8ff71aeCopy full SHA for 8ff71ae
packages/cursorless-vscode/src/ide/vscode/VscodeTextEditorImpl.ts
@@ -149,7 +149,7 @@ export class VscodeTextEditorImpl implements EditableTextEditor {
149
150
public async insertLineAfter(ranges?: Range[]): Promise<void> {
151
if (ranges != null) {
152
- this.selections = ranges.map((range) => range.toSelection(false));
+ this.setSelections(ranges.map((range) => range.toSelection(false)));
153
}
154
await this.focus();
155
await vscode.commands.executeCommand("editor.action.insertLineAfter");
0 commit comments