Skip to content

Instantly share code, notes, and snippets.

@xaedes
Created June 5, 2019 13:28
Show Gist options
  • Save xaedes/91580427d19b12d41e77b80acd0142c6 to your computer and use it in GitHub Desktop.
Save xaedes/91580427d19b12d41e77b80acd0142c6 to your computer and use it in GitHub Desktop.
jupyterlab move cells with keyboard
{
// Move cell up
"notebook:move-cell-up": {
"selector": ".jp-Notebook:focus",
"command": "notebook:move-cell-up",
"keys": [
"Ctrl ArrowUp"
]
},
// Move cell down
"notebook:move-cell-down": {
"selector": ".jp-Notebook:focus",
"command": "notebook:move-cell-down",
"keys": [
"Ctrl ArrowDown"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment