kernels-settings.json 935 B

123456789101112131415161718192021222324252627
  1. {
  2. "title": "Kernels",
  3. "description": "Kernels and kernel sessions settings",
  4. "jupyter.lab.setting-icon": "ui-components:kernel",
  5. "jupyter.lab.setting-icon-label": "Kernel",
  6. "additionalProperties": false,
  7. "properties": {
  8. "showStatusBarItem": {
  9. "type": "boolean",
  10. "title": "Show the status bar item",
  11. "description": "Whether to show the running kernels item in the status bar",
  12. "default": true
  13. },
  14. "commsOverSubshells": {
  15. "type": "string",
  16. "title": "Kernel Comms over subshells",
  17. "description": "Whether comm messages should be sent to kernel subshells, if the kernel supports it.",
  18. "default": "perCommTarget",
  19. "oneOf": [
  20. { "const": "disabled", "title": "Disabled" },
  21. { "const": "perComm", "title": "One subshell per comm" },
  22. { "const": "perCommTarget", "title": "One subshell per comm-target" }
  23. ]
  24. }
  25. },
  26. "type": "object"
  27. }