A space to store stuff about Jupyter that I'll most likely use again.
{
"shortcuts": [
{
"command": "notebook:restart-run-all",
"keys": [
"Ctrl Shift Enter"
],
"selector": "body"
},
{
"command": "notebook:run-all-above",
"keys": [
"Ctrl Alt ArrowUp"
],
"selector": "body"
},
{
"command": "notebook:run-all-below",
"keys": [
"Ctrl Alt ArrowDown"
],
"selector": "body"
},
]
}
{
"codeCellConfig": {
"autoClosingBrackets": true,
"lineNumbers": true,
"lineWrap": "on",
},
"kernelShutdown": true,
}
var cell = Jupyter.notebook.get_selected_cell();
var config = cell.config;
var patch = {
"codeCellConfig": {
"autoClosingBrackets": true,
"lineNumbers": true,
"lineWrap": "on",
},
"kernelShutdown": true,
}
config.update(patch)