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. |
| 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.
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. |
| notebookEditor = interactiveWindowObject.notebookEditor; | ||
| notebookDocument = interactiveWindowObject.notebookEditor.notebook; | ||
| // Case where NotebookDocument doesnt exist, create a blank one. | ||
| notebookDocument = await workspace.openNotebookDocument('jupyter-notebook'); |
There was a problem hiding this comment.
This might be what is causing: #24590




No description provided.