Skip to content

Commit 00ad035

Browse files
authored
fix #1304 preserve empty lines (DonJayamanne#1329)
1 parent f281674 commit 00ad035

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/client/providers/execInTerminalProvider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ function execSelectionInTerminal() {
118118
if (code.length === 0) {
119119
return;
120120
}
121-
code = removeBlankLines(code);
122121
const launchArgs = settings.PythonSettings.getInstance().terminal.launchArgs;
123122
const launchArgsString = launchArgs.length > 0 ? " ".concat(launchArgs.join(" ")) : "";
124123
const command = `${currentPythonPath}${launchArgsString}`;

0 commit comments

Comments
 (0)