tracker.json 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830
  1. {
  2. "jupyter.lab.setting-icon": "ui-components:notebook",
  3. "jupyter.lab.setting-icon-label": "Notebook",
  4. "jupyter.lab.menus": {
  5. "main": [
  6. {
  7. "id": "jp-mainmenu-file",
  8. "items": [
  9. {
  10. "type": "submenu",
  11. "submenu": {
  12. "id": "jp-mainmenu-file-new",
  13. "items": [
  14. {
  15. "command": "notebook:create-new",
  16. "rank": 10
  17. }
  18. ]
  19. }
  20. }
  21. ]
  22. },
  23. {
  24. "id": "jp-mainmenu-edit",
  25. "items": [
  26. {
  27. "type": "separator",
  28. "rank": 4
  29. },
  30. {
  31. "command": "notebook:undo-cell-action",
  32. "rank": 4
  33. },
  34. {
  35. "command": "notebook:redo-cell-action",
  36. "rank": 4
  37. },
  38. {
  39. "type": "separator",
  40. "rank": 5
  41. },
  42. {
  43. "command": "notebook:cut-cell",
  44. "rank": 5
  45. },
  46. {
  47. "command": "notebook:copy-cell",
  48. "rank": 5
  49. },
  50. {
  51. "command": "notebook:paste-cell-below",
  52. "rank": 5
  53. },
  54. {
  55. "command": "notebook:paste-cell-above",
  56. "rank": 5
  57. },
  58. {
  59. "command": "notebook:paste-and-replace-cell",
  60. "rank": 5
  61. },
  62. {
  63. "type": "separator",
  64. "rank": 6
  65. },
  66. {
  67. "command": "notebook:delete-cell",
  68. "rank": 6
  69. },
  70. {
  71. "type": "separator",
  72. "rank": 7
  73. },
  74. {
  75. "command": "notebook:select-all",
  76. "rank": 7
  77. },
  78. {
  79. "command": "notebook:deselect-all",
  80. "rank": 7
  81. },
  82. {
  83. "type": "separator",
  84. "rank": 8
  85. },
  86. {
  87. "command": "notebook:move-cell-up",
  88. "rank": 8
  89. },
  90. {
  91. "command": "notebook:move-cell-down",
  92. "rank": 8
  93. },
  94. {
  95. "type": "separator",
  96. "rank": 9
  97. },
  98. {
  99. "command": "notebook:split-cell-at-cursor",
  100. "rank": 9
  101. },
  102. {
  103. "command": "notebook:merge-cells",
  104. "rank": 9
  105. },
  106. {
  107. "command": "notebook:merge-cell-above",
  108. "rank": 9
  109. },
  110. {
  111. "command": "notebook:merge-cell-below",
  112. "rank": 9
  113. },
  114. {
  115. "type": "separator",
  116. "rank": 9
  117. }
  118. ]
  119. },
  120. {
  121. "id": "jp-mainmenu-view",
  122. "items": [
  123. {
  124. "type": "separator",
  125. "rank": 10
  126. },
  127. {
  128. "command": "notebook:hide-cell-code",
  129. "rank": 10
  130. },
  131. {
  132. "command": "notebook:hide-cell-outputs",
  133. "rank": 10
  134. },
  135. {
  136. "command": "notebook:hide-all-cell-code",
  137. "rank": 10
  138. },
  139. {
  140. "command": "notebook:hide-all-cell-outputs",
  141. "rank": 10
  142. },
  143. {
  144. "type": "separator",
  145. "rank": 10
  146. },
  147. {
  148. "command": "notebook:show-cell-code",
  149. "rank": 11
  150. },
  151. {
  152. "command": "notebook:show-cell-outputs",
  153. "rank": 11
  154. },
  155. {
  156. "command": "notebook:show-all-cell-code",
  157. "rank": 11
  158. },
  159. {
  160. "command": "notebook:show-all-cell-outputs",
  161. "rank": 11
  162. },
  163. {
  164. "type": "separator",
  165. "rank": 11
  166. },
  167. {
  168. "command": "notebook:toggle-render-side-by-side",
  169. "rank": 12
  170. },
  171. {
  172. "type": "separator",
  173. "rank": 12
  174. }
  175. ]
  176. },
  177. {
  178. "id": "jp-mainmenu-run",
  179. "items": [
  180. {
  181. "type": "separator",
  182. "rank": 10
  183. },
  184. {
  185. "command": "notebook:run-cell-and-insert-below",
  186. "rank": 10
  187. },
  188. {
  189. "command": "notebook:run-cell",
  190. "rank": 10
  191. },
  192. {
  193. "command": "notebook:run-in-console",
  194. "rank": 10
  195. },
  196. {
  197. "type": "separator",
  198. "rank": 11
  199. },
  200. {
  201. "command": "notebook:run-all-above",
  202. "rank": 11
  203. },
  204. {
  205. "command": "notebook:run-all-below",
  206. "rank": 11
  207. },
  208. {
  209. "type": "separator",
  210. "rank": 12
  211. },
  212. {
  213. "command": "notebook:render-all-markdown",
  214. "rank": 12
  215. },
  216. {
  217. "type": "separator",
  218. "rank": 12
  219. }
  220. ]
  221. },
  222. {
  223. "id": "jp-mainmenu-kernel",
  224. "items": [
  225. {
  226. "command": "notebook:restart-and-run-to-selected",
  227. "rank": 1
  228. }
  229. ]
  230. }
  231. ],
  232. "context": [
  233. {
  234. "type": "separator",
  235. "selector": ".jp-Notebook .jp-Cell",
  236. "rank": 0
  237. },
  238. {
  239. "command": "notebook:cut-cell",
  240. "selector": ".jp-Notebook .jp-Cell",
  241. "rank": 1
  242. },
  243. {
  244. "command": "notebook:copy-cell",
  245. "selector": ".jp-Notebook .jp-Cell",
  246. "rank": 2
  247. },
  248. {
  249. "command": "notebook:paste-cell-below",
  250. "selector": ".jp-Notebook .jp-Cell",
  251. "rank": 3
  252. },
  253. {
  254. "type": "separator",
  255. "selector": ".jp-Notebook .jp-Cell",
  256. "rank": 4
  257. },
  258. {
  259. "command": "notebook:delete-cell",
  260. "selector": ".jp-Notebook .jp-Cell",
  261. "rank": 5
  262. },
  263. {
  264. "type": "separator",
  265. "selector": ".jp-Notebook .jp-Cell",
  266. "rank": 6
  267. },
  268. {
  269. "command": "notebook:split-cell-at-cursor",
  270. "selector": ".jp-Notebook .jp-Cell",
  271. "rank": 7
  272. },
  273. {
  274. "command": "notebook:merge-cells",
  275. "selector": ".jp-Notebook .jp-Cell",
  276. "rank": 8
  277. },
  278. {
  279. "command": "notebook:merge-cell-above",
  280. "selector": ".jp-Notebook .jp-Cell",
  281. "rank": 8
  282. },
  283. {
  284. "command": "notebook:merge-cell-below",
  285. "selector": ".jp-Notebook .jp-Cell",
  286. "rank": 8
  287. },
  288. {
  289. "type": "separator",
  290. "selector": ".jp-Notebook .jp-Cell",
  291. "rank": 9
  292. },
  293. {
  294. "command": "notebook:create-output-view",
  295. "selector": ".jp-Notebook .jp-CodeCell",
  296. "rank": 10
  297. },
  298. {
  299. "type": "separator",
  300. "selector": ".jp-Notebook .jp-CodeCell",
  301. "rank": 11
  302. },
  303. {
  304. "command": "notebook:clear-cell-output",
  305. "selector": ".jp-Notebook .jp-CodeCell",
  306. "rank": 12
  307. },
  308. {
  309. "command": "notebook:clear-all-cell-outputs",
  310. "selector": ".jp-Notebook",
  311. "rank": 0
  312. },
  313. {
  314. "type": "separator",
  315. "selector": ".jp-Notebook",
  316. "rank": 1
  317. },
  318. {
  319. "command": "notebook:enable-output-scrolling",
  320. "selector": ".jp-Notebook",
  321. "rank": 2
  322. },
  323. {
  324. "command": "notebook:disable-output-scrolling",
  325. "selector": ".jp-Notebook",
  326. "rank": 3
  327. },
  328. {
  329. "type": "separator",
  330. "selector": ".jp-Notebook",
  331. "rank": 4
  332. },
  333. {
  334. "command": "notebook:undo-cell-action",
  335. "selector": ".jp-Notebook",
  336. "rank": 5
  337. },
  338. {
  339. "command": "notebook:redo-cell-action",
  340. "selector": ".jp-Notebook",
  341. "rank": 6
  342. },
  343. {
  344. "command": "notebook:restart-kernel",
  345. "selector": ".jp-Notebook",
  346. "rank": 7
  347. },
  348. {
  349. "type": "separator",
  350. "selector": ".jp-Notebook",
  351. "rank": 8
  352. },
  353. {
  354. "command": "notebook:create-console",
  355. "selector": ".jp-Notebook",
  356. "rank": 9
  357. }
  358. ]
  359. },
  360. "jupyter.lab.shortcuts": [
  361. {
  362. "command": "notebook:change-cell-to-code",
  363. "keys": ["Y"],
  364. "selector": ".jp-Notebook:focus"
  365. },
  366. {
  367. "command": "notebook:change-cell-to-heading-1",
  368. "keys": ["1"],
  369. "selector": ".jp-Notebook:focus"
  370. },
  371. {
  372. "command": "notebook:change-cell-to-heading-2",
  373. "keys": ["2"],
  374. "selector": ".jp-Notebook:focus"
  375. },
  376. {
  377. "command": "notebook:change-cell-to-heading-3",
  378. "keys": ["3"],
  379. "selector": ".jp-Notebook:focus"
  380. },
  381. {
  382. "command": "notebook:change-cell-to-heading-4",
  383. "keys": ["4"],
  384. "selector": ".jp-Notebook:focus"
  385. },
  386. {
  387. "command": "notebook:change-cell-to-heading-5",
  388. "keys": ["5"],
  389. "selector": ".jp-Notebook:focus"
  390. },
  391. {
  392. "command": "notebook:change-cell-to-heading-6",
  393. "keys": ["6"],
  394. "selector": ".jp-Notebook:focus"
  395. },
  396. {
  397. "command": "notebook:change-cell-to-markdown",
  398. "keys": ["M"],
  399. "selector": ".jp-Notebook:focus"
  400. },
  401. {
  402. "command": "notebook:change-cell-to-raw",
  403. "keys": ["R"],
  404. "selector": ".jp-Notebook:focus"
  405. },
  406. {
  407. "command": "notebook:copy-cell",
  408. "keys": ["C"],
  409. "selector": ".jp-Notebook:focus"
  410. },
  411. {
  412. "command": "notebook:cut-cell",
  413. "keys": ["X"],
  414. "selector": ".jp-Notebook:focus"
  415. },
  416. {
  417. "command": "notebook:delete-cell",
  418. "keys": ["D", "D"],
  419. "selector": ".jp-Notebook:focus"
  420. },
  421. {
  422. "command": "notebook:enter-command-mode",
  423. "keys": ["Escape"],
  424. "selector": ".jp-Notebook.jp-mod-editMode"
  425. },
  426. {
  427. "command": "notebook:enter-command-mode",
  428. "keys": ["Ctrl M"],
  429. "selector": ".jp-Notebook.jp-mod-editMode"
  430. },
  431. {
  432. "command": "notebook:enter-edit-mode",
  433. "keys": ["Enter"],
  434. "selector": ".jp-Notebook:focus"
  435. },
  436. {
  437. "command": "notebook:extend-marked-cells-above",
  438. "keys": ["Shift ArrowUp"],
  439. "selector": ".jp-Notebook:focus"
  440. },
  441. {
  442. "command": "notebook:extend-marked-cells-above",
  443. "keys": ["Shift K"],
  444. "selector": ".jp-Notebook:focus"
  445. },
  446. {
  447. "command": "notebook:extend-marked-cells-top",
  448. "keys": ["Shift Home"],
  449. "selector": ".jp-Notebook:focus"
  450. },
  451. {
  452. "command": "notebook:extend-marked-cells-below",
  453. "keys": ["Shift ArrowDown"],
  454. "selector": ".jp-Notebook:focus"
  455. },
  456. {
  457. "command": "notebook:extend-marked-cells-bottom",
  458. "keys": ["Shift End"],
  459. "selector": ".jp-Notebook:focus"
  460. },
  461. {
  462. "command": "notebook:extend-marked-cells-below",
  463. "keys": ["Shift J"],
  464. "selector": ".jp-Notebook:focus"
  465. },
  466. {
  467. "command": "notebook:insert-cell-above",
  468. "keys": ["A"],
  469. "selector": ".jp-Notebook:focus"
  470. },
  471. {
  472. "command": "notebook:insert-cell-below",
  473. "keys": ["B"],
  474. "selector": ".jp-Notebook:focus"
  475. },
  476. {
  477. "command": "notebook:merge-cells",
  478. "keys": ["Shift M"],
  479. "selector": ".jp-Notebook:focus"
  480. },
  481. {
  482. "command": "notebook:merge-cell-above",
  483. "keys": ["Ctrl Backspace"],
  484. "selector": ".jp-Notebook:focus"
  485. },
  486. {
  487. "command": "notebook:merge-cell-below",
  488. "keys": ["Ctrl Shift M"],
  489. "selector": ".jp-Notebook:focus"
  490. },
  491. {
  492. "command": "notebook:move-cursor-down",
  493. "keys": ["ArrowDown"],
  494. "selector": ".jp-Notebook:focus"
  495. },
  496. {
  497. "command": "notebook:move-cursor-down",
  498. "keys": ["J"],
  499. "selector": ".jp-Notebook:focus"
  500. },
  501. {
  502. "command": "notebook:move-cursor-up",
  503. "keys": ["ArrowUp"],
  504. "selector": ".jp-Notebook:focus"
  505. },
  506. {
  507. "command": "notebook:move-cursor-up",
  508. "keys": ["K"],
  509. "selector": ".jp-Notebook:focus"
  510. },
  511. {
  512. "command": "notebook:paste-cell-below",
  513. "keys": ["V"],
  514. "selector": ".jp-Notebook:focus"
  515. },
  516. {
  517. "command": "notebook:redo-cell-action",
  518. "keys": ["Shift Z"],
  519. "selector": ".jp-Notebook:focus"
  520. },
  521. {
  522. "command": "notebook:run-cell",
  523. "keys": ["Ctrl Enter"],
  524. "selector": ".jp-Notebook:focus"
  525. },
  526. {
  527. "command": "notebook:run-cell",
  528. "keys": ["Ctrl Enter"],
  529. "selector": ".jp-Notebook.jp-mod-editMode"
  530. },
  531. {
  532. "command": "notebook:run-cell-and-insert-below",
  533. "keys": ["Alt Enter"],
  534. "selector": ".jp-Notebook:focus"
  535. },
  536. {
  537. "command": "notebook:run-cell-and-insert-below",
  538. "keys": ["Alt Enter"],
  539. "selector": ".jp-Notebook.jp-mod-editMode"
  540. },
  541. {
  542. "command": "notebook:run-in-console",
  543. "keys": [""],
  544. "selector": ".jp-Notebook.jp-mod-editMode"
  545. },
  546. {
  547. "command": "notebook:run-cell-and-select-next",
  548. "keys": ["Shift Enter"],
  549. "selector": ".jp-Notebook.jp-mod-editMode"
  550. },
  551. {
  552. "command": "viewmenu:line-numbering",
  553. "keys": [""],
  554. "selector": ".jp-Notebook.jp-mod-commandMode"
  555. },
  556. {
  557. "command": "viewmenu:match-brackets",
  558. "keys": [""],
  559. "selector": ".jp-Notebook.jp-mod-commandMode"
  560. },
  561. {
  562. "command": "notebook:select-all",
  563. "keys": ["Accel A"],
  564. "selector": ".jp-Notebook:focus"
  565. },
  566. {
  567. "command": "notebook:split-cell-at-cursor",
  568. "keys": ["Ctrl Shift -"],
  569. "selector": ".jp-Notebook.jp-mod-editMode"
  570. },
  571. {
  572. "command": "notebook:toggle-all-cell-line-numbers",
  573. "keys": ["Shift L"],
  574. "selector": ".jp-Notebook:focus"
  575. },
  576. {
  577. "command": "notebook:toggle-cell-line-numbers",
  578. "keys": ["L"],
  579. "selector": ".jp-Notebook:focus"
  580. },
  581. {
  582. "command": "notebook:undo-cell-action",
  583. "keys": ["Z"],
  584. "selector": ".jp-Notebook:focus"
  585. },
  586. {
  587. "command": "notebook:toggle-render-side-by-side",
  588. "keys": ["Shift R"],
  589. "selector": ".jp-Notebook:focus"
  590. }
  591. ],
  592. "title": "Notebook",
  593. "description": "Notebook settings.",
  594. "definitions": {
  595. "editorConfig": {
  596. "properties": {
  597. "autoClosingBrackets": {
  598. "type": "boolean",
  599. "default": false
  600. },
  601. "cursorBlinkRate": {
  602. "type": "number",
  603. "title": "Cursor blinking rate",
  604. "description": "Half-period in milliseconds used for cursor blinking. The default blink rate is 530ms. By setting this to zero, blinking can be disabled. A negative value hides the cursor entirely.",
  605. "default": 530
  606. },
  607. "fontFamily": {
  608. "type": ["string", "null"],
  609. "default": null
  610. },
  611. "fontSize": {
  612. "type": ["integer", "null"],
  613. "minimum": 1,
  614. "maximum": 100,
  615. "default": null
  616. },
  617. "lineHeight": {
  618. "type": ["number", "null"],
  619. "default": null
  620. },
  621. "lineNumbers": {
  622. "type": "boolean",
  623. "default": false
  624. },
  625. "lineWrap": {
  626. "type": "string",
  627. "enum": ["off", "on", "wordWrapColumn", "bounded"]
  628. },
  629. "matchBrackets": {
  630. "type": "boolean"
  631. },
  632. "readOnly": {
  633. "type": "boolean",
  634. "default": false
  635. },
  636. "insertSpaces": {
  637. "type": "boolean",
  638. "default": true
  639. },
  640. "tabSize": {
  641. "type": "number",
  642. "default": 4
  643. },
  644. "wordWrapColumn": {
  645. "type": "integer",
  646. "default": 80
  647. },
  648. "rulers": {
  649. "type": "array",
  650. "items": {
  651. "type": "number"
  652. },
  653. "default": []
  654. },
  655. "codeFolding": {
  656. "type": "boolean",
  657. "default": false
  658. },
  659. "lineWiseCopyCut": {
  660. "type": "boolean",
  661. "default": true
  662. },
  663. "showTrailingSpace": {
  664. "type": "boolean",
  665. "default": false
  666. }
  667. },
  668. "additionalProperties": false,
  669. "type": "object"
  670. }
  671. },
  672. "properties": {
  673. "codeCellConfig": {
  674. "title": "Code Cell Configuration",
  675. "description": "The configuration for all code cells.",
  676. "$ref": "#/definitions/editorConfig",
  677. "properties": {
  678. "lineWarp": {
  679. "default": "off"
  680. },
  681. "matchBrackets": {
  682. "default": true
  683. }
  684. },
  685. "default": {
  686. "autoClosingBrackets": false,
  687. "cursorBlinkRate": 530,
  688. "fontFamily": null,
  689. "fontSize": null,
  690. "lineHeight": null,
  691. "lineNumbers": false,
  692. "lineWrap": "off",
  693. "matchBrackets": true,
  694. "readOnly": false,
  695. "insertSpaces": true,
  696. "tabSize": 4,
  697. "wordWrapColumn": 80,
  698. "rulers": [],
  699. "codeFolding": false,
  700. "lineWiseCopyCut": true,
  701. "showTrailingSpace": false
  702. }
  703. },
  704. "defaultCell": {
  705. "title": "Default cell type",
  706. "description": "The default type (markdown, code, or raw) for new cells",
  707. "type": "string",
  708. "enum": ["code", "markdown", "raw"],
  709. "default": "code"
  710. },
  711. "kernelShutdown": {
  712. "title": "Shut down kernel",
  713. "description": "Whether to shut down or not the kernel when closing a notebook.",
  714. "type": "boolean",
  715. "default": false
  716. },
  717. "markdownCellConfig": {
  718. "title": "Markdown Cell Configuration",
  719. "description": "The configuration for all markdown cells.",
  720. "$ref": "#/definitions/editorConfig",
  721. "properties": {
  722. "lineWarp": {
  723. "default": "on"
  724. },
  725. "matchBrackets": {
  726. "default": false
  727. }
  728. },
  729. "default": {
  730. "autoClosingBrackets": false,
  731. "cursorBlinkRate": 530,
  732. "fontFamily": null,
  733. "fontSize": null,
  734. "lineHeight": null,
  735. "lineNumbers": false,
  736. "lineWrap": "on",
  737. "matchBrackets": false,
  738. "readOnly": false,
  739. "insertSpaces": true,
  740. "tabSize": 4,
  741. "wordWrapColumn": 80,
  742. "rulers": [],
  743. "codeFolding": false,
  744. "lineWiseCopyCut": true,
  745. "showTrailingSpace": false
  746. }
  747. },
  748. "rawCellConfig": {
  749. "title": "Raw Cell Configuration",
  750. "description": "The configuration for all raw cells.",
  751. "$ref": "#/definitions/editorConfig",
  752. "properties": {
  753. "lineWarp": {
  754. "default": "on"
  755. },
  756. "matchBrackets": {
  757. "default": false
  758. }
  759. },
  760. "default": {
  761. "autoClosingBrackets": false,
  762. "cursorBlinkRate": 530,
  763. "fontFamily": null,
  764. "fontSize": null,
  765. "lineHeight": null,
  766. "lineNumbers": false,
  767. "lineWrap": "on",
  768. "matchBrackets": false,
  769. "readOnly": false,
  770. "insertSpaces": true,
  771. "tabSize": 4,
  772. "wordWrapColumn": 80,
  773. "rulers": [],
  774. "codeFolding": false,
  775. "lineWiseCopyCut": true,
  776. "showTrailingSpace": false
  777. }
  778. },
  779. "scrollPastEnd": {
  780. "title": "Scroll past last cell",
  781. "description": "Whether to be able to scroll so the last cell is at the top of the panel",
  782. "type": "boolean",
  783. "default": true
  784. },
  785. "recordTiming": {
  786. "title": "Recording timing",
  787. "description": "Should timing data be recorded in cell metadata",
  788. "type": "boolean",
  789. "default": false
  790. },
  791. "numberCellsToRenderDirectly": {
  792. "title": "Number of cells to render directly",
  793. "description": "Define the number of cells to render directly when virtual notebook intersection observer is available",
  794. "type": "number",
  795. "default": 20
  796. },
  797. "renderCellOnIdle": {
  798. "title": "Render cell on browser idle time",
  799. "description": "Defines if the placeholder cells should be rendered when the browser is idle",
  800. "type": "boolean",
  801. "default": true
  802. },
  803. "observedTopMargin": {
  804. "title": "Observed top margin",
  805. "description": "Defines the observed top margin for the virtual notebook, set a positive number of pixels to render cells above the visible view",
  806. "type": "string",
  807. "default": "1000px"
  808. },
  809. "observedBottomMargin": {
  810. "title": "Observed bottom margin",
  811. "description": "Defines the observed bottom margin for the virtual notebook, set a positive number of pixels to render cells below the visible view",
  812. "type": "string",
  813. "default": "1000px"
  814. },
  815. "maxNumberOutputs": {
  816. "title": "The maximum number of output cells to to be rendered in the output area. Set to 0 to have the complete display.",
  817. "description": "Defines the maximum number of output cells to to to be rendered in the output area for cells with many outputs. The output area will have a head and a tail, and the outputs between will be trimmed and not displayed unless the user clicks on the information message.",
  818. "type": "number",
  819. "default": 50
  820. },
  821. "experimentalDisableDocumentWideUndoRedo": {
  822. "title": "Experimental settings to enable the undo/redo on the notebook document level.",
  823. "description": "Disable the undo/redo on the notebook document level, so actions independent cells can have their own history. The undo/redo never applies on the outputs, in other words, outputs don't have history. A moved cell completely looses history capability for now.",
  824. "type": "boolean",
  825. "default": false
  826. }
  827. },
  828. "additionalProperties": false,
  829. "type": "object"
  830. }