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 4e69924 commit 6d1be18Copy full SHA for 6d1be18
src/client/terminals/codeExecution/terminalReplWatcher.ts
@@ -5,9 +5,7 @@ import { EventName } from '../../telemetry/constants';
5
6
function checkREPLCommand(command: string): boolean {
7
const lower = command.toLowerCase().trimStart();
8
- return (
9
- lower.startsWith('python') || lower.startsWith('py') || lower.startsWith('python ') || lower.startsWith('py ')
10
- );
+ return lower.startsWith('python') || lower.startsWith('py');
11
}
12
13
export function registerTriggerForTerminalREPL(disposables: Disposable[]): void {
0 commit comments