Fix "Run Python File" executing in Python REPL instead of shell #25160
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
When a user has a Python REPL active in a terminal (after running
python
) and then clicks "Run Python File", the command gets sent to the Python interpreter instead of creating a new shell terminal. This causes the file execution command to be typed into the Python REPL rather than executed at the shell level.Root Cause
The terminal service was reusing existing terminals without checking if they were currently in Python REPL mode. The
executeFile
method would send commands to whatever terminal was available, regardless of its current state.Solution
Modified
TerminalCodeExecutionProvider.executeFile()
to detect when a terminal is in Python REPL mode and force creation of a new terminal for file execution in that case.Key Changes
Added REPL state detection in
shouldForceNewTerminalForFileExecution()
method:replActive
is true (indicating Python REPL is running)newTerminalPerFile: true
when REPL is activeModified
executeFile()
method to use the REPL detection logic before terminal operationsAdded comprehensive test to verify the fix works correctly
Example Scenario
Before:
After:
Compatibility
newTerminalPerFile
setting if already enabledFixes #25159.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.