forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prototype communication between custom Python REPL and Node #23174
Labels
Milestone
Comments
18 tasks
Closing this as this is done, it is not testable yet. |
anthonykim1
added a commit
that referenced
this issue
May 16, 2024
Allow users to use Interactive Window UI with Python custom REPL controller instead of iPykernel. Closes #23175 Closes #23174 Closes #23029 Majority of: #23332 Context menu under Python for running Python REPL code using IW UI should only appear when user's ```pythonRunREPL``` experiment is enabled.
anthonykim1
added a commit
to anthonykim1/vscode-python
that referenced
this issue
May 16, 2024
Allow users to use Interactive Window UI with Python custom REPL controller instead of iPykernel. Closes microsoft#23175 Closes microsoft#23174 Closes microsoft#23029 Majority of: microsoft#23332 Context menu under Python for running Python REPL code using IW UI should only appear when user's ```pythonRunREPL``` experiment is enabled.
Marking this as |
DonJayamanne
pushed a commit
that referenced
this issue
Jun 24, 2024
Allow users to use Interactive Window UI with Python custom REPL controller instead of iPykernel. Closes #23175 Closes #23174 Closes #23029 Majority of: #23332 Context menu under Python for running Python REPL code using IW UI should only appear when user's ```pythonRunREPL``` experiment is enabled.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
In order for custom REPL and Python extension's notebook controller can communicate, we need to build way of communication leveraging VS Code's https://www.npmjs.com/package/vscode-jsonrpc and jsonrpc-async, jsonrpc-websockets.
Using https://www.npmjs.com/package/@vscode/python-extension, we should first create separate prototype extension to make sure communication happens smoothly between TypeScript side and Python side that has the custom REPL before embeding code into VS Code Python repo's notebook controller: #23100
The text was updated successfully, but these errors were encountered: