You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/jupyterlab/schemas/@jupyterlab/console-extension/tracker.json

51 lines
1.7 KiB

{
"title": "Code Console",
"description": "Code Console settings.",
"jupyter.lab.setting-icon": "ui-components:console",
"jupyter.lab.setting-icon-label": "Code Console Settings",
"jupyter.lab.shortcuts": [
{
"command": "console:linebreak",
"keys": ["Enter"],
"selector": ".jp-CodeConsole[data-jp-interaction-mode='notebook'] .jp-CodeConsole-promptCell"
},
{
"command": "console:run-forced",
"keys": ["Shift Enter"],
"selector": ".jp-CodeConsole[data-jp-interaction-mode='notebook'] .jp-CodeConsole-promptCell"
},
{
"command": "console:linebreak",
"keys": ["Accel Enter"],
"selector": ".jp-CodeConsole[data-jp-interaction-mode='terminal'] .jp-CodeConsole-promptCell"
},
{
"command": "console:run-forced",
"keys": ["Shift Enter"],
"selector": ".jp-CodeConsole[data-jp-interaction-mode='terminal'] .jp-CodeConsole-promptCell"
},
{
"command": "console:run-unforced",
"keys": ["Enter"],
"selector": ".jp-CodeConsole[data-jp-interaction-mode='terminal'] .jp-CodeConsole-promptCell"
}
],
"properties": {
"interactionMode": {
"title": "Interaction mode",
"description": "Whether the console interaction mimics the notebook\nor terminal keyboard shortcuts.",
"type": "string",
"enum": ["notebook", "terminal"],
"default": "notebook"
},
"showAllKernelActivity": {
"title": "Show All Kernel Activity",
"description": "Whether the console defaults to showing all\nkernel activity or just kernel activity originating from itself.",
"type": "boolean",
"default": false
}
},
"additionalProperties": false,
"type": "object"
}