@codingame/monaco-vscode-notebook-service-override 8.0.0 → 8.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/package.json +2 -2
  2. package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.js +8 -8
  3. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.js +21 -21
  4. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions.js +2 -2
  5. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib.js +1 -1
  6. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders.js +3 -3
  7. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.js +6 -6
  8. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar.js +10 -10
  9. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFind.js +2 -2
  10. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.js +4 -4
  11. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted.js +1 -1
  12. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions.js +1 -1
  13. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/navigation/arrow.js +13 -13
  14. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables.js +1 -1
  15. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.js +1 -1
  16. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.js +9 -9
  17. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile.js +1 -1
  18. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.js +12 -12
  19. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.js +3 -3
  20. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +24 -24
  21. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/editActions.js +24 -24
  22. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/executeActions.js +22 -22
  23. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
  24. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.js +17 -17
  25. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions.js +7 -7
  26. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.js +12 -12
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffActions.js +11 -11
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +1 -1
  29. package/vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js +60 -60
  30. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp.js +10 -10
  31. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookExtensionPoint.js +33 -33
  32. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js +1 -1
  33. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js +1 -1
  34. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js +3 -3
  35. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
  36. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +1 -1
  37. package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +12 -12
  38. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +1 -1
@@ -589,7 +589,7 @@ for (const editorOption of editorOptionsRegistry) {
589
589
  }
