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 aaedcd6 commit f89a071Copy full SHA for f89a071
src/client/terminals/codeExecution/terminalReplWatcher.ts
@@ -7,7 +7,7 @@ function checkREPLCommand(command: string): boolean {
7
const lower = command.toLowerCase();
8
// Cover cases for 'py', 'py -3' and 'py -3.x'.
9
const replCommandRegex = /^py(?:\s-3(?:\.\d)?)?$/;
10
- return lower.startsWith('python') || lower.startsWith('python3') || replCommandRegex.test(command);
+ return lower.startsWith('python') || replCommandRegex.test(command);
11
}
12
13
export function registerTriggerForTerminalREPL(disposables: Disposable[]): void {
0 commit comments