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 b280939 commit 9c331f8Copy full SHA for 9c331f8
src/views/results/index.ts
@@ -271,6 +271,7 @@ async function runHandler(options?: StatementInfo) {
271
if (editor) {
272
let group = statementDetail.group;
273
editor.selection = new vscode.Selection(editor.document.positionAt(group.range.start), editor.document.positionAt(group.range.end));
274
+ editor.revealRange(editor.selection);
275
276
if (group.statements.length === 1 && statementDetail.embeddedInfo && statementDetail.embeddedInfo.changed) {
277
editor.insertSnippet(new SnippetString(statementDetail.embeddedInfo.content));
0 commit comments