@codingame/monaco-vscode-notebook-service-override 23.2.2 → 24.1.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 (103) hide show
  1. package/index.js +3 -3
  2. package/package.json +3 -24
  3. package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.js +8 -8
  4. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.js +27 -27
  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 +3 -3
  7. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions.js +11 -14
  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 +4 -4
  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 +2 -2
  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 +2 -2
  14. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.js +10 -10
  15. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/debug/notebookBreakpoints.js +3 -2
  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 +6 -6
  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/execute/executionEditorProgress.js +1 -1
  22. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFind.js +9 -9
  23. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.js +7 -7
  24. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted.js +4 -4
  25. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions.js +2 -2
  26. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/marker/markerProvider.js +2 -2
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor.d.ts +1 -1
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor.js +13 -13
  29. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookSelectionHighlight.js +1 -1
  30. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/navigation/arrow.js +17 -17
  31. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables.d.ts +1 -1
  32. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables.js +5 -5
  33. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables.js +3 -3
  34. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource.js +1 -1
  35. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree.js +4 -4
  36. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.d.ts +1 -1
  37. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.js +3 -3
  38. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.d.ts +3 -3
  39. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.js +15 -15
  40. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile.js +1 -1
  41. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.d.ts +1 -1
  42. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.js +14 -14
  43. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.d.ts +1 -1
  44. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.js +5 -5
  45. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/undoRedo/notebookUndoRedo.js +1 -1
  46. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/viewportWarmup/viewportWarmup.js +4 -4
  47. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +14 -14
  48. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution.js +19 -31
  49. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebookChatContext.js +1 -1
  50. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/editActions.js +32 -32
  51. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/executeActions.js +30 -30
  52. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.d.ts +2 -2
  53. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +27 -27
  54. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.js +20 -20
  55. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions.js +8 -8
  56. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.d.ts +1 -1
  57. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.js +17 -17
  58. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/variablesActions.js +4 -4
  59. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffActions.js +26 -26
  60. package/vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js +86 -86
  61. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp.js +11 -11
  62. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibleView.js +3 -3
  63. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookExtensionPoint.js +33 -33
  64. package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor.d.ts +3 -3
  65. package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor.js +11 -11
  66. package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput.d.ts +1 -1
  67. package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput.js +1 -1
  68. package/vscode/src/vs/workbench/contrib/notebook/browser/replEditorAccessibleView.js +3 -3
  69. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorServiceImpl.d.ts +2 -2
  70. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorServiceImpl.js +5 -6
  71. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.d.ts +1 -1
  72. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js +2 -2
  73. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionStateServiceImpl.d.ts +1 -1
  74. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionStateServiceImpl.js +1 -1
  75. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js +1 -1
  76. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.d.ts +1 -1
  77. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js +5 -5
  78. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
  79. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.d.ts +3 -3
  80. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +8 -8
  81. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookWorkerServiceImpl.d.ts +2 -1
  82. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookWorkerServiceImpl.js +15 -8
  83. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/OutlineEntry.d.ts +1 -1
  84. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/OutlineEntry.js +1 -1
  85. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineDataSource.d.ts +2 -2
  86. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineDataSource.js +1 -1
  87. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineDataSourceFactory.d.ts +1 -1
  88. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory.d.ts +1 -1
  89. package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineEntryFactory.js +2 -2
  90. package/vscode/src/vs/workbench/contrib/notebook/common/model/cellEdit.d.ts +1 -1
  91. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookTextModel.d.ts +1 -1
  92. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookTextModel.js +12 -12
  93. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverServiceImpl.js +1 -1
  94. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookWebWorker.js +1 -1
  95. package/vscode/src/vs/workbench/contrib/replNotebook/browser/repl.contribution.js +12 -12
  96. package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditorAccessibilityHelp.js +15 -15
  97. package/vscode/src/vs/workbench/services/workingCopy/common/abstractFileWorkingCopyManager.d.ts +1 -1
  98. package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.d.ts +2 -2
  99. package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +14 -14
  100. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.d.ts +1 -1
  101. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +3 -3
  102. package/vscode/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.d.ts +2 -2
  103. package/vscode/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.js +2 -2
