Replies: 1 comment
-
@mofojed The native repl implementation we have uses VS Code Interactive window for UI, Notebook Controller and a backing python server that handles The python server runs with whatever you have selected as the python environment for the project. The server side, is a JSON-RPC python server, all it does is manages execution, and variables for variables view. Allowing custom environments specifically for the Native Repl would be a feature request, on the python extension side. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The Native Python REPL feature looks very intriguing. I was wondering if there was a way to intercept the commands when starting the REPL?
For example, you can start your own InteractiveConsole that intercepts commands:
I'd like to be able to wire that up with the native REPL somehow, such that I can intercept the code and execute it in my custom environment.
I found this ticket referencing custom REPLs but it's not clear to me how to plug in to that? #23091
Also another ticket related to setting environments I've found is #23570
Beta Was this translation helpful? Give feedback.
All reactions