-
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
Use new REPL notebook API #24029
Use new REPL notebook API #24029
Conversation
Thank you for doing this - I'm giving this a try right now. Also the format of .interactive => .ipynb of the untitled interactive file. |
@@ -9,7 +9,7 @@ export function createReplController( | |||
const server = createPythonServer([interpreterPath], cwd); | |||
disposables.push(server); | |||
|
|||
const controller = vscode.notebooks.createNotebookController('pythonREPL', 'interactive', 'Python REPL'); | |||
const controller = vscode.notebooks.createNotebookController('pythonREPL', 'jupyter-notebook', 'Python REPL'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
similar question here - is interactive type not valid after the new REPL api?
0022b7d
to
5271067
Compare
@amunger In the video you can see it updating the problems view. Should it? |
It's just another notebook cell, so it will update the problems like anything in the history of the repl would |
The editor label is set with: I had jedi set as my language server, so I was seeing the same limited set of completions for both. I'll have to look into why pylance completions aren't working correctly. I'm not seeing that issue with the initial cell not running, might have to debug it on your machine. |
after talking with @amunger, it seems like the issues for (intellisense, editor tab name, first command getting lost problem) were all resolved after updating vscode-insiders to the latest. |
No description provided.