12345678910111213141516171819202122232425262728293031323334 |
- {
- "jupyter.lab.setting-icon-class": "jp-LauncherIcon",
- "jupyter.lab.setting-icon-label": "Keyboard Shortcuts",
- "jupyter.lab.transform": true,
- "title": "Keyboard Shortcuts",
- "description": "Keyboard shortcut settings for JupyterLab.",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "shortcuts": {
- "title": "Keyboard Shortcuts",
- "description": "The list of keyboard shortcuts.",
- "items": { "$ref": "#/definitions/shortcut" },
- "type": "array",
- "default": []
- }
- },
- "definitions": {
- "shortcut": {
- "properties": {
- "args": { "type": "object" },
- "command": { "type": "string" },
- "keys": {
- "items": { "type": "string" },
- "minItems": 1,
- "type": "array"
- },
- "selector": { "type": "string" }
- },
- "required": ["command", "keys", "selector"],
- "type": "object"
- }
- }
- }
|