|
229 | 229 | "linux": "ctrl+shift+-", |
230 | 230 | "when": "editorTextFocus && inputFocus && notebookEditorFocused && notebookViewType == jupyter-notebook", |
231 | 231 | "command": "notebook.cell.split" |
| 232 | + }, |
| 233 | + { |
| 234 | + "command": "python.datascience.insertCellBelowPosition", |
| 235 | + "key": "ctrl+; s", |
| 236 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 237 | + }, |
| 238 | + { |
| 239 | + "command": "python.datascience.insertCellBelow", |
| 240 | + "key": "ctrl+; b", |
| 241 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 242 | + }, |
| 243 | + { |
| 244 | + "command": "python.datascience.insertCellAbove", |
| 245 | + "key": "ctrl+; a", |
| 246 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 247 | + }, |
| 248 | + { |
| 249 | + "command": "python.datascience.deleteCells", |
| 250 | + "key": "ctrl+; x", |
| 251 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 252 | + }, |
| 253 | + { |
| 254 | + "command": "python.datascience.extendSelectionByCellAbove", |
| 255 | + "key": "ctrl+alt+shift+[", |
| 256 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 257 | + }, |
| 258 | + { |
| 259 | + "command": "python.datascience.extendSelectionByCellBelow", |
| 260 | + "key": "ctrl+alt+shift+]", |
| 261 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 262 | + }, |
| 263 | + { |
| 264 | + "command": "python.datascience.moveCellsUp", |
| 265 | + "key": "ctrl+; u", |
| 266 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 267 | + }, |
| 268 | + { |
| 269 | + "command": "python.datascience.moveCellsDown", |
| 270 | + "key": "ctrl+; d", |
| 271 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 272 | + }, |
| 273 | + { |
| 274 | + "command": "python.datascience.changeCellToMarkdown", |
| 275 | + "key": "ctrl+; m", |
| 276 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 277 | + }, |
| 278 | + { |
| 279 | + "command": "python.datascience.changeCellToCode", |
| 280 | + "key": "ctrl+; c", |
| 281 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 282 | + }, |
| 283 | + { |
| 284 | + "command": "python.datascience.gotoNextCellInFile", |
| 285 | + "key": "ctrl+alt+]", |
| 286 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 287 | + }, |
| 288 | + { |
| 289 | + "command": "python.datascience.gotoPrevCellInFile", |
| 290 | + "key": "ctrl+alt+[", |
| 291 | + "when": "editorTextFocus && python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
232 | 292 | } |
233 | 293 | ], |
234 | 294 | "commands": [ |
|
588 | 648 | "title": "%python.command.python.datascience.changeCellToCode.title%", |
589 | 649 | "category": "Python" |
590 | 650 | }, |
| 651 | + { |
| 652 | + "command": "python.datascience.gotoNextCellInFile", |
| 653 | + "title": "%python.command.python.datascience.gotoNextCellInFile.title%", |
| 654 | + "category": "Python" |
| 655 | + }, |
| 656 | + { |
| 657 | + "command": "python.datascience.gotoPrevCellInFile", |
| 658 | + "title": "%python.command.python.datascience.gotoPrevCellInFile.title%", |
| 659 | + "category": "Python" |
| 660 | + }, |
591 | 661 | { |
592 | 662 | "command": "python.datascience.runcurrentcelladvance", |
593 | 663 | "title": "%python.command.python.datascience.runcurrentcelladvance.title%", |
|
1148 | 1218 | "category": "Python", |
1149 | 1219 | "when": "python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
1150 | 1220 | }, |
| 1221 | + { |
| 1222 | + "command": "python.datascience.gotoNextCellInFile", |
| 1223 | + "title": "%python.command.python.datascience.gotoNextCellInFile.title%", |
| 1224 | + "category": "Python", |
| 1225 | + "when": "python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 1226 | + }, |
| 1227 | + { |
| 1228 | + "command": "python.datascience.gotoPrevCellInFile", |
| 1229 | + "title": "%python.command.python.datascience.gotoPrevCellInFile.title%", |
| 1230 | + "category": "Python", |
| 1231 | + "when": "python.datascience.hascodecells && python.datascience.featureenabled && !notebookEditorFocused" |
| 1232 | + }, |
1151 | 1233 | { |
1152 | 1234 | "command": "python.datascience.runcurrentcell", |
1153 | 1235 | "title": "%python.command.python.datascience.runcurrentcell.title%", |
|
0 commit comments