@codingame/monaco-vscode-notebook-service-override 17.2.0 → 18.0.0

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 (81) hide show
  1. package/index.js +1 -1
  2. package/package.json +30 -26
  3. package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.js +11 -8
  4. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.js +26 -26
  5. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticEditorContrib.d.ts +1 -1
  6. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticEditorContrib.js +2 -2
  7. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions.js +8 -8
  8. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib.d.ts +1 -1
  9. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib.js +3 -3
  10. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/contributedStatusBarItemController.d.ts +1 -1
  11. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/contributedStatusBarItemController.js +1 -1
  12. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders.js +4 -4
  13. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.d.ts +1 -1
  14. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.js +9 -9
  15. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/debug/notebookBreakpoints.js +1 -1
  16. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/debug/notebookDebugDecorations.d.ts +1 -1
  17. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/debug/notebookDebugDecorations.js +2 -2
  18. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/editorHint/emptyCellEditorHint.js +1 -1
  19. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar.js +12 -12
  20. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/execute/executionEditorProgress.d.ts +1 -1
  21. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFind.js +6 -6
  22. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.js +7 -7
  23. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted.js +4 -4
  24. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions.js +2 -2
  25. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/marker/markerProvider.js +1 -1
  26. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor.d.ts +1 -1
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor.js +9 -9
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/navigation/arrow.js +17 -17
  29. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables.d.ts +1 -1
  30. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables.js +3 -3
  31. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables.js +3 -3
  32. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource.js +1 -1
  33. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree.d.ts +1 -1
  34. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree.js +3 -3
  35. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.d.ts +1 -1
  36. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.js +5 -5
  37. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.d.ts +3 -3
  38. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.js +19 -19
  39. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile.js +1 -1
  40. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.js +13 -13
  41. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.d.ts +8 -1
  42. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.js +173 -4
  43. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/undoRedo/notebookUndoRedo.js +1 -1
  44. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/viewportWarmup/viewportWarmup.js +2 -2
  45. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +31 -31
  46. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution.js +67 -12
  47. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/editActions.js +29 -29
  48. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/executeActions.js +89 -38
  49. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.d.ts +1 -1
  50. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +26 -26
  51. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.js +20 -20
  52. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions.js +8 -8
  53. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.d.ts +1 -1
  54. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.js +16 -16
  55. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/variablesActions.js +4 -4
  56. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffActions.js +22 -22
  57. package/vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js +76 -75
  58. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp.js +11 -11
  59. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibleView.js +3 -3
  60. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookExtensionPoint.js +33 -33
  61. package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor.d.ts +2 -2
  62. package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor.js +6 -6
  63. package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput.js +1 -1
  64. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorServiceImpl.d.ts +1 -1
  65. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorServiceImpl.js +2 -2
  66. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js +1 -1
  67. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionStateServiceImpl.d.ts +1 -1
  68. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionStateServiceImpl.js +1 -1
  69. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js +1 -1
  70. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.d.ts +1 -1
  71. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js +5 -5
  72. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
  73. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.d.ts +1 -1
  74. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +5 -5
  75. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory.d.ts +1 -1
  76. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory.js +2 -1
  77. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverServiceImpl.js +6 -1
  78. package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +12 -12
  79. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +1 -1
  80. package/vscode/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.d.ts +1 -1
  81. package/vscode/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.js +1 -1
