jupyterlab-ipyflow 0.0.152 → 0.0.154
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +6 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -60,6 +60,11 @@ const extension = {
|
|
|
60
60
|
keys: ['Accel Shift Enter'],
|
|
61
61
|
selector: '.jp-Notebook',
|
|
62
62
|
});
|
|
63
|
+
app.commands.addKeyBinding({
|
|
64
|
+
command: 'alt-mode-execute',
|
|
65
|
+
keys: ['Ctrl Shift Enter'],
|
|
66
|
+
selector: '.jp-Notebook',
|
|
67
|
+
});
|
|
63
68
|
palette.addItem({
|
|
64
69
|
command: 'alt-mode-execute',
|
|
65
70
|
category: 'execution',
|
|
@@ -361,6 +366,7 @@ const connectToComm = (session, notebook) => {
|
|
|
361
366
|
readyMakerLinks = msg.content.data['ready_maker_links'];
|
|
362
367
|
cellPendingExecution = null;
|
|
363
368
|
const exec_mode = msg.content.data['exec_mode'];
|
|
369
|
+
isReactivelyExecuting = isReactivelyExecuting || (exec_mode === 'reactive');
|
|
364
370
|
const flow_order = msg.content.data['flow_order'];
|
|
365
371
|
const exec_schedule = msg.content.data['exec_schedule'];
|
|
366
372
|
lastExecutionMode = exec_mode;
|
package/package.json
CHANGED