plugin.json 650 B

123456789101112131415161718192021222324
  1. {
  2. "jupyter.lab.setting-deprecated": true,
  3. "jupyter.lab.setting-icon-class": "jp-LauncherIcon",
  4. "jupyter.lab.setting-icon-label": "Keyboard Shortcuts",
  5. "title": "Keyboard Shortcuts",
  6. "description": "Keyboard shortcut settings for JupyterLab.",
  7. "properties": {},
  8. "oneOf": [{ "$ref": "#/definitions/shortcut" }],
  9. "type": "object",
  10. "definitions": {
  11. "shortcut": {
  12. "properties": {
  13. "command": { "type": "string" },
  14. "keys": {
  15. "items": { "type": "string" },
  16. "minItems": 1,
  17. "type": "array"
  18. },
  19. "selector": { "type": "string" }
  20. },
  21. "type": "object"
  22. }
  23. }
  24. }