@@ -18,11 +18,11 @@ import '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/ext
18
18
  import { IInstantiationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation';
19
19
  import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
20
20
  import { Registry } from '@codingame/monaco-vscode-api/vscode/vs/platform/registry/common/platform';
21
- import { EditorPaneDescriptor } from '@codingame/monaco-vscode-d0fb86d3-2a47-594e-955b-9a24631a7124-common/vscode/vs/workbench/browser/editor';
21
+ import { EditorPaneDescriptor } from '@codingame/monaco-vscode-dcfc2191-2da1-54c7-8fb7-e92c5d11ecef-common/vscode/vs/workbench/browser/editor';
22
22
  import { Extensions as Extensions$1, registerWorkbenchContribution2, WorkbenchPhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
23
23
  import { EditorExtensions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/editor';
24
- import { NotebookEditor } from '@codingame/monaco-vscode-6f9bc782-77e0-5716-93bd-b05210c768c5-common/vscode/vs/workbench/contrib/notebook/browser/notebookEditor';
25
- import { NotebookEditorInput } from '@codingame/monaco-vscode-324f9a6e-6231-5bfc-af17-e147abd2dfd2-common/vscode/vs/workbench/contrib/notebook/common/notebookEditorInput';
24
+ import { NotebookEditor } from '@codingame/monaco-vscode-bc8c28cd-7a80-54a9-af1a-e6b1e7a7f34a-common/vscode/vs/workbench/contrib/notebook/browser/notebookEditor';
25
+ import { NotebookEditorInput } from '@codingame/monaco-vscode-4372ad43-a220-5e78-83e6-95a9cfd64384-common/vscode/vs/workbench/contrib/notebook/common/notebookEditorInput';
26
26
  import { INotebookService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
27
27
  import './services/notebookServiceImpl.js';
28
28
  import { NotebookSetting, CellUri, CellKind, NotebookCellsChangeType, NotebookMetadataUri, NotebookWorkingCopyTypeIdentifier } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
@@ -32,6 +32,7 @@ import { INotebookEditorModelResolverService } from '@codingame/monaco-vscode-ap
32
32
  import { NotebookDiffEditorInput } from '@codingame/monaco-vscode-e4d0fd26-1b26-5583-b3f7-582e08d7b389-common/vscode/vs/workbench/contrib/notebook/common/notebookDiffEditorInput';
33
33
  import { NotebookTextDiffEditor } from '@codingame/monaco-vscode-e4d0fd26-1b26-5583-b3f7-582e08d7b389-common/vscode/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor';
34
34
  import './services/notebookWorkerServiceImpl.js';
35
+ import '@codingame/monaco-vscode-api/vscode/vs/base/common/errors';
35
36
  import { Event } from '@codingame/monaco-vscode-api/vscode/vs/base/common/event';
36
37
  import './services/notebookEditorServiceImpl.js';
37
38
  import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/platform/jsonschemas/common/jsonContributionRegistry';
@@ -44,14 +45,14 @@ import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/pl
44
45
  import { ILabelService } from '@codingame/monaco-vscode-api/vscode/vs/platform/label/common/label.service';
45
46
  import { IEditorGroupsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorGroupsService.service';
46
47
  import './services/notebookRendererMessagingServiceImpl.js';
47
- import '@codingame/monaco-vscode-0f262ee3-cace-5644-818e-eba5fe007685-common/vscode/vs/workbench/services/outline/browser/outline';
48
- import '@codingame/monaco-vscode-fab30422-b487-5f4e-8d30-8b4d266e3fcd-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
48
+ import '@codingame/monaco-vscode-0094ae09-a688-53e7-bacc-93e26f7f49db-common/vscode/vs/workbench/services/outline/browser/outline';
49
+ import '@codingame/monaco-vscode-1cb11a73-359e-5a2f-9e95-6989cc9858ee-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
49
50
  import './controller/insertCellActions.js';
50
51
  import './controller/executeActions.js';
51
52
  import './controller/sectionActions.js';
52
53
  import './controller/layoutActions.js';
53
54
  import './controller/editActions.js';
54
- import '@codingame/monaco-vscode-fab30422-b487-5f4e-8d30-8b4d266e3fcd-common/vscode/vs/workbench/contrib/notebook/browser/controller/cellOutputActions';
55
+ import '@codingame/monaco-vscode-1cb11a73-359e-5a2f-9e95-6989cc9858ee-common/vscode/vs/workbench/contrib/notebook/browser/controller/cellOutputActions';
55
56
  import './controller/apiActions.js';
56
57
  import '@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/browser/controller/foldingController';
57
58
  import './controller/chat/notebook.chat.contribution.js';
@@ -69,7 +70,7 @@ import './contrib/outline/notebookOutline.js';
69
70
  import './contrib/profile/notebookProfile.js';
70
71
  import './contrib/cellStatusBar/statusBarProviders.js';
71
72
  import './contrib/cellStatusBar/contributedStatusBarItemController.js';
72
- import '@codingame/monaco-vscode-9f229325-8261-585c-a552-16085958c680-common/vscode/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController';
73
+ import '@codingame/monaco-vscode-fc28fb90-97de-5e74-89a9-4cfe44128227-common/vscode/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController';
73
74
  import './contrib/editorStatusBar/editorStatusBar.js';
74
75
  import './contrib/undoRedo/notebookUndoRedo.js';
75
76
  import './contrib/cellCommands/cellCommands.js';
@@ -742,7 +743,7 @@ for (const editorOption of editorOptionsRegistry) {
742
743
  }
743
744
  const editorOptionsCustomizationSchema = {
744
745
  description: ( localize(
745
- 8211,
746
+ 8442,
746
747
  'Settings for code editors used in notebooks. This can be used to customize most editor.* settings.'
747
748
  )),
748
749
  default: {},
@@ -757,11 +758,11 @@ const configurationRegistry = ( Registry.as(Extensions$2.Configuration));
757
758
  configurationRegistry.registerConfiguration({
758
759
  id: 'notebook',
759
760
  order: 100,
760
- title: ( localize(8212, "Notebook")),
761
+ title: ( localize(8443, "Notebook")),
761
762
  type: 'object',
762
763
  properties: {
763
764
  [NotebookSetting.displayOrder]: {
764
- description: ( localize(8213, "Priority list for output mime types")),
765
+ description: ( localize(8444, "Priority list for output mime types")),
765
766
  type: 'array',
766
767
  items: {
767
768
  type: 'string'
@@ -770,12 +771,12 @@ configurationRegistry.registerConfiguration({
770
771
  },
771
772
  [NotebookSetting.cellToolbarLocation]: {
772
773
  description: ( localize(
773
- 8214,
774
+ 8445,
774
775
  "Where the cell toolbar should be shown, or whether it should be hidden."
775
776
  )),
776
777
  type: 'object',
777
778
  additionalProperties: {
778
- markdownDescription: ( localize(8215, "Configure the cell toolbar position for for specific file types")),
779
+ markdownDescription: ( localize(8446, "Configure the cell toolbar position for for specific file types")),
779
780
  type: 'string',
780
781
  enum: ['left', 'right', 'hidden']
781
782
  },
@@ -785,14 +786,14 @@ configurationRegistry.registerConfiguration({
785
786
  tags: ['notebookLayout']
786
787
  },
787
788
  [NotebookSetting.showCellStatusBar]: {
788
- description: ( localize(8216, "Whether the cell status bar should be shown.")),
789
+ description: ( localize(8447, "Whether the cell status bar should be shown.")),
789
790
  type: 'string',
790
791
  enum: ['hidden', 'visible', 'visibleAfterExecute'],
791
792
  enumDescriptions: [
792
- ( localize(8217, "The cell Status bar is always hidden.")),
793
- ( localize(8218, "The cell Status bar is always visible.")),
793
+ ( localize(8448, "The cell Status bar is always hidden.")),
794
+ ( localize(8449, "The cell Status bar is always visible.")),
794
795
  ( localize(
795
- 8219,
796
+ 8450,
796
797
  "The cell Status bar is hidden until the cell has executed. Then it becomes visible to show the execution status."
797
798
  ))
798
799
  ],
@@ -801,18 +802,18 @@ configurationRegistry.registerConfiguration({
801
802
  },
802
803
  [NotebookSetting.cellExecutionTimeVerbosity]: {
803
804
  description: ( localize(
804
- 8220,
805
+ 8451,
805
806
  "Controls the verbosity of the cell execution time in the cell status bar."
806
807
  )),
807
808
  type: 'string',
808
809
  enum: ['default', 'verbose'],
809
810
  enumDescriptions: [
810
811
  ( localize(
811
- 8221,
812
+ 8452,
812
813
  "The cell execution duration is visible, with advanced information in the hover tooltip."
813
814
  )),
814
815
  ( localize(
815
- 8222,
816
+ 8453,
816
817
  "The cell last execution timestamp and duration are visible, with advanced information in the hover tooltip."
817
818
  ))
818
819
  ],
@@ -820,14 +821,14 @@ configurationRegistry.registerConfiguration({
820
821
  tags: ['notebookLayout']
821
822
  },
822
823
  [NotebookSetting.textDiffEditorPreview]: {
823
- description: ( localize(8223, "Whether to use the enhanced text diff editor for notebook.")),
824
+ description: ( localize(8454, "Whether to use the enhanced text diff editor for notebook.")),
824
825
  type: 'boolean',
825
826
  default: true,
826
827
  tags: ['notebookLayout']
827
828
  },
828
829
  [NotebookSetting.diffOverviewRuler]: {
829
830
  description: ( localize(
830
- 8224,
831
+ 8455,
831
832
  "Whether to render the overview ruler in the diff editor for notebook."
832
833
  )),
833
834
  type: 'boolean',
@@ -835,21 +836,21 @@ configurationRegistry.registerConfiguration({
835
836
  tags: ['notebookLayout']
836
837
  },
837
838
  [NotebookSetting.cellToolbarVisibility]: {
838
- markdownDescription: ( localize(8225, "Whether the cell toolbar should appear on hover or click.")),
839
+ markdownDescription: ( localize(8456, "Whether the cell toolbar should appear on hover or click.")),
839
840
  type: 'string',
840
841
  enum: ['hover', 'click'],
841
842
  default: 'click',
842
843
  tags: ['notebookLayout']
843
844
  },
844
845
  [NotebookSetting.undoRedoPerCell]: {
845
- description: ( localize(8226, "Whether to use separate undo/redo stack for each cell.")),
846
+ description: ( localize(8457, "Whether to use separate undo/redo stack for each cell.")),
846
847
  type: 'boolean',
847
848
  default: true,
848
849
  tags: ['notebookLayout']
849
850
  },
850
851
  [NotebookSetting.compactView]: {
851
852
  description: ( localize(
852
- 8227,
853
+ 8458,
853
854
  "Control whether the notebook editor should be rendered in a compact form. For example, when turned on, it will decrease the left margin width."
854
855
  )),
855
856
  type: 'boolean',
@@ -858,7 +859,7 @@ configurationRegistry.registerConfiguration({
858
859
  },
859
860
  [NotebookSetting.focusIndicator]: {
860
861
  description: ( localize(
861
- 8228,
862
+ 8459,
862
863
  "Controls where the focus indicator is rendered, either along the cell borders or on the left gutter."
863
864
  )),
864
865
  type: 'string',
@@ -867,21 +868,21 @@ configurationRegistry.registerConfiguration({
867
868
  tags: ['notebookLayout']
868
869
  },
869
870
  [NotebookSetting.insertToolbarLocation]: {
870
- description: ( localize(8229, "Control where the insert cell actions should appear.")),
871
+ description: ( localize(8460, "Control where the insert cell actions should appear.")),
871
872
  type: 'string',
872
873
  enum: ['betweenCells', 'notebookToolbar', 'both', 'hidden'],
873
874
  enumDescriptions: [
874
- ( localize(8230, "A toolbar that appears on hover between cells.")),
875
- ( localize(8231, "The toolbar at the top of the notebook editor.")),
876
- ( localize(8232, "Both toolbars.")),
877
- ( localize(8233, "The insert actions don't appear anywhere.")),
875
+ ( localize(8461, "A toolbar that appears on hover between cells.")),
876
+ ( localize(8462, "The toolbar at the top of the notebook editor.")),
877
+ ( localize(8463, "Both toolbars.")),
878
+ ( localize(8464, "The insert actions don't appear anywhere.")),
878
879
  ],
879
880
  default: 'both',
880
881
  tags: ['notebookLayout']
881
882
  },
882
883
  [NotebookSetting.globalToolbar]: {
883
884
  description: ( localize(
884
- 8234,
885
+ 8465,
885
886
  "Control whether to render a global toolbar inside the notebook editor."
886
887
  )),
887
888
  type: 'boolean',
@@ -890,7 +891,7 @@ configurationRegistry.registerConfiguration({
890
891
  },
891
892
  [NotebookSetting.stickyScrollEnabled]: {
892
893
  description: ( localize(
893
- 8235,
894
+ 8466,
894
895
  "Experimental. Control whether to render notebook Sticky Scroll headers in the notebook editor."
895
896
  )),
896
897
  type: 'boolean',
@@ -899,21 +900,21 @@ configurationRegistry.registerConfiguration({
899
900
  },
900
901
  [NotebookSetting.stickyScrollMode]: {
901
902
  description: ( localize(
902
- 8236,
903
+ 8467,
903
904
  "Control whether nested sticky lines appear to stack flat or indented."
904
905
  )),
905
906
  type: 'string',
906
907
  enum: ['flat', 'indented'],
907
908
  enumDescriptions: [
908
- ( localize(8237, "Nested sticky lines appear flat.")),
909
- ( localize(8238, "Nested sticky lines appear indented.")),
909
+ ( localize(8468, "Nested sticky lines appear flat.")),
910
+ ( localize(8469, "Nested sticky lines appear indented.")),
910
911
  ],
911
912
  default: 'indented',
912
913
  tags: ['notebookLayout']
913
914
  },
914
915
  [NotebookSetting.consolidatedOutputButton]: {
915
916
  description: ( localize(
916
- 8239,
917
+ 8470,
917
918
  "Control whether outputs action should be rendered in the output toolbar."
918
919
  )),
919
920
  type: 'boolean',
@@ -921,20 +922,20 @@ configurationRegistry.registerConfiguration({
921
922
  tags: ['notebookLayout']
922
923
  },
923
924
  [NotebookSetting.showFoldingControls]: {
924
- description: ( localize(8240, "Controls when the Markdown header folding arrow is shown.")),
925
+ description: ( localize(8471, "Controls when the Markdown header folding arrow is shown.")),
925
926
  type: 'string',
926
927
  enum: ['always', 'never', 'mouseover'],
927
928
  enumDescriptions: [
928
- ( localize(8241, "The folding controls are always visible.")),
929
- ( localize(8242, "Never show the folding controls and reduce the gutter size.")),
930
- ( localize(8243, "The folding controls are visible only on mouseover.")),
929
+ ( localize(8472, "The folding controls are always visible.")),
930
+ ( localize(8473, "Never show the folding controls and reduce the gutter size.")),
931
+ ( localize(8474, "The folding controls are visible only on mouseover.")),
931
932
  ],
932
933
  default: 'mouseover',
933
934
  tags: ['notebookLayout']
934
935
  },
935
936
  [NotebookSetting.dragAndDropEnabled]: {
936
937
  description: ( localize(
937
- 8244,
938
+ 8475,
938
939
  "Control whether the notebook editor should allow moving cells through drag and drop."
939
940
  )),
940
941
  type: 'boolean',
@@ -943,7 +944,7 @@ configurationRegistry.registerConfiguration({
943
944
  },
944
945
  [NotebookSetting.consolidatedRunButton]: {
945
946
  description: ( localize(
946
- 8245,
947
+ 8476,
947
948
  "Control whether extra actions are shown in a dropdown next to the run button."
948
949
  )),
949
950
  type: 'boolean',
@@ -952,7 +953,7 @@ configurationRegistry.registerConfiguration({
952
953
  },
953
954
  [NotebookSetting.globalToolbarShowLabel]: {
954
955
  description: ( localize(
955
- 8246,
956
+ 8477,
956
957
  "Control whether the actions on the notebook toolbar should render label or not."
957
958
  )),
958
959
  type: 'string',
@@ -962,7 +963,7 @@ configurationRegistry.registerConfiguration({
962
963
  },
963
964
  [NotebookSetting.textOutputLineLimit]: {
964
965
  markdownDescription: ( localize(
965
- 8247,
966
+ 8478,
966
967
  "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.",
967
968
  '`#notebook.output.scrolling#`'
968
969
  )),
@@ -973,7 +974,7 @@ configurationRegistry.registerConfiguration({
973
974
  },
974
975
  [NotebookSetting.LinkifyOutputFilePaths]: {
975
976
  description: ( localize(
976
- 8248,
977
+ 8479,
977
978
  "Control whether to disable filepath links in the output of notebook cells."
978
979
  )),
979
980
  type: 'boolean',
@@ -981,14 +982,14 @@ configurationRegistry.registerConfiguration({
981
982
  tags: ['notebookOutputLayout']
982
983
  },
983
984
  [NotebookSetting.minimalErrorRendering]: {
984
- description: ( localize(8249, "Control whether to render error output in a minimal style.")),
985
+ description: ( localize(8480, "Control whether to render error output in a minimal style.")),
985
986
  type: 'boolean',
986
987
  default: false,
987
988
  tags: ['notebookOutputLayout']
988
989
  },
989
990
  [NotebookSetting.markupFontSize]: {
990
991
  markdownDescription: ( localize(
991
- 8250,
992
+ 8481,
992
993
  "Controls the font size in pixels of rendered markup in notebooks. When set to {0}, 120% of {1} is used.",
993
994
  '`0`',
994
995
  '`#editor.fontSize#`'
@@ -999,7 +1000,7 @@ configurationRegistry.registerConfiguration({
999
1000
  },
1000
1001
  [NotebookSetting.markdownLineHeight]: {
1001
1002
  markdownDescription: ( localize(
1002
- 8251,
1003
+ 8482,
1003
1004
  "Controls the line height in pixels of markdown cells in notebooks. When set to {0}, {1} will be used",
1004
1005
  '`0`',
1005
1006
  '`normal`'
@@ -1011,7 +1012,7 @@ configurationRegistry.registerConfiguration({
1011
1012
  [NotebookSetting.cellEditorOptionsCustomizations]: editorOptionsCustomizationSchema,
1012
1013
  [NotebookSetting.interactiveWindowCollapseCodeCells]: {
1013
1014
  markdownDescription: ( localize(
1014
- 8252,
1015
+ 8483,
1015
1016
  "Controls whether code cells in the interactive window are collapsed by default."
1016
1017
  )),
1017
1018
  type: 'string',
@@ -1020,7 +1021,7 @@ configurationRegistry.registerConfiguration({
1020
1021
  },
1021
1022
  [NotebookSetting.outputLineHeight]: {
1022
1023
  markdownDescription: ( localize(
1023
- 8253,
1024
+ 8484,
1024
1025
  "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."
1025
1026
  )),
1026
1027
  type: 'number',
@@ -1029,7 +1030,7 @@ configurationRegistry.registerConfiguration({
1029
1030
  },
1030
1031
  [NotebookSetting.outputFontSize]: {
1031
1032
  markdownDescription: ( localize(
1032
- 8254,
1033
+ 8485,
1033
1034
  "Font size for the output text within notebook cells. When set to 0, {0} is used.",
1034
1035
  '`#editor.fontSize#`'
1035
1036
  )),
@@ -1039,7 +1040,7 @@ configurationRegistry.registerConfiguration({
1039
1040
  },
1040
1041
  [NotebookSetting.outputFontFamily]: {
1041
1042
  markdownDescription: ( localize(
1042
- 8255,
1043
+ 8486,
1043
1044
  "The font family of the output text within notebook cells. When set to empty, the {0} is used.",
1044
1045
  '`#editor.fontFamily#`'
1045
1046
  )),
@@ -1048,7 +1049,7 @@ configurationRegistry.registerConfiguration({
1048
1049
  },
1049
1050
  [NotebookSetting.outputScrolling]: {
1050
1051
  markdownDescription: ( localize(
1051
- 8256,
1052
+ 8487,
1052
1053
  "Initially render notebook outputs in a scrollable region when longer than the limit."
1053
1054
  )),
1054
1055
  type: 'boolean',
@@ -1056,14 +1057,14 @@ configurationRegistry.registerConfiguration({
1056
1057
  default: typeof product.quality === 'string' && product.quality !== 'stable'
1057
1058
  },
1058
1059
  [NotebookSetting.outputWordWrap]: {
1059
- markdownDescription: ( localize(8257, "Controls whether the lines in output should wrap.")),
1060
+ markdownDescription: ( localize(8488, "Controls whether the lines in output should wrap.")),
1060
1061
  type: 'boolean',
1061
1062
  tags: ['notebookLayout', 'notebookOutputLayout'],
1062
1063
  default: false
1063
1064
  },
1064
1065
  [NotebookSetting.defaultFormatter]: {
1065
1066
  description: ( localize(
1066
- 8258,
1067
+ 8489,
1067
1068
  "Defines a default notebook formatter which takes precedence over all other formatter settings. Must be the identifier of an extension contributing a formatter."
1068
1069
  )),
1069
1070
  type: ['string', 'null'],
@@ -1074,7 +1075,7 @@ configurationRegistry.registerConfiguration({
1074
1075
  },
1075
1076
  [NotebookSetting.formatOnSave]: {
1076
1077
  markdownDescription: ( localize(
1077
- 8259,
1078
+ 8490,
1078
1079
  "Format a notebook on save. A formatter must be available and the editor must not be shutting down. When {0} is set to `afterDelay`, the file will only be formatted when saved explicitly.",
1079
1080
  '`#files.autoSave#`'
1080
1081
  )),
@@ -1084,7 +1085,7 @@ configurationRegistry.registerConfiguration({
1084
1085
  },
1085
1086
  [NotebookSetting.insertFinalNewline]: {
1086
1087
  markdownDescription: ( localize(
1087
- 8260,
1088
+ 8491,
1088
1089
  "When enabled, insert a final new line into the end of code cells when saving a notebook."
1089
1090
  )),
1090
1091
  type: 'boolean',
@@ -1093,7 +1094,7 @@ configurationRegistry.registerConfiguration({
1093
1094
  },
1094
1095
  [NotebookSetting.formatOnCellExecution]: {
1095
1096
  markdownDescription: ( localize(
1096
- 8261,
1097
+ 8492,
1097
1098
  "Format a notebook cell upon execution. A formatter must be available."
1098
1099
  )),
1099
1100
  type: 'boolean',
@@ -1101,7 +1102,7 @@ configurationRegistry.registerConfiguration({
1101
1102
  },
1102
1103
  [NotebookSetting.confirmDeleteRunningCell]: {
1103
1104
  markdownDescription: ( localize(
1104
- 8262,
1105
+ 8493,
1105
1106
  "Control whether a confirmation prompt is required to delete a running cell."
1106
1107
  )),
1107
1108
  type: 'boolean',
@@ -1109,7 +1110,7 @@ configurationRegistry.registerConfiguration({
1109
1110
  },
1110
1111
  [NotebookSetting.findFilters]: {
1111
1112
  markdownDescription: ( localize(
1112
- 8263,
1113
+ 8494,
1113
1114
  "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."
1114
1115
  )),
1115
1116
  type: 'object',
@@ -1141,7 +1142,7 @@ configurationRegistry.registerConfiguration({
1141
1142
  },
1142
1143
  [NotebookSetting.remoteSaving]: {
1143
1144
  markdownDescription: ( localize(
1144
- 8264,
1145
+ 8495,
1145
1146
  "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."
1146
1147
  )),
1147
1148
  type: 'boolean',
@@ -1150,22 +1151,22 @@ configurationRegistry.registerConfiguration({
1150
1151
  },
1151
1152
  [NotebookSetting.scrollToRevealCell]: {
1152
1153
  markdownDescription: ( localize(
1153
- 8265,
1154
+ 8496,
1154
1155
  "How far to scroll when revealing the next cell upon running {0}.",
1155
1156
  'notebook.cell.executeAndSelectBelow'
1156
1157
  )),
1157
1158
  type: 'string',
1158
1159
  enum: ['fullCell', 'firstLine', 'none'],
1159
1160
  markdownEnumDescriptions: [
1160
- ( localize(8266, 'Scroll to fully reveal the next cell.')),
1161
- ( localize(8267, 'Scroll to reveal the first line of the next cell.')),
1162
- ( localize(8268, 'Do not scroll.')),
1161
+ ( localize(8497, 'Scroll to fully reveal the next cell.')),
1162
+ ( localize(8498, 'Scroll to reveal the first line of the next cell.')),
1163
+ ( localize(8499, 'Do not scroll.')),
1163
1164
  ],
1164
1165
  default: 'fullCell'
1165
1166
  },
1166
1167
  [NotebookSetting.cellGenerate]: {
1167
1168
  markdownDescription: ( localize(
1168
- 8269,
1169
+ 8500,
1169
1170
  "Enable experimental generate action to create code cell with inline chat enabled."
1170
1171
  )),
1171
1172
  type: 'boolean',
@@ -1173,7 +1174,7 @@ configurationRegistry.registerConfiguration({
1173
1174
  },
1174
1175
  [NotebookSetting.notebookVariablesView]: {
1175
1176
  markdownDescription: ( localize(
1176
- 8270,
1177
+ 8501,
1177
1178
  "Enable the experimental notebook variables view within the debug panel."
1178
1179
  )),
1179
1180
  type: 'boolean',
@@ -1181,32 +1182,32 @@ configurationRegistry.registerConfiguration({
1181
1182
  },
1182
1183
  [NotebookSetting.notebookInlineValues]: {
1183
1184
  markdownDescription: ( localize(
1184
- 8271,
1185
+ 8502,
1185
1186
  "Control whether to show inline values within notebook code cells after cell execution. Values will remain until the cell is edited, re-executed, or explicitly cleared via the Clear All Outputs toolbar button or the `Notebook: Clear Inline Values` command."
1186
1187
  )),
1187
1188
  type: 'string',
1188
1189
  enum: ['on', 'auto', 'off'],
1189
1190
  enumDescriptions: [
1190
1191
  ( localize(
1191
- 8272,
1192
+ 8503,
1192
1193
  "Always show inline values, with a regex fallback if no inline value provider is registered. Note: There may be a performance impact in larger cells if the fallback is used."
1193
1194
  )),
1194
1195
  ( localize(
1195
- 8273,
1196
+ 8504,
1196
1197
  "Show inline values only when an inline value provider is registered."
1197
1198
  )),
1198
- ( localize(8274, "Never show inline values.")),
1199
+ ( localize(8505, "Never show inline values.")),
1199
1200
  ],
1200
1201
  default: 'off'
1201
1202
  },
1202
1203
  [NotebookSetting.cellFailureDiagnostics]: {
1203
- markdownDescription: ( localize(8275, "Show available diagnostics for cell failures.")),
1204
+ markdownDescription: ( localize(8506, "Show available diagnostics for cell failures.")),
1204
1205
  type: 'boolean',
1205
1206
  default: true
1206
1207
  },
1207
1208
  [NotebookSetting.outputBackupSizeLimit]: {
1208
1209
  markdownDescription: ( localize(
1209
- 8276,
1210
+ 8507,
1210
1211
  "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."
1211
1212
  )),
1212
1213
  type: 'number',
@@ -1214,7 +1215,7 @@ configurationRegistry.registerConfiguration({
1214
1215
  },
1215
1216
  [NotebookSetting.multiCursor]: {
1216
1217
  markdownDescription: ( localize(
1217
- 8277,
1218
+ 8508,
1218
1219
  "Experimental. Enables a limited set of multi cursor controls across multiple cells in the notebook editor. Currently supported are core editor actions (typing/cut/copy/paste/composition) and a limited subset of editor commands."
1219
1220
  )),
1220
1221
  type: 'boolean',
@@ -1222,7 +1223,7 @@ configurationRegistry.registerConfiguration({
1222
1223
  },
1223
1224
  [NotebookSetting.markupFontFamily]: {
1224
1225
  markdownDescription: ( localize(
1225
- 8278,
1226
+ 8509,
1226
1227
  "Controls the font family of rendered markup in notebooks. When left blank, this will fall back to the default workbench font family."
1227
1228
  )),
1228
1229
  type: 'string',
@@ -1,5 +1,5 @@
1
1
 
2
- import { NOTEBOOK_EDITOR_FOCUSED, IS_COMPOSITE_NOTEBOOK } from '@codingame/monaco-vscode-51fed910-d648-5620-9b80-9232cd79d116-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
2
+ import { NOTEBOOK_EDITOR_FOCUSED, IS_COMPOSITE_NOTEBOOK } from '@codingame/monaco-vscode-c87fff3a-2aa9-52ab-ba4d-17e8d1e5e185-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
3
3
  import { localize } from '@codingame/monaco-vscode-api/vscode/vs/nls';
4
4
  import { AccessibleViewType, AccessibleContentProvider, AccessibleViewProviderId } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleView';
5
5
  import { AccessibilityVerbositySettingId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
@@ -27,51 +27,51 @@ class NotebookAccessibilityHelp {
27
27
  function getAccessibilityHelpText() {
28
28
  return [
29
29
  ( localize(
30
- 8279,
30
+ 8510,
31
31
  'The notebook view is a collection of code and markdown cells. Code cells can be executed and will produce output directly below the cell.'
32
32
  )),
33
33
  ( localize(
34
- 8280,
34
+ 8511,
35
35
  'The Edit Cell command{0} will focus on the cell input.',
36
36
  '<keybinding:notebook.cell.edit>'
37
37
  )),
38
38
  ( localize(
39
- 8281,
39
+ 8512,
40
40
  'The Quit Edit command{0} will set focus on the cell container. The default (Escape) key may need to be pressed twice first exit the virtual cursor if active.',
41
41
  '<keybinding:notebook.cell.quitEdit>'
42
42
  )),
43
43
  ( localize(
44
- 8282,
44
+ 8513,
45
45
  'The Focus Output command{0} will set focus in the cell\'s output.',
46
46
  '<keybinding:notebook.cell.focusInOutput>'
47
47
  )),
48
48
  ( localize(
49
- 8283,
49
+ 8514,
50
50
  'The Focus Next Cell Editor command{0} will set focus in the next cell\'s editor.',
51
51
  '<keybinding:notebook.focusNextEditor>'
52
52
  )),
53
53
  ( localize(
54
- 8284,
54
+ 8515,
55
55
  'The Focus Previous Cell Editor command{0} will set focus in the previous cell\'s editor.',
56
56
  '<keybinding:notebook.focusPreviousEditor>'
57
57
  )),
58
58
  ( localize(
59
- 8285,
59
+ 8516,
60
60
  'The up and down arrows will also move focus between cells while focused on the outer cell container.'
61
61
  )),
62
62
  ( localize(
63
- 8286,
63
+ 8517,
64
64
  'The Execute Cell command{0} executes the cell that currently has focus.',
65
65
  '<keybinding:notebook.cell.executeAndFocusContainer>'
66
66
  )),
67
67
  ( localize(
68
- 8287,
68
+ 8518,
69
69
  'The Insert Cell Above{0} and Below{1} commands will create new empty code cells.',
70
70
  '<keybinding:notebook.cell.insertCodeCellAbove>',
71
71
  '<keybinding:notebook.cell.insertCodeCellBelow>'
72
72
  )),
73
73
  ( localize(
74
- 8288,
74
+ 8519,
75
75
  'The Change Cell to Code/Markdown commands are used to switch between cell types.'
76
76
  ))
77
77
  ].join('\n');
@@ -2,11 +2,11 @@
2
2
  import { AccessibleViewType, AccessibleContentProvider, AccessibleViewProviderId } from '@codingame/monaco-vscode-api/vscode/vs/platform/accessibility/browser/accessibleView';
3
3
  import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
4
4
  import { AccessibilityVerbositySettingId } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration';
5
- import { getNotebookEditorFromEditorPane } from '@codingame/monaco-vscode-324f9a6e-6231-5bfc-af17-e147abd2dfd2-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
6
- import { NOTEBOOK_CELL_LIST_FOCUSED } from '@codingame/monaco-vscode-51fed910-d648-5620-9b80-9232cd79d116-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
5
+ import { getNotebookEditorFromEditorPane } from '@codingame/monaco-vscode-4372ad43-a220-5e78-83e6-95a9cfd64384-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
6
+ import { NOTEBOOK_CELL_LIST_FOCUSED } from '@codingame/monaco-vscode-c87fff3a-2aa9-52ab-ba4d-17e8d1e5e185-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
7
7
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
8
8
  import { InputFocusedContext } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkeys';
9
- import { getAllOutputsText } from '@codingame/monaco-vscode-fab30422-b487-5f4e-8d30-8b4d266e3fcd-common/vscode/vs/workbench/contrib/notebook/browser/viewModel/cellOutputTextHelper';
9
+ import { getAllOutputsText } from '@codingame/monaco-vscode-1cb11a73-359e-5a2f-9e95-6989cc9858ee-common/vscode/vs/workbench/contrib/notebook/browser/viewModel/cellOutputTextHelper';
10
10
 
11
11
  class NotebookAccessibleView {
12
12
  constructor() {