Created
June 5, 2019 13:28
-
-
Save xaedes/91580427d19b12d41e77b80acd0142c6 to your computer and use it in GitHub Desktop.
jupyterlab move cells with keyboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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