Tips for VSCode

1. Commands

Command control palette: Ctrl+Shift+P

Use short-cuts for changing view:

Change settings? Ctrl+,
Change short cuts? Ctrl+K, Ctrl+S

2. Code editing

Use smart short cuts for editing:

3. Notebook editing

When inside a cell you are in edit mode, when not you are in command mode.

The most important notebook commands are:

Only in command mode:

Markdown: Guide on writing markdown

Optional: Create Restart-and-Run-All shortcut

    {

        "key": "ctrl+space",

        "command": "extension.multiCommand.execute",

        "args": {

          "sequence": [

            "notebook.clearAllCellsOutputs",

            "jupyter.restartkernel",

            "notebook.execute"

          ]

        },

        "when": "notebookEditable && activeEditor == 'workbench.editor.notebook'"

      }