590
590
  const editorOptionsCustomizationSchema = {
591
591
  description: ( localize(
592
- 2790,
592
+ 3268,
593
593
  'Settings for code editors used in notebooks. This can be used to customize most editor.* settings.'
594
594
  )),
595
595
  default: {},
@@ -604,11 +604,11 @@ const configurationRegistry = ( (Registry.as(Extensions$2.Configuration)));
604
604
  configurationRegistry.registerConfiguration({
605
605
  id: 'notebook',
606
606
  order: 100,
607
- title: ( localize(2791, "Notebook")),
607
+ title: ( localize(3269, "Notebook")),
608
608
  type: 'object',
609
609
  properties: {
610
610
  [NotebookSetting.displayOrder]: {
611
- description: ( localize(2792, "Priority list for output mime types")),
611
+ description: ( localize(3270, "Priority list for output mime types")),
612
612
  type: 'array',
613
613
  items: {
614
614
  type: 'string'
@@ -617,12 +617,12 @@ configurationRegistry.registerConfiguration({
617
617
  },
618
618
  [NotebookSetting.cellToolbarLocation]: {
619
619
  description: ( localize(
620
- 2793,
620
+ 3271,
621
621
  "Where the cell toolbar should be shown, or whether it should be hidden."
622
622
  )),
623
623
  type: 'object',
624
624
  additionalProperties: {
625
- markdownDescription: ( localize(2794, "Configure the cell toolbar position for for specific file types")),
625
+ markdownDescription: ( localize(3272, "Configure the cell toolbar position for for specific file types")),
626
626
  type: 'string',
627
627
  enum: ['left', 'right', 'hidden']
628
628
  },
@@ -632,14 +632,14 @@ configurationRegistry.registerConfiguration({
632
632
  tags: ['notebookLayout']
633
633
  },
634
634
  [NotebookSetting.showCellStatusBar]: {
635
- description: ( localize(2795, "Whether the cell status bar should be shown.")),
635
+ description: ( localize(3273, "Whether the cell status bar should be shown.")),
636
636
  type: 'string',
637
637
  enum: ['hidden', 'visible', 'visibleAfterExecute'],
638
638
  enumDescriptions: [
639
- ( localize(2796, "The cell Status bar is always hidden.")),
640
- ( localize(2797, "The cell Status bar is always visible.")),
639
+ ( localize(3274, "The cell Status bar is always hidden.")),
640
+ ( localize(3275, "The cell Status bar is always visible.")),
641
641
  ( localize(
642
- 2798,
642
+ 3276,
643
643
  "The cell Status bar is hidden until the cell has executed. Then it becomes visible to show the execution status."
644
644
  ))
645
645
  ],
@@ -647,14 +647,14 @@ configurationRegistry.registerConfiguration({
647
647
  tags: ['notebookLayout']
648
648
  },
649
649
  [NotebookSetting.textDiffEditorPreview]: {
650
- description: ( localize(2799, "Whether to use the enhanced text diff editor for notebook.")),
650
+ description: ( localize(3277, "Whether to use the enhanced text diff editor for notebook.")),
651
651
  type: 'boolean',
652
652
  default: true,
653
653
  tags: ['notebookLayout']
654
654
  },
655
655
  [NotebookSetting.diffOverviewRuler]: {
656
656
  description: ( localize(
657
- 2800,
657
+ 3278,
658
658
  "Whether to render the overview ruler in the diff editor for notebook."
659
659
  )),
660
660
  type: 'boolean',
@@ -662,21 +662,21 @@ configurationRegistry.registerConfiguration({
662
662
  tags: ['notebookLayout']
663
663
  },
664
664
  [NotebookSetting.cellToolbarVisibility]: {
665
- markdownDescription: ( localize(2801, "Whether the cell toolbar should appear on hover or click.")),
665
+ markdownDescription: ( localize(3279, "Whether the cell toolbar should appear on hover or click.")),
666
666
  type: 'string',
667
667
  enum: ['hover', 'click'],
668
668
  default: 'click',
669
669
  tags: ['notebookLayout']
670
670
  },
671
671
  [NotebookSetting.undoRedoPerCell]: {
672
- description: ( localize(2802, "Whether to use separate undo/redo stack for each cell.")),
672
+ description: ( localize(3280, "Whether to use separate undo/redo stack for each cell.")),
673
673
  type: 'boolean',
674
674
  default: true,
675
675
  tags: ['notebookLayout']
676
676
  },
677
677
  [NotebookSetting.compactView]: {
678
678
  description: ( localize(
679
- 2803,
679
+ 3281,
680
680
  "Control whether the notebook editor should be rendered in a compact form. For example, when turned on, it will decrease the left margin width."
681
681
  )),
682
682
  type: 'boolean',
@@ -685,7 +685,7 @@ configurationRegistry.registerConfiguration({
685
685
  },
686
686
  [NotebookSetting.focusIndicator]: {
687
687
  description: ( localize(
688
- 2804,
688
+ 3282,
689
689
  "Controls where the focus indicator is rendered, either along the cell borders or on the left gutter."
690
690
  )),
691
691
  type: 'string',
@@ -694,21 +694,21 @@ configurationRegistry.registerConfiguration({
694
694
  tags: ['notebookLayout']
695
695
  },
696
696
  [NotebookSetting.insertToolbarLocation]: {
697
- description: ( localize(2805, "Control where the insert cell actions should appear.")),
697
+ description: ( localize(3283, "Control where the insert cell actions should appear.")),
698
698
  type: 'string',
699
699
  enum: ['betweenCells', 'notebookToolbar', 'both', 'hidden'],
700
700
  enumDescriptions: [
701
- ( localize(2806, "A toolbar that appears on hover between cells.")),
702
- ( localize(2807, "The toolbar at the top of the notebook editor.")),
703
- ( localize(2808, "Both toolbars.")),
704
- ( localize(2809, "The insert actions don't appear anywhere.")),
701
+ ( localize(3284, "A toolbar that appears on hover between cells.")),
702
+ ( localize(3285, "The toolbar at the top of the notebook editor.")),
703
+ ( localize(3286, "Both toolbars.")),
704
+ ( localize(3287, "The insert actions don't appear anywhere.")),
705
705
  ],
706
706
  default: 'both',
707
707
  tags: ['notebookLayout']
708
708
  },
709
709
  [NotebookSetting.globalToolbar]: {
710
710
  description: ( localize(
711
- 2810,
711
+ 3288,
712
712
  "Control whether to render a global toolbar inside the notebook editor."
713
713
  )),
714
714
  type: 'boolean',
@@ -717,7 +717,7 @@ configurationRegistry.registerConfiguration({
717
717
  },
718
718
  [NotebookSetting.stickyScrollEnabled]: {
719
719
  description: ( localize(
720
- 2811,
720
+ 3289,
721
721
  "Experimental. Control whether to render notebook Sticky Scroll headers in the notebook editor."
722
722
  )),
723
723
  type: 'boolean',
@@ -726,21 +726,21 @@ configurationRegistry.registerConfiguration({
726
726
  },
727
727
  [NotebookSetting.stickyScrollMode]: {
728
728
  description: ( localize(
729
- 2812,
729
+ 3290,
730
730
  "Control whether nested sticky lines appear to stack flat or indented."
731
731
  )),
732
732
  type: 'string',
733
733
  enum: ['flat', 'indented'],
734
734
  enumDescriptions: [
735
- ( localize(2813, "Nested sticky lines appear flat.")),
736
- ( localize(2814, "Nested sticky lines appear indented.")),
735
+ ( localize(3291, "Nested sticky lines appear flat.")),
736
+ ( localize(3292, "Nested sticky lines appear indented.")),
737
737
  ],
738
738
  default: 'indented',
739
739
  tags: ['notebookLayout']
740
740
  },
741
741
  [NotebookSetting.consolidatedOutputButton]: {
742
742
  description: ( localize(
743
- 2815,
743
+ 3293,
744
744
  "Control whether outputs action should be rendered in the output toolbar."
745
745
  )),
746
746
  type: 'boolean',
@@ -748,20 +748,20 @@ configurationRegistry.registerConfiguration({
748
748
  tags: ['notebookLayout']
749
749
  },
750
750
  [NotebookSetting.showFoldingControls]: {
751
- description: ( localize(2816, "Controls when the Markdown header folding arrow is shown.")),
751
+ description: ( localize(3294, "Controls when the Markdown header folding arrow is shown.")),
752
752
  type: 'string',
753
753
  enum: ['always', 'never', 'mouseover'],
754
754
  enumDescriptions: [
755
- ( localize(2817, "The folding controls are always visible.")),
756
- ( localize(2818, "Never show the folding controls and reduce the gutter size.")),
757
- ( localize(2819, "The folding controls are visible only on mouseover.")),
755
+ ( localize(3295, "The folding controls are always visible.")),
756
+ ( localize(3296, "Never show the folding controls and reduce the gutter size.")),
757
+ ( localize(3297, "The folding controls are visible only on mouseover.")),
758
758
  ],
759
759
  default: 'mouseover',
760
760
  tags: ['notebookLayout']
761
761
  },
762
762
  [NotebookSetting.dragAndDropEnabled]: {
763
763
  description: ( localize(
764
- 2820,
764
+ 3298,
765
765
  "Control whether the notebook editor should allow moving cells through drag and drop."
766
766
  )),
767
767
  type: 'boolean',
@@ -770,7 +770,7 @@ configurationRegistry.registerConfiguration({
770
770
  },
771
771
  [NotebookSetting.consolidatedRunButton]: {
772
772
  description: ( localize(
773
- 2821,
773
+ 3299,
774
774
  "Control whether extra actions are shown in a dropdown next to the run button."
775
775
  )),
776
776
  type: 'boolean',
@@ -779,7 +779,7 @@ configurationRegistry.registerConfiguration({
779
779
  },
780
780
  [NotebookSetting.globalToolbarShowLabel]: {
781
781
  description: ( localize(
782
- 2822,
782
+ 3300,
783
783
  "Control whether the actions on the notebook toolbar should render label or not."
784
784
  )),
785
785
  type: 'string',
@@ -789,7 +789,7 @@ configurationRegistry.registerConfiguration({
789
789
  },
790
790
  [NotebookSetting.textOutputLineLimit]: {
791
791
  markdownDescription: ( localize(
792
- 2823,
792
+ 3301,
793
793
  "Controls how many lines of text are displayed in a text output. If {0} is enabled, this setting is used to determine the scroll height of the output.",
794
794
  '`#notebook.output.scrolling#`'
795
795
  )),
@@ -800,7 +800,7 @@ configurationRegistry.registerConfiguration({
800
800
  },
801
801
  [NotebookSetting.LinkifyOutputFilePaths]: {
802
802
  description: ( localize(
803
- 2824,
803
+ 3302,
804
804
  "Control whether to disable filepath links in the output of notebook cells."
805
805
  )),
806
806
  type: 'boolean',
@@ -808,14 +808,14 @@ configurationRegistry.registerConfiguration({
808
808
  tags: ['notebookOutputLayout']
809
809
  },
810
810
  [NotebookSetting.minimalErrorRendering]: {
811
- description: ( localize(2825, "Control whether to render error output in a minimal style.")),
811
+ description: ( localize(3303, "Control whether to render error output in a minimal style.")),
812
812
  type: 'boolean',
813
813
  default: false,
814
814
  tags: ['notebookOutputLayout']
815
815
  },
816
816
  [NotebookSetting.markupFontSize]: {
817
817
  markdownDescription: ( localize(
818
- 2826,
818
+ 3304,
819
819
  "Controls the font size in pixels of rendered markup in notebooks. When set to {0}, 120% of {1} is used.",
820
820
  '`0`',
821
821
  '`#editor.fontSize#`'
@@ -826,7 +826,7 @@ configurationRegistry.registerConfiguration({
826
826
  },
827
827
  [NotebookSetting.markdownLineHeight]: {
828
828
  markdownDescription: ( localize(
829
- 2827,
829
+ 3305,
830
830
  "Controls the line height in pixels of markdown cells in notebooks. When set to {0}, {1} will be used",
831
831
  '`0`',
832
832
  '`normal`'
@@ -838,7 +838,7 @@ configurationRegistry.registerConfiguration({
838
838
  [NotebookSetting.cellEditorOptionsCustomizations]: editorOptionsCustomizationSchema,
839
839
  [NotebookSetting.interactiveWindowCollapseCodeCells]: {
840
840
  markdownDescription: ( localize(
841
- 2828,
841
+ 3306,
842
842
  "Controls whether code cells in the interactive window are collapsed by default."
843
843
  )),
844
844
  type: 'string',
@@ -847,7 +847,7 @@ configurationRegistry.registerConfiguration({
847
847
  },
848
848
  [NotebookSetting.outputLineHeight]: {
849
849
  markdownDescription: ( localize(
850
- 2829,
850
+ 3307,
851
851
  "Line height of the output text within notebook cells.\n - When set to 0, editor line height is used.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than or equal to 8 will be used as effective values."
852
852
  )),
853
853
  type: 'number',
@@ -856,7 +856,7 @@ configurationRegistry.registerConfiguration({
856
856
  },
857
857
  [NotebookSetting.outputFontSize]: {
858
858
  markdownDescription: ( localize(
859
- 2830,
859
+ 3308,
860
860
  "Font size for the output text within notebook cells. When set to 0, {0} is used.",
861
861
  '`#editor.fontSize#`'
862
862
  )),
@@ -866,7 +866,7 @@ configurationRegistry.registerConfiguration({
866
866
  },
867
867
  [NotebookSetting.outputFontFamily]: {
868
868
  markdownDescription: ( localize(
869
- 2831,
869
+ 3309,
870
870
  "The font family of the output text within notebook cells. When set to empty, the {0} is used.",
871
871
  '`#editor.fontFamily#`'
872
872
  )),
@@ -875,7 +875,7 @@ configurationRegistry.registerConfiguration({
875
875
  },
876
876
  [NotebookSetting.outputScrolling]: {
877
877
  markdownDescription: ( localize(
878
- 2832,
878
+ 3310,
879
879
  "Initially render notebook outputs in a scrollable region when longer than the limit."
880
880
  )),
881
881
  type: 'boolean',
@@ -883,14 +883,14 @@ configurationRegistry.registerConfiguration({
883
883
  default: typeof product$1.quality === 'string' && product$1.quality !== 'stable'
884
884
  },
885
885
  [NotebookSetting.outputWordWrap]: {
886
- markdownDescription: ( localize(2833, "Controls whether the lines in output should wrap.")),
886
+ markdownDescription: ( localize(3311, "Controls whether the lines in output should wrap.")),
887
887
  type: 'boolean',
888
888
  tags: ['notebookLayout', 'notebookOutputLayout'],
889
889
  default: false
890
890
  },
891
891
  [NotebookSetting.defaultFormatter]: {
892
892
  description: ( localize(
893
- 2834,
893
+ 3312,
894
894
  "Defines a default notebook formatter which takes precedence over all other formatter settings. Must be the identifier of an extension contributing a formatter."
895
895
  )),
896
896
  type: ['string', 'null'],
@@ -901,7 +901,7 @@ configurationRegistry.registerConfiguration({
901
901
  },
902
902
  [NotebookSetting.formatOnSave]: {
903
903
  markdownDescription: ( localize(
904
- 2835,
904
+ 3313,
905
905
  "Format a notebook on save. A formatter must be available, the file must not be saved after delay, and the editor must not be shutting down."
906
906
  )),
907
907
  type: 'boolean',
@@ -910,7 +910,7 @@ configurationRegistry.registerConfiguration({
910
910
  },
911
911
  [NotebookSetting.insertFinalNewline]: {
912
912
  markdownDescription: ( localize(
913
- 2836,
913
+ 3314,
914
914
  "When enabled, insert a final new line into the end of code cells when saving a notebook."
915
915
  )),
916
916
  type: 'boolean',
@@ -919,7 +919,7 @@ configurationRegistry.registerConfiguration({
919
919
  },
920
920
  [NotebookSetting.formatOnCellExecution]: {
921
921
  markdownDescription: ( localize(
922
- 2837,
922
+ 3315,
923
923
  "Format a notebook cell upon execution. A formatter must be available."
924
924
  )),
925
925
  type: 'boolean',
@@ -927,7 +927,7 @@ configurationRegistry.registerConfiguration({
927
927
  },
928
928
  [NotebookSetting.confirmDeleteRunningCell]: {
929
929
  markdownDescription: ( localize(
930
- 2838,
930
+ 3316,
931
931
  "Control whether a confirmation prompt is required to delete a running cell."
932
932
  )),
933
933
  type: 'boolean',
@@ -935,7 +935,7 @@ configurationRegistry.registerConfiguration({
935
935
  },
936
936
  [NotebookSetting.findFilters]: {
937
937
  markdownDescription: ( localize(
938
- 2839,
938
+ 3317,
939
939
  "Customize the Find Widget behavior for searching within notebook cells. When both markup source and markup preview are enabled, the Find Widget will search either the source code or preview based on the current state of the cell."
940
940
  )),
941
941
  type: 'object',
@@ -967,7 +967,7 @@ configurationRegistry.registerConfiguration({
967
967
  },
968
968
  [NotebookSetting.remoteSaving]: {
969
969
  markdownDescription: ( localize(
970
- 2840,
970
+ 3318,
971
971
  "Enables the incremental saving of notebooks between processes and across Remote connections. When enabled, only the changes to the notebook are sent to the extension host, improving performance for large notebooks and slow network connections."
972
972
  )),
973
973
  type: 'boolean',
@@ -976,27 +976,27 @@ configurationRegistry.registerConfiguration({
976
976
  },
977
977
  [NotebookSetting.scrollToRevealCell]: {
978
978
  markdownDescription: ( localize(
979
- 2841,
979
+ 3319,
980
980
  "How far to scroll when revealing the next cell upon running {0}.",
981
981
  'notebook.cell.executeAndSelectBelow'
982
982
  )),
983
983
  type: 'string',
984
984
  enum: ['fullCell', 'firstLine', 'none'],
985
985
  markdownEnumDescriptions: [
986
- ( localize(2842, 'Scroll to fully reveal the next cell.')),
987
- ( localize(2843, 'Scroll to reveal the first line of the next cell.')),
988
- ( localize(2844, 'Do not scroll.')),
986
+ ( localize(3320, 'Scroll to fully reveal the next cell.')),
987
+ ( localize(3321, 'Scroll to reveal the first line of the next cell.')),
988
+ ( localize(3322, 'Do not scroll.')),
989
989
  ],
990
990
  default: 'fullCell'
991
991
  },
992
992
  [NotebookSetting.cellChat]: {
993
- markdownDescription: ( localize(2845, "Enable experimental floating chat widget in notebooks.")),
993
+ markdownDescription: ( localize(3323, "Enable experimental floating chat widget in notebooks.")),
994
994
  type: 'boolean',
995
995
  default: false
996
996
  },
997
997
  [NotebookSetting.cellGenerate]: {
998
998
  markdownDescription: ( localize(
999
- 2846,
999
+ 3324,
1000
1000
  "Enable experimental generate action to create code cell with inline chat enabled."
1001
1001
  )),
1002
1002
  type: 'boolean',
@@ -1005,20 +1005,20 @@ configurationRegistry.registerConfiguration({
1005
1005
  },
1006
1006
  [NotebookSetting.notebookVariablesView]: {
1007
1007
  markdownDescription: ( localize(
1008
- 2847,
1008
+ 3325,
1009
1009
  "Enable the experimental notebook variables view within the debug panel."
1010
1010
  )),
1011
1011
  type: 'boolean',
1012
1012
  default: false
1013
1013
  },
1014
1014
  [NotebookSetting.cellFailureDiagnostics]: {
1015
- markdownDescription: ( localize(2848, "Show available diagnostics for cell failures.")),
1015
+ markdownDescription: ( localize(3326, "Show available diagnostics for cell failures.")),
1016
1016
  type: 'boolean',
1017
1017
  default: true
1018
1018
  },
1019
1019
  [NotebookSetting.outputBackupSizeLimit]: {
1020
1020
  markdownDescription: ( localize(
1021
- 2849,
1021
+ 3327,
1022
1022
  "The limit of notebook output size in kilobytes (KB) where notebook files will no longer be backed up for hot reload. Use 0 for unlimited."
1023
1023
  )),
1024
1024
  type: 'number',
@@ -25,43 +25,43 @@ class NotebookAccessibilityHelp {
25
25
  function getAccessibilityHelpText() {
26
26
  return [
27
27
  ( localize(
28
- 7992,
28
+ 8056,
29
29
  'The notebook view is a collection of code and markdown cells. Code cells can be executed and will produce output directly below the cell.'
30
30
  )),
31
31
  ( localize(
32
- 7993,
32
+ 8057,
33
33
  'The Edit Cell command<keybinding:notebook.cell.edit> will focus on the cell input.'
34
34
  )),
35
35
  ( localize(
36
- 7994,
36
+ 8058,
37
37
  'The Quit Edit command<keybinding:notebook.cell.quitEdit> will set focus on the cell container. The default (Escape) key may need to be pressed twice first exit the virtual cursor if active.'
38
38
  )),
39
39
  ( localize(
40
- 7995,
40
+ 8059,
41
41
  'The Focus Output command<keybinding:notebook.cell.focusInOutput> will set focus in the cell\'s output.'
42
42
  )),
43
43
  ( localize(
44
- 7996,
44
+ 8060,
45
45
  'The Focus Next Cell Editor command<keybinding:notebook.focusNextEditor> will set focus in the next cell\'s editor.'
46
46
  )),
47
47
  ( localize(
48
- 7997,
48
+ 8061,
49
49
  'The Focus Previous Cell Editor command<keybinding:notebook.focusPreviousEditor> will set focus in the previous cell\'s editor.'
50
50
  )),
51
51
  ( localize(
52
- 7998,
52
+ 8062,
53
53
  'The up and down arrows will also move focus between cells while focused on the outer cell container.'
54
54
  )),
55
55
  ( localize(
56
- 7999,
56
+ 8063,
57
57
  'The Execute Cell command<keybinding:notebook.cell.executeAndFocusContainer> executes the cell that currently has focus.'
58
58
  )),
59
59
  ( localize(
60
- 8000,
60
+ 8064,
61
61
  'The Insert Cell Above/Below commands will create new empty code cells.'
62
62
  )),
63
63
  ( localize(
64
- 8001,
64
+ 8065,
65
65
  'The Change Cell to Code/Markdown commands are used to switch between cell types.'
66
66
  ))
67
67
  ].join('\n');