_Run Menu_ has _Run Selected Cell and All Below_ as an option. But it doesn't have a keyboard shortcut and I don't see a way to create one because the handle is not listed in _Settings-> System Defaults_ -> _Keyboard Shortcuts_ .
Kindly suggest the name of the handle be included and/or a default keyboard shortcut created.
Thank you for all your work on jupyterlab!
Hi @discdiver, the notebook commands that can be bound to keyboard shortcuts can be found here (though we should make them more discoverable):
https://github.com/jupyterlab/jupyterlab/blob/af548c2674427da79d54ad5c4b69bb175463e9a0/packages/notebook-extension/src/index.ts#L69-L197
You will want to add a shortcut for 'notebook:run-all-below'.
Thanks @ian-r-rose. Here's what the full working code looks like if anyone find this:
```//
{
"notebook:run-all-below": {
"command": "notebook:run-all-below",
"keys": [
"Shift D"
],
"selector": ".jp-Notebook:focus",
"title": "Run All Below",
"category": "Notebook Cell Operations"
}
}
Glad you got it working @discdiver! Closing as answered.
Most helpful comment
Hi @discdiver, the notebook commands that can be bound to keyboard shortcuts can be found here (though we should make them more discoverable):
https://github.com/jupyterlab/jupyterlab/blob/af548c2674427da79d54ad5c4b69bb175463e9a0/packages/notebook-extension/src/index.ts#L69-L197
You will want to add a shortcut for
'notebook:run-all-below'.