how to disable jupyter editor in vscode

Viewed 3048

like the title mentioned, how to disable jupyter editor in vscode? every time,I want to new a file just for text or markdown,I do not like to appear a choice between two, but just default for the inner editor applied by vscode. and how can I configure this. for right now,I never need to use jupyter notebook. It seems to be appeared unexpected after vscode update or installed some python package.

2 Answers

With the July/August 2021 introduction of the new Native Notebook Support in VS Code, the answers involving your settings.json are now obsolete. Now the Notebook editor will be used to open .*ipynb files even if you've never installed the Python or Jupyter extensions.

However, you can open a *.ipynb file in the regular text editor by right-clicking on the file in the VS Code File Explorer, doing "Open With", and then selecting the "Text Editor".

Related