Auto close brackets, "", etc not working in new VSCode native jupyter notebook? - visual-studio-code

I'm trying the new VSCode native Jupyter Notebook from the October Update. When I open .ipynb file and edit brackets aren't being closed automatically like on normal .py files. Is this intentional? Am I supposed to add my own settings to include autoclose brackets in VSCode?

Related

Visual studio code template for Jupyter notebook

Is there a way to have each Jupyter notebook file start with some preexisting template code? For example, when I create a .ipynb file, the first cell would have some import statements of my choosing.
I looked through the Jupyter extension settings in vscode, but I didn't see anything relevant.

Is there a way to modify the Blank Jupyter Notebook on VsCode?

I'm using the Jupyter Extension from Microsoft in VsCode
Using Ctrl + Shift + P in VsCode and
I would like to modify the blank notebook so it has some pre written cells like
I googled but haven't found anything
I suggest you install an extension
File Templates

How to open .ipyjn files with preview notebook editor by default

I am using the latest updated version of VScode Insiders. While working with .ipyjn files I have noticed that it is WAY better to edit them with preview notebook editor instead of the classical notebook editor.
Is there a way to open these files by default with the preview editor?
Thank you!
if you use VSCode insider and want the VSCode open Jupyter notebook in default editor add this line "jupyter.experiments.optOutFrom": ["NativeNotebookEditor"], to your settings.json file, otherwise remove it.
here is a link

how to disable jupyter editor in vscode

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.
This can be disabled by python.dataScience.useNotebookEditor if you are using the Python extension.
Source: https://github.com/microsoft/vscode/issues/103526
Update:
You also need the Jupyter extension along with Python extension for VS Code. The setting key has been renamed from python.dataScience.useNotebookEditor to jupyter.useNotebookEditor^update
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".

VS Code not auto indenting in jupyter notebook / ipynb files

I must have accidentally disabled auto indent in VS code jupyter notebook. Does anyone know how to fix this? For example, indentation on the next line after creating a function.