Home > Back-end >  VS Code Jupyter Notebook Run Cell Advance to Next Below
VS Code Jupyter Notebook Run Cell Advance to Next Below

Time:11-16

In Vscode while i working with jupyter notebook, I am trying to run cell advance to the next below the cell and keep the cursor in that cell. But after I advanced to the next cell, I have to click that cell to start writing my code. Is there any way to do that automatically?

CodePudding user response:

Basically, you are in the Command mode when you run cell advance. After advancing to the next cell, you need to go back to Edit mode. Instead of clicking the cell, you can just press Enter.

You can add your own shortcuts from Help > Edit Keyboard Shortcuts. But you can't create a shortcut where you can advance and also go to edit mode at the same time.

  • Related