notebook-cell-language-switcher READMEProvides commands to change the language for multiple selected cells in a notebook. Add shortcuts using description below to your shortcuts json. 1.0.0Add custom shortcut to your keyboard shortcuts json (i.e. press Ctrl-Shift-P, Open Keyboard Shortcuts (JSON)), and add the following [ { "key": "q r", "command": "notebookCell.setToRaw", "when": "notebookEditorFocused && !inputFocus && !notebookOutputFocused && activeEditor == 'workbench.editor.notebook'" }, { "key": "q m", "command": "notebookCell.setToMarkup", "when": "notebookEditorFocused && !inputFocus && !notebookOutputFocused && activeEditor == 'workbench.editor.notebook'" }, { "key": "q c", "command": "notebookCell.setToCode", "when": "notebookEditorFocused && !inputFocus && !notebookOutputFocused && activeEditor == 'workbench.editor.notebook'" }, ] |