palette.json 746 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "title": "Command Palette",
  3. "description": "Command palette settings.",
  4. "jupyter.lab.menus": {
  5. "main": [
  6. {
  7. "id": "jp-mainmenu-view",
  8. "items": [
  9. {
  10. "command": "apputils:activate-command-palette",
  11. "rank": 0
  12. }
  13. ]
  14. }
  15. ]
  16. },
  17. "jupyter.lab.shortcuts": [
  18. {
  19. "command": "apputils:activate-command-palette",
  20. "keys": ["Accel Shift C"],
  21. "selector": "body"
  22. }
  23. ],
  24. "properties": {
  25. "modal": {
  26. "title": "Modal Command Palette",
  27. "description": "Whether the command palette should be modal or in the left panel.",
  28. "type": "boolean",
  29. "default": true
  30. }
  31. },
  32. "type": "object",
  33. "additionalProperties": false
  34. }