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 7a84ed2 commit 2a15f69Copy full SHA for 2a15f69
src/views/results/index.ts
@@ -377,8 +377,11 @@ async function runHandler(options?: StatementInfo) {
377
updatableTable = refs[0];
378
}
379
380
+ const eol = editor.document.eol === vscode.EndOfLine.CRLF ? `\r\n` : `\n`;
381
+ const basicSelect = statementDetail.content.split(eol).filter(line => !line.trimStart().startsWith(`--`)).join(eol);
382
+
383
chosenView.setScrolling({ // Never errors
- basicSelect: statementDetail.content,
384
+ basicSelect: basicSelect,
385
withCancel: inWindow,
386
ref: updatableTable,
387
parameters,
0 commit comments