@@ -7,9 +7,9 @@ import { registerAction2, MenuId, MenuRegistry } from '@codingame/monaco-vscode-
7
7
  import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
8
8
  import { InputFocusedContext } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkeys';
9
9
  import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platform/keybinding/common/keybindingsRegistry';
10
- import { insertCell } from '@codingame/monaco-vscode-e4d0fd26-1b26-5583-b3f7-582e08d7b389-common/vscode/vs/workbench/contrib/notebook/browser/controller/cellOperations';
11
- import { NotebookAction } from '@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
12
- import { NOTEBOOK_CELL_LIST_FOCUSED, NOTEBOOK_EDITOR_EDITABLE } from '@codingame/monaco-vscode-eda30bac-0984-5b42-9362-c68996b85232-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
10
+ import { insertCell } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/notebook/browser/controller/cellOperations';
11
+ import { NotebookAction } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
12
+ import { NOTEBOOK_CELL_LIST_FOCUSED, NOTEBOOK_EDITOR_EDITABLE } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
13
13
  import { CellKind, NotebookSetting } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
14
14
  import { INotebookKernelHistoryService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookKernelService.service';
15
15
 
@@ -57,7 +57,7 @@ registerAction2(class InsertCodeCellAboveAction extends InsertCellCommand {
57
57
  constructor() {
58
58
  super({
59
59
  id: INSERT_CODE_CELL_ABOVE_COMMAND_ID,
60
- title: ( localize(9256, "Insert Code Cell Above")),
60
+ title: ( localize(9390, "Insert Code Cell Above")),
61
61
  keybinding: {
62
62
  primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.Enter,
63
63
  when: ( ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, ( InputFocusedContext.toNegated()))),
@@ -74,7 +74,7 @@ registerAction2(class InsertCodeCellAboveAndFocusContainerAction extends InsertC
74
74
  constructor() {
75
75
  super({
76
76
  id: INSERT_CODE_CELL_ABOVE_AND_FOCUS_CONTAINER_COMMAND_ID,
77
- title: ( localize(9257, "Insert Code Cell Above and Focus Container"))
77
+ title: ( localize(9391, "Insert Code Cell Above and Focus Container"))
78
78
  }, CellKind.Code, 'above', false);
79
79
  }
80
80
  });
@@ -82,7 +82,7 @@ registerAction2(class InsertCodeCellBelowAction extends InsertCellCommand {
82
82
  constructor() {
83
83
  super({
84
84
  id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
85
- title: ( localize(9258, "Insert Code Cell Below")),
85
+ title: ( localize(9392, "Insert Code Cell Below")),
86
86
  keybinding: {
87
87
  primary: KeyMod.CtrlCmd | KeyCode.Enter,
88
88
  when: ( ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, ( InputFocusedContext.toNegated()))),
@@ -99,7 +99,7 @@ registerAction2(class InsertCodeCellBelowAndFocusContainerAction extends InsertC
99
99
  constructor() {
100
100
  super({
101
101
  id: INSERT_CODE_CELL_BELOW_AND_FOCUS_CONTAINER_COMMAND_ID,
102
- title: ( localize(9259, "Insert Code Cell Below and Focus Container")),
102
+ title: ( localize(9393, "Insert Code Cell Below and Focus Container")),
103
103
  }, CellKind.Code, 'below', false);
104
104
  }
105
105
  });
@@ -107,7 +107,7 @@ registerAction2(class InsertMarkdownCellAboveAction extends InsertCellCommand {
107
107
  constructor() {
108
108
  super({
109
109
  id: INSERT_MARKDOWN_CELL_ABOVE_COMMAND_ID,
110
- title: ( localize(9260, "Insert Markdown Cell Above")),
110
+ title: ( localize(9394, "Insert Markdown Cell Above")),
111
111
  menu: {
112
112
  id: MenuId.NotebookCellInsert,
113
113
  order: 2
@@ -119,7 +119,7 @@ registerAction2(class InsertMarkdownCellBelowAction extends InsertCellCommand {
119
119
  constructor() {
120
120
  super({
121
121
  id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
122
- title: ( localize(9261, "Insert Markdown Cell Below")),
122
+ title: ( localize(9395, "Insert Markdown Cell Below")),
123
123
  menu: {
124
124
  id: MenuId.NotebookCellInsert,
125
125
  order: 3
@@ -131,7 +131,7 @@ registerAction2(class InsertCodeCellAtTopAction extends NotebookAction {
131
131
  constructor() {
132
132
  super({
133
133
  id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
134
- title: ( localize(9262, "Add Code Cell At Top")),
134
+ title: ( localize(9396, "Add Code Cell At Top")),
135
135
  f1: false
136
136
  });
137
137
  }
@@ -154,7 +154,7 @@ registerAction2(class InsertMarkdownCellAtTopAction extends NotebookAction {
154
154
  constructor() {
155
155
  super({
156
156
  id: INSERT_MARKDOWN_CELL_AT_TOP_COMMAND_ID,
157
- title: ( localize(9263, "Add Markdown Cell At Top")),
157
+ title: ( localize(9397, "Add Markdown Cell At Top")),
158
158
  f1: false
159
159
  });
160
160
  }
@@ -176,8 +176,8 @@ registerAction2(class InsertMarkdownCellAtTopAction extends NotebookAction {
176
176
  MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
177
177
  command: {
178
178
  id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
179
- title: '$(add) ' + ( localize(9264, "Code")),
180
- tooltip: ( localize(9265, "Add Code Cell"))
179
+ title: '$(add) ' + ( localize(9398, "Code")),
180
+ tooltip: ( localize(9399, "Add Code Cell"))
181
181
  },
182
182
  order: 0,
183
183
  group: 'inline',
@@ -186,9 +186,9 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
186
186
  MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
187
187
  command: {
188
188
  id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
189
- title: ( localize(9266, "Add Code")),
189
+ title: ( localize(9400, "Add Code")),
190
190
  icon: Codicon.add,
191
- tooltip: ( localize(9265, "Add Code Cell"))
191
+ tooltip: ( localize(9399, "Add Code Cell"))
192
192
  },
193
193
  order: 0,
194
194
  group: 'inline',
@@ -198,8 +198,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
198
198
  command: {
199
199
  id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
200
200
  icon: Codicon.add,
201
- title: ( localize(9267, "Code")),
202
- tooltip: ( localize(9265, "Add Code Cell"))
201
+ title: ( localize(9401, "Code")),
202
+ tooltip: ( localize(9399, "Add Code Cell"))
203
203
  },
204
204
  order: -5,
205
205
  group: 'navigation/add',
@@ -208,8 +208,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
208
208
  MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
209
209
  command: {
210
210
  id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
211
- title: '$(add) ' + ( localize(9264, "Code")),
212
- tooltip: ( localize(9265, "Add Code Cell"))
211
+ title: '$(add) ' + ( localize(9398, "Code")),
212
+ tooltip: ( localize(9399, "Add Code Cell"))
213
213
  },
214
214
  order: 0,
215
215
  group: 'inline',
@@ -218,9 +218,9 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
218
218
  MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
219
219
  command: {
220
220
  id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
221
- title: ( localize(9268, "Add Code")),
221
+ title: ( localize(9402, "Add Code")),
222
222
  icon: Codicon.add,
223
- tooltip: ( localize(9265, "Add Code Cell"))
223
+ tooltip: ( localize(9399, "Add Code Cell"))
224
224
  },
225
225
  order: 0,
226
226
  group: 'inline',
@@ -229,8 +229,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
229
229
  MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
230
230
  command: {
231
231
  id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
232
- title: '$(add) ' + ( localize(9269, "Markdown")),
233
- tooltip: ( localize(9270, "Add Markdown Cell"))
232
+ title: '$(add) ' + ( localize(9403, "Markdown")),
233
+ tooltip: ( localize(9404, "Add Markdown Cell"))
234
234
  },
235
235
  order: 1,
236
236
  group: 'inline',
@@ -240,8 +240,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
240
240
  command: {
241
241
  id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
242
242
  icon: Codicon.add,
243
- title: ( localize(9271, "Markdown")),
244
- tooltip: ( localize(9270, "Add Markdown Cell"))
243
+ title: ( localize(9405, "Markdown")),
244
+ tooltip: ( localize(9404, "Add Markdown Cell"))
245
245
  },
246
246
  order: -5,
247
247
  group: 'navigation/add',
@@ -250,8 +250,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
250
250
  MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
251
251
  command: {
252
252
  id: INSERT_MARKDOWN_CELL_AT_TOP_COMMAND_ID,
253
- title: '$(add) ' + ( localize(9269, "Markdown")),
254
- tooltip: ( localize(9270, "Add Markdown Cell"))
253
+ title: '$(add) ' + ( localize(9403, "Markdown")),
254
+ tooltip: ( localize(9404, "Add Markdown Cell"))
255
255
  },
256
256
  order: 1,
257
257
  group: 'inline',
@@ -10,11 +10,11 @@ import { ConfigurationTarget } from '@codingame/monaco-vscode-api/vscode/vs/plat
10
10
  import { IConfigurationService } from '@codingame/monaco-vscode-api/vscode/vs/platform/configuration/common/configuration.service';
11
11
  import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
12
12
  import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
13
- import { NOTEBOOK_ACTIONS_CATEGORY } from '@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
14
- import { getNotebookEditorFromEditorPane } from '@codingame/monaco-vscode-9d2c06d1-1f89-51a5-9964-aa01fe50c198-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
13
+ import { NOTEBOOK_ACTIONS_CATEGORY } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
14
+ import { getNotebookEditorFromEditorPane } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
15
15
  import { INotebookEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service';
16
16
  import { NotebookSetting } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
17
- import { NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_FOCUSED } from '@codingame/monaco-vscode-eda30bac-0984-5b42-9362-c68996b85232-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
17
+ import { NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_FOCUSED } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
18
18
  import { INotebookService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookService.service';
19
19
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
20
20
  import { IPreferencesService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/preferences/common/preferences.service';
@@ -23,7 +23,7 @@ registerAction2(class NotebookConfigureLayoutAction extends Action2 {
23
23
  constructor() {
24
24
  super({
25
25
  id: 'workbench.notebook.layout.select',
26
- title: ( localize2(9272, "Select between Notebook Layouts")),
26
+ title: ( localize2(9406, "Select between Notebook Layouts")),
27
27
  f1: true,
28
28
  precondition: ( ContextKeyExpr.equals(`config.${NotebookSetting.openGettingStarted}`, true)),
29
29
  category: NOTEBOOK_ACTIONS_CATEGORY,
@@ -51,7 +51,7 @@ registerAction2(class NotebookConfigureLayoutAction extends Action2 {
51
51
  constructor() {
52
52
  super({
53
53
  id: 'workbench.notebook.layout.configure',
54
- title: ( localize2(9273, "Customize Notebook Layout")),
54
+ title: ( localize2(9407, "Customize Notebook Layout")),
55
55
  f1: true,
56
56
  category: NOTEBOOK_ACTIONS_CATEGORY,
57
57
  menu: [
@@ -72,7 +72,7 @@ registerAction2(class NotebookConfigureLayoutFromEditorTitle extends Action2 {
72
72
  constructor() {
73
73
  super({
74
74
  id: 'workbench.notebook.layout.configure.editorTitle',
75
- title: ( localize2(9273, "Customize Notebook Layout")),
75
+ title: ( localize2(9407, "Customize Notebook Layout")),
76
76
  f1: false,
77
77
  category: NOTEBOOK_ACTIONS_CATEGORY,
78
78
  menu: [
@@ -91,7 +91,7 @@ registerAction2(class NotebookConfigureLayoutFromEditorTitle extends Action2 {
91
91
  });
92
92
  MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
93
93
  submenu: MenuId.NotebookEditorLayoutConfigure,
94
- title: ( localize2(9274, "Customize Notebook...")),
94
+ title: ( localize2(9408, "Customize Notebook...")),
95
95
  icon: Codicon.gear,
96
96
  group: 'navigation',
97
97
  order: -1,
@@ -101,7 +101,7 @@ registerAction2(class ToggleLineNumberFromEditorTitle extends Action2 {
101
101
  constructor() {
102
102
  super({
103
103
  id: 'notebook.toggleLineNumbersFromEditorTitle',
104
- title: ( localize2(9275, 'Toggle Notebook Line Numbers')),
104
+ title: ( localize2(9409, 'Toggle Notebook Line Numbers')),
105
105
  precondition: NOTEBOOK_EDITOR_FOCUSED,
106
106
  menu: [
107
107
  {
@@ -115,7 +115,7 @@ registerAction2(class ToggleLineNumberFromEditorTitle extends Action2 {
115
115
  f1: true,
116
116
  toggled: {
117
117
  condition: ( ContextKeyExpr.notEquals('config.notebook.lineNumbers', 'off')),
118
- title: ( localize(9276, "Notebook Line Numbers")),
118
+ title: ( localize(9410, "Notebook Line Numbers")),
119
119
  }
120
120
  });
121
121
  }
@@ -127,7 +127,7 @@ registerAction2(class ToggleCellToolbarPositionFromEditorTitle extends Action2 {
127
127
  constructor() {
128
128
  super({
129
129
  id: 'notebook.toggleCellToolbarPositionFromEditorTitle',
130
- title: ( localize2(9277, 'Toggle Cell Toolbar Position')),
130
+ title: ( localize2(9411, 'Toggle Cell Toolbar Position')),
131
131
  menu: [{
132
132
  id: MenuId.NotebookEditorLayoutConfigure,
133
133
  group: 'notebookLayoutDetails',
@@ -145,7 +145,7 @@ registerAction2(class ToggleBreadcrumbFromEditorTitle extends Action2 {
145
145
  constructor() {
146
146
  super({
147
147
  id: 'breadcrumbs.toggleFromEditorTitle',
148
- title: ( localize2(9278, 'Toggle Breadcrumbs')),
148
+ title: ( localize2(9412, 'Toggle Breadcrumbs')),
149
149
  menu: [{
150
150
  id: MenuId.NotebookEditorLayoutConfigure,
151
151
  group: 'notebookLayoutDetails',
@@ -162,7 +162,7 @@ registerAction2(class SaveMimeTypeDisplayOrder extends Action2 {
162
162
  constructor() {
163
163
  super({
164
164
  id: 'notebook.saveMimeTypeOrder',
165
- title: ( localize2(9279, "Save Mimetype Display Order")),
165
+ title: ( localize2(9413, "Save Mimetype Display Order")),
166
166
  f1: true,
167
167
  category: NOTEBOOK_ACTIONS_CATEGORY,
168
168
  precondition: NOTEBOOK_IS_ACTIVE_EDITOR,
@@ -172,10 +172,10 @@ registerAction2(class SaveMimeTypeDisplayOrder extends Action2 {
172
172
  const service = accessor.get(INotebookService);
173
173
  const disposables = ( new DisposableStore());
174
174
  const qp = disposables.add(accessor.get(IQuickInputService).createQuickPick());
175
- qp.placeholder = ( localize(9280, 'Settings file to save in'));
175
+ qp.placeholder = ( localize(9414, 'Settings file to save in'));
176
176
  qp.items = [
177
- { target: ConfigurationTarget.USER, label: ( localize(9281, 'User Settings')) },
178
- { target: ConfigurationTarget.WORKSPACE, label: ( localize(9282, 'Workspace Settings')) },
177
+ { target: ConfigurationTarget.USER, label: ( localize(9415, 'User Settings')) },
178
+ { target: ConfigurationTarget.WORKSPACE, label: ( localize(9416, 'Workspace Settings')) },
179
179
  ];
180
180
  disposables.add(qp.onDidAccept(() => {
181
181
  const target = qp.selectedItems[0]?.target;
@@ -192,7 +192,7 @@ registerAction2(class NotebookWebviewResetAction extends Action2 {
192
192
  constructor() {
193
193
  super({
194
194
  id: 'workbench.notebook.layout.webview.reset',
195
- title: ( localize2(9283, "Reset Notebook Webview")),
195
+ title: ( localize2(9417, "Reset Notebook Webview")),
196
196
  f1: false,
197
197
  category: NOTEBOOK_ACTIONS_CATEGORY
198
198
  });
@@ -223,14 +223,14 @@ registerAction2(class ToggleNotebookStickyScroll extends Action2 {
223
223
  super({
224
224
  id: 'notebook.action.toggleNotebookStickyScroll',
225
225
  title: {
226
- ...( localize2(9284, "Toggle Notebook Sticky Scroll")),
227
- mnemonicTitle: ( localize(9285, "&&Toggle Notebook Sticky Scroll")),
226
+ ...( localize2(9418, "Toggle Notebook Sticky Scroll")),
227
+ mnemonicTitle: ( localize(9419, "&&Toggle Notebook Sticky Scroll")),
228
228
  },
229
229
  category: Categories.View,
230
230
  toggled: {
231
231
  condition: ( ContextKeyExpr.equals('config.notebook.stickyScroll.enabled', true)),
232
- title: ( localize(9286, "Toggle Notebook Sticky Scroll")),
233
- mnemonicTitle: ( localize(9285, "&&Toggle Notebook Sticky Scroll")),
232
+ title: ( localize(9420, "Toggle Notebook Sticky Scroll")),
233
+ mnemonicTitle: ( localize(9419, "&&Toggle Notebook Sticky Scroll")),
234
234
  },
235
235
  menu: [
236
236
  { id: MenuId.CommandPalette },
@@ -11,7 +11,7 @@ import { ILogService } from '@codingame/monaco-vscode-api/vscode/vs/platform/log
11
11
  import { IQuickInputService } from '@codingame/monaco-vscode-api/vscode/vs/platform/quickinput/common/quickInput.service';
12
12
  import { INotebookEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service';
13
13
  import { NotebookSetting } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
14
- import { isNotebookEditorInput } from '@codingame/monaco-vscode-9d2c06d1-1f89-51a5-9964-aa01fe50c198-common/vscode/vs/workbench/contrib/notebook/common/notebookEditorInput';
14
+ import { isNotebookEditorInput } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookEditorInput';
15
15
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
16
16
 
17
17
  class NotebookIndentUsingTabs extends Action2 {
@@ -19,7 +19,7 @@ class NotebookIndentUsingTabs extends Action2 {
19
19
  constructor() {
20
20
  super({
21
21
  id: NotebookIndentUsingTabs.ID,
22
- title: ( localize(9287, "Indent Using Tabs")),
22
+ title: ( localize(9421, "Indent Using Tabs")),
23
23
  precondition: undefined,
24
24
  });
25
25
  }
@@ -32,7 +32,7 @@ class NotebookIndentUsingSpaces extends Action2 {
32
32
  constructor() {
33
33
  super({
34
34
  id: NotebookIndentUsingSpaces.ID,
35
- title: ( localize(9288, "Indent Using Spaces")),
35
+ title: ( localize(9422, "Indent Using Spaces")),
36
36
  precondition: undefined,
37
37
  });
38
38
  }
@@ -45,7 +45,7 @@ class NotebookChangeTabDisplaySize extends Action2 {
45
45
  constructor() {
46
46
  super({
47
47
  id: NotebookChangeTabDisplaySize.ID,
48
- title: ( localize(9289, "Change Tab Display Size")),
48
+ title: ( localize(9423, "Change Tab Display Size")),
49
49
  precondition: undefined,
50
50
  });
51
51
  }
@@ -58,7 +58,7 @@ class NotebookIndentationToSpacesAction extends Action2 {
58
58
  constructor() {
59
59
  super({
60
60
  id: NotebookIndentationToSpacesAction.ID,
61
- title: ( localize(9290, "Convert Indentation to Spaces")),
61
+ title: ( localize(9424, "Convert Indentation to Spaces")),
62
62
  precondition: undefined,
63
63
  });
64
64
  }
@@ -71,7 +71,7 @@ class NotebookIndentationToTabsAction extends Action2 {
71
71
  constructor() {
72
72
  super({
73
73
  id: NotebookIndentationToTabsAction.ID,
74
- title: ( localize(9291, "Convert Indentation to Tabs")),
74
+ title: ( localize(9425, "Convert Indentation to Tabs")),
75
75
  precondition: undefined,
76
76
  });
77
77
  }
@@ -103,7 +103,7 @@ function changeNotebookIndentation(accessor, insertSpaces, displaySizeOnly) {
103
103
  delete initialConfig['editor.tabSize'];
104
104
  delete initialConfig['editor.insertSpaces'];
105
105
  setTimeout(() => {
106
- quickInputService.pick(picks, { placeHolder: ( localize(9292, "Select Tab Size for Current File")) }).then(pick => {
106
+ quickInputService.pick(picks, { placeHolder: ( localize(9426, "Select Tab Size for Current File")) }).then(pick => {
107
107
  if (pick) {
108
108
  const pickedVal = parseInt(pick.label, 10);
109
109
  if (displaySizeOnly) {
@@ -153,7 +153,7 @@ function convertNotebookIndentation(accessor, tabsToSpaces) {
153
153
  return;
154
154
  }
155
155
  const edits = getIndentationEditOperations(textEditorModel, modelOpts.tabSize, tabsToSpaces);
156
- bulkEditService.apply(edits, { label: ( localize(9293, "Convert Indentation")), code: 'undoredo.convertIndentation', });
156
+ bulkEditService.apply(edits, { label: ( localize(9427, "Convert Indentation")), code: 'undoredo.convertIndentation', });
157
157
  }))).then(() => {
158
158
  const initialConfig = configurationService.getValue(NotebookSetting.cellEditorOptionsCustomizations);
159
159
  const initialIndentSize = initialConfig['editor.indentSize'];
@@ -1,6 +1,6 @@
1
1
  import { Action2 } from "@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions";
2
2
  import { ServicesAccessor } from "@codingame/monaco-vscode-api/vscode/vs/platform/instantiation/common/instantiation";
3
- import { ICellViewModel, INotebookEditor } from "@codingame/monaco-vscode-9d2c06d1-1f89-51a5-9964-aa01fe50c198-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser";
3
+ import { ICellViewModel, INotebookEditor } from "@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser";
4
4
  import { OutlineEntry } from "../viewModel/OutlineEntry.js";
5
5
  export type NotebookOutlineEntryArgs = {
6
6
  notebookEditor: INotebookEditor;
@@ -3,12 +3,12 @@ import { localize, localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls'
3
3
  import { Action2, MenuId, registerAction2 } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
4
4
  import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
5
5
  import { NotebookOutlineContext } from '../contrib/outline/notebookOutline.js';
6
- import { FoldingController } from '@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/browser/controller/foldingController';
7
- import { CellEditState, CellFoldingState } from '@codingame/monaco-vscode-9d2c06d1-1f89-51a5-9964-aa01fe50c198-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
8
- import { executeIcon } from '@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/browser/notebookIcons';
6
+ import { FoldingController } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/controller/foldingController';
7
+ import { CellEditState, CellFoldingState } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
8
+ import { executeIcon } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/notebookIcons';
9
9
  import { CellKind } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
10
- import { OutlineTarget } from '@codingame/monaco-vscode-1f37b5fb-f500-54d2-b98a-d12d100cafca-common/vscode/vs/workbench/services/outline/browser/outline';
11
- import { CELL_TITLE_CELL_GROUP_ID, CellToolbarOrder } from '@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
10
+ import { OutlineTarget } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/outline/browser/outline';
11
+ import { CELL_TITLE_CELL_GROUP_ID, CellToolbarOrder } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
12
12
  import { executeSectionCondition } from './executeActions.js';
13
13
 
14
14
  class NotebookRunSingleCellInSection extends Action2 {
@@ -16,10 +16,10 @@ class NotebookRunSingleCellInSection extends Action2 {
16
16
  super({
17
17
  id: 'notebook.section.runSingleCell',
18
18
  title: {
19
- ...( localize2(9294, "Run Cell")),
20
- mnemonicTitle: ( localize(9295, "&&Run Cell")),
19
+ ...( localize2(9428, "Run Cell")),
20
+ mnemonicTitle: ( localize(9429, "&&Run Cell")),
21
21
  },
22
- shortTitle: ( localize(9294, "Run Cell")),
22
+ shortTitle: ( localize(9428, "Run Cell")),
23
23
  icon: executeIcon,
24
24
  menu: [
25
25
  {
@@ -43,10 +43,10 @@ class NotebookRunCellsInSection extends Action2 {
43
43
  super({
44
44
  id: 'notebook.section.runCells',
45
45
  title: {
46
- ...( localize2(9296, "Run Cells In Section")),
47
- mnemonicTitle: ( localize(9297, "&&Run Cells In Section")),
46
+ ...( localize2(9430, "Run Cells In Section")),
47
+ mnemonicTitle: ( localize(9431, "&&Run Cells In Section")),
48
48
  },
49
- shortTitle: ( localize(9296, "Run Cells In Section")),
49
+ shortTitle: ( localize(9430, "Run Cells In Section")),
50
50
  icon: executeIcon,
51
51
  menu: [
52
52
  {
@@ -105,10 +105,10 @@ class NotebookFoldSection extends Action2 {
105
105
  super({
106
106
  id: 'notebook.section.foldSection',
107
107
  title: {
108
- ...( localize2(9298, "Fold Section")),
109
- mnemonicTitle: ( localize(9299, "&&Fold Section")),
108
+ ...( localize2(9432, "Fold Section")),
109
+ mnemonicTitle: ( localize(9433, "&&Fold Section")),
110
110
  },
111
- shortTitle: ( localize(9298, "Fold Section")),
111
+ shortTitle: ( localize(9432, "Fold Section")),
112
112
  menu: [
113
113
  {
114
114
  id: MenuId.NotebookOutlineActionMenu,
@@ -138,10 +138,10 @@ class NotebookExpandSection extends Action2 {
138
138
  super({
139
139
  id: 'notebook.section.expandSection',
140
140
  title: {
141
- ...( localize2(9300, "Expand Section")),
142
- mnemonicTitle: ( localize(9301, "&&Expand Section")),
141
+ ...( localize2(9434, "Expand Section")),
142
+ mnemonicTitle: ( localize(9435, "&&Expand Section")),
143
143
  },
144
- shortTitle: ( localize(9300, "Expand Section")),
144
+ shortTitle: ( localize(9434, "Expand Section")),
145
145
  menu: [
146
146
  {
147
147
  id: MenuId.NotebookOutlineActionMenu,
@@ -3,17 +3,17 @@ import { localize2 } from '@codingame/monaco-vscode-api/vscode/vs/nls';
3
3
  import { registerAction2, MenuId } from '@codingame/monaco-vscode-api/vscode/vs/platform/actions/common/actions';
4
4
  import { ContextKeyExpr } from '@codingame/monaco-vscode-api/vscode/vs/platform/contextkey/common/contextkey';
5
5
  import { IViewsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/views/common/viewsService.service';
6
- import { KERNEL_HAS_VARIABLE_PROVIDER } from '@codingame/monaco-vscode-eda30bac-0984-5b42-9362-c68996b85232-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
6
+ import { KERNEL_HAS_VARIABLE_PROVIDER } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
7
7
  import { NOTEBOOK_VARIABLE_VIEW_ENABLED } from '../contrib/notebookVariables/notebookVariableContextKeys.js';
8
- import { variablesViewIcon } from '@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/browser/notebookIcons';
9
- import { NotebookAction } from '@codingame/monaco-vscode-e28ac690-06d5-5ee9-92d1-02df70296354-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
8
+ import { variablesViewIcon } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/notebookIcons';
9
+ import { NotebookAction } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
10
10
 
11
11
  const OPEN_VARIABLES_VIEW_COMMAND_ID = 'notebook.openVariablesView';
12
12
  registerAction2(class OpenVariablesViewAction extends NotebookAction {
13
13
  constructor() {
14
14
  super({
15
15
  id: OPEN_VARIABLES_VIEW_COMMAND_ID,
16
- title: ( localize2(9302, "Variables")),
16
+ title: ( localize2(9436, "Variables")),
17
17
  icon: variablesViewIcon,
18
18
  menu: [
19
19
  {