Created
June 4, 2020 14:30
-
-
Save sickerin/819d66b98b84791dce64dbfdaadde678 to your computer and use it in GitHub Desktop.
jupyterlab-emacskeys extension settings
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
{ | |
"shortcuts": [ | |
{ | |
"command": "application:toggle-left-area", | |
"keys": [ | |
"Accel B" | |
], | |
"selector": "body", | |
"disabled": true | |
}, | |
{ | |
"command": "application:close", | |
"keys": [ | |
"Alt W" | |
], | |
"selector": ".jp-Activity", | |
"disabled": true | |
}, | |
{ | |
"command": "notebook:split-cell-at-cursor", | |
"keys": [ | |
"Ctrl Shift -" | |
], | |
"selector": ".jp-Notebook.jp-mod-editMode", | |
"disabled": true | |
}, | |
{ | |
"command": "apputils:print", | |
"keys":["Accel P"], | |
"selector": "body", | |
"disabled": true | |
}, | |
{ | |
"command": "documentsearch:start", | |
"keys": [ | |
"Accel F" | |
], | |
"selector": ".jp-mod-searchable", | |
"disabled": true | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment