I created a custom keyboard shortcut, Ctrl A, for the Run > Run All Cells menu item. It works, but it doesn’t show up in the Run menu. How can I make it show up? Here’s the beginning of my shortcuts.jupyterlab-settings file (macOS Sequoia 15.5):
{
“shortcuts”: [
{
“command”: “notebook:run-all-cells”,
“keys”: [
“Ctrl A”
],
“MacKeys”: [
“Ctrl A”
],
“selector”: “.jp-Notebook:focus”,
“args”: {},
},
{
“command”: “notebook:run-all-cells”,
“keys”: [
“Ctrl A”
],
“MacKeys”: [
“Ctrl A”
],
“selector”: “.jp-Notebook.jp-mod-editMode”,
“args”: {},
},
{
“command”: “runmenu:run-all-cells”,
“keys”: [
“Ctrl A”
],
“MacKeys”: [
“Ctrl A”
],
“selector”: “[data-jp-code-runner]”
},
[snip…]
]
}