@codingame/monaco-vscode-notebook-service-override 11.0.0 → 11.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 (40) hide show
  1. package/package.json +8 -8
  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/multicursor/notebookMulticursor.js +4 -4
  14. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/navigation/arrow.js +13 -13
  15. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables.js +1 -1
  16. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.js +2 -2
  17. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.js +9 -9
  18. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile.js +1 -1
  19. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.js +12 -12
  20. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.js +3 -3
  21. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +27 -27
  22. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution.js +1 -1
  23. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/editActions.js +24 -24
  24. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/executeActions.js +22 -22
  25. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
  26. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.js +17 -17
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions.js +7 -7
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.js +12 -12
  29. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/variablesActions.js +1 -1
  30. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffActions.js +19 -19
  31. package/vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js +60 -60
  32. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp.js +10 -10
  33. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookExtensionPoint.js +33 -33
  34. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js +1 -1
  35. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js +1 -1
  36. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js +3 -3
  37. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
  38. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +1 -1
  39. package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +12 -12
  40. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +1 -1
@@ -31,7 +31,7 @@ registerAction2(class extends Action2 {
31
31
  super({
32
32
  id: 'notebook.cell.nullAction',
33
33
  title: ( localize(
34
- 8099,
34
+ 8135,
35
35
  "Keypresses that should be handled by the focused element in the cell output."
36
36
  )),
37
37
  keybinding: [{
@@ -54,7 +54,7 @@ registerAction2(class FocusNextCellAction extends NotebookCellAction {
54
54
  constructor() {
55
55
  super({
56
56
  id: NOTEBOOK_FOCUS_NEXT_EDITOR,
57
- title: ( localize(8100, 'Focus Next Cell Editor')),
57
+ title: ( localize(8136, 'Focus Next Cell Editor')),
58
58
  keybinding: [
59
59
  {
60
60
  when: ( (ContextKeyExpr.and(
@@ -129,7 +129,7 @@ registerAction2(class FocusPreviousCellAction extends NotebookCellAction {
129
129
  constructor() {
130
130
  super({
131
131
  id: NOTEBOOK_FOCUS_PREVIOUS_EDITOR,
132
- title: ( localize(8101, 'Focus Previous Cell Editor')),
132
+ title: ( localize(8137, 'Focus Previous Cell Editor')),
133
133
  keybinding: [
134
134
  {
135
135
  when: ( (ContextKeyExpr.and(
@@ -195,7 +195,7 @@ registerAction2(class extends NotebookAction {
195
195
  constructor() {
196
196
  super({
197
197
  id: NOTEBOOK_FOCUS_TOP,
198
- title: ( localize(8102, 'Focus First Cell')),
198
+ title: ( localize(8138, 'Focus First Cell')),
199
199
  keybinding: [
200
200
  {
201
201
  when: ( (ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ContextKeyExpr.not(InputFocusedContextKey)))),
@@ -227,7 +227,7 @@ registerAction2(class extends NotebookAction {
227
227
  constructor() {
228
228
  super({
229
229
  id: NOTEBOOK_FOCUS_BOTTOM,
230
- title: ( localize(8103, 'Focus Last Cell')),
230
+ title: ( localize(8139, 'Focus Last Cell')),
231
231
  keybinding: [
232
232
  {
233
233
  when: ( (ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ContextKeyExpr.not(InputFocusedContextKey)))),
@@ -264,7 +264,7 @@ registerAction2(class extends NotebookCellAction {
264
264
  constructor() {
265
265
  super({
266
266
  id: FOCUS_IN_OUTPUT_COMMAND_ID,
267
- title: ( localize(8104, 'Focus In Active Cell Output')),
267
+ title: ( localize(8140, 'Focus In Active Cell Output')),
268
268
  keybinding: [{
269
269
  primary: 2048 | 1024 | 18 ,
270
270
  mac: { primary: 256 | 2048 | 18 , },
@@ -288,7 +288,7 @@ registerAction2(class extends NotebookCellAction {
288
288
  constructor() {
289
289
  super({
290
290
  id: FOCUS_OUT_OUTPUT_COMMAND_ID,
291
- title: ( localize(8105, 'Focus Out Active Cell Output')),
291
+ title: ( localize(8141, 'Focus Out Active Cell Output')),
292
292
  keybinding: {
293
293
  primary: 2048 | 1024 | 16 ,
294
294
  mac: { primary: 256 | 2048 | 16 , },
@@ -307,7 +307,7 @@ registerAction2(class CenterActiveCellAction extends NotebookCellAction {
307
307
  constructor() {
308
308
  super({
309
309
  id: CENTER_ACTIVE_CELL,
310
- title: ( localize(8106, "Center Active Cell")),
310
+ title: ( localize(8142, "Center Active Cell")),
311
311
  keybinding: {
312
312
  when: NOTEBOOK_EDITOR_FOCUSED,
313
313
  primary: 2048 | 42 ,
@@ -326,7 +326,7 @@ registerAction2(class extends NotebookCellAction {
326
326
  constructor() {
327
327
  super({
328
328
  id: NOTEBOOK_CURSOR_PAGEUP_COMMAND_ID,
329
- title: ( localize(8107, "Cell Cursor Page Up")),
329
+ title: ( localize(8143, "Cell Cursor Page Up")),
330
330
  keybinding: [
331
331
  {
332
332
  when: ( (ContextKeyExpr.and(
@@ -348,7 +348,7 @@ registerAction2(class extends NotebookCellAction {
348
348
  constructor() {
349
349
  super({
350
350
  id: NOTEBOOK_CURSOR_PAGEUP_SELECT_COMMAND_ID,
351
- title: ( localize(8108, "Cell Cursor Page Up Select")),
351
+ title: ( localize(8144, "Cell Cursor Page Up Select")),
352
352
  keybinding: [
353
353
  {
354
354
  when: ( (ContextKeyExpr.and(
@@ -371,7 +371,7 @@ registerAction2(class extends NotebookCellAction {
371
371
  constructor() {
372
372
  super({
373
373
  id: NOTEBOOK_CURSOR_PAGEDOWN_COMMAND_ID,
374
- title: ( localize(8109, "Cell Cursor Page Down")),
374
+ title: ( localize(8145, "Cell Cursor Page Down")),
375
375
  keybinding: [
376
376
  {
377
377
  when: ( (ContextKeyExpr.and(
@@ -393,7 +393,7 @@ registerAction2(class extends NotebookCellAction {
393
393
  constructor() {
394
394
  super({
395
395
  id: NOTEBOOK_CURSOR_PAGEDOWN_SELECT_COMMAND_ID,
396
- title: ( localize(8110, "Cell Cursor Page Down Select")),
396
+ title: ( localize(8146, "Cell Cursor Page Down Select")),
397
397
  keybinding: [
398
398
  {
399
399
  when: ( (ContextKeyExpr.and(
@@ -427,7 +427,7 @@ function getPageSize(context) {
427
427
  type: 'boolean',
428
428
  default: true,
429
429
  markdownDescription: ( localize(
430
- 8111,
430
+ 8147,
431
431
  "When enabled cursor can navigate to the next/previous cell when the current cursor in the cell editor is at the first/last line."
432
432
  ))
433
433
  }
@@ -62,7 +62,7 @@ let NotebookVariables = class NotebookVariables extends Disposable {
62
62
  if (debugViewContainer) {
63
63
  const viewsRegistry = ( (Registry.as(Extensions.ViewsRegistry)));
64
64
  const viewDescriptor = {
65
- id: 'workbench.notebook.variables', name: ( localize2(8187, "Notebook Variables")),
65
+ id: 'workbench.notebook.variables', name: ( localize2(8223, "Notebook Variables")),
66
66
  containerIcon: variablesViewIcon, ctorDescriptor: ( (new SyncDescriptor(NotebookVariablesView))),
67
67
  order: 50, weight: 5, canToggleVisibility: true, canMoveView: true, collapsed: false, when: NOTEBOOK_VARIABLE_VIEW_ENABLED
68
68
  };
@@ -31,8 +31,8 @@ var NotebookVariablesView_1;
31
31
  let NotebookVariablesView = class NotebookVariablesView extends ViewPane {
32
32
  static { NotebookVariablesView_1 = this; }
33
33
  static { this.ID = 'notebookVariablesView'; }
34
- static { this.NOTEBOOK_TITLE = ( localize2(10983, "Notebook Variables")); }
35
- static { this.REPL_TITLE = ( localize2(10984, "REPL Variables")); }
34
+ static { this.NOTEBOOK_TITLE = ( localize2(10995, "Notebook Variables")); }
35
+ static { this.REPL_TITLE = ( localize2(10996, "REPL Variables")); }
36
36
  constructor(options, editorService, notebookKernelService, notebookExecutionStateService, keybindingService, contextMenuService, contextKeyService, configurationService, instantiationService, viewDescriptorService, openerService, quickInputService, commandService, themeService, telemetryService, hoverService, menuService) {
37
37
  super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, telemetryService, hoverService);
38
38
  this.editorService = editorService;
@@ -716,33 +716,33 @@ const NotebookOutlineContext = {
716
716
  type: 'boolean',
717
717
  default: true,
718
718
  markdownDescription: ( localize(
719
- 8112,
719
+ 8148,
720
720
  "When enabled, notebook outline will show only markdown cells containing a header."
721
721
  ))
722
722
  },
723
723
  [NotebookSetting.outlineShowCodeCells]: {
724
724
  type: 'boolean',
725
725
  default: false,
726
- markdownDescription: ( localize(8113, "When enabled, notebook outline shows code cells."))
726
+ markdownDescription: ( localize(8149, "When enabled, notebook outline shows code cells."))
727
727
  },
728
728
  [NotebookSetting.outlineShowCodeCellSymbols]: {
729
729
  type: 'boolean',
730
730
  default: true,
731
731
  markdownDescription: ( localize(
732
- 8114,
732
+ 8150,
733
733
  "When enabled, notebook outline shows code cell symbols. Relies on `notebook.outline.showCodeCells` being enabled."
734
734
  ))
735
735
  },
736
736
  [NotebookSetting.breadcrumbsShowCodeCells]: {
737
737
  type: 'boolean',
738
738
  default: true,
739
- markdownDescription: ( localize(8115, "When enabled, notebook breadcrumbs contain code cells."))
739
+ markdownDescription: ( localize(8151, "When enabled, notebook breadcrumbs contain code cells."))
740
740
  },
741
741
  [NotebookSetting.gotoSymbolsAllSymbols]: {
742
742
  type: 'boolean',
743
743
  default: true,
744
744
  markdownDescription: ( localize(
745
- 8116,
745
+ 8152,
746
746
  "When enabled, the Go to Symbol Quick Pick will display full code symbols from the notebook, as well as Markdown headers."
747
747
  ))
748
748
  },
@@ -750,7 +750,7 @@ const NotebookOutlineContext = {
750
750
  });
751
751
  MenuRegistry.appendMenuItem(MenuId.ViewTitle, {
752
752
  submenu: MenuId.NotebookOutlineFilter,
753
- title: ( localize(8117, "Filter Entries")),
753
+ title: ( localize(8153, "Filter Entries")),
754
754
  icon: Codicon.filter,
755
755
  group: 'navigation',
756
756
  order: -1,
@@ -763,7 +763,7 @@ registerAction2(class ToggleShowMarkdownHeadersOnly extends Action2 {
763
763
  constructor() {
764
764
  super({
765
765
  id: 'notebook.outline.toggleShowMarkdownHeadersOnly',
766
- title: ( localize(8118, "Markdown Headers Only")),
766
+ title: ( localize(8154, "Markdown Headers Only")),
767
767
  f1: false,
768
768
  toggled: {
769
769
  condition: ( (ContextKeyExpr.equals('config.notebook.outline.showMarkdownHeadersOnly', true)))
@@ -784,7 +784,7 @@ registerAction2(class ToggleCodeCellEntries extends Action2 {
784
784
  constructor() {
785
785
  super({
786
786
  id: 'notebook.outline.toggleCodeCells',
787
- title: ( localize(8119, "Code Cells")),
787
+ title: ( localize(8155, "Code Cells")),
788
788
  f1: false,
789
789
  toggled: {
790
790
  condition: ( (ContextKeyExpr.equals('config.notebook.outline.showCodeCells', true)))
@@ -806,7 +806,7 @@ registerAction2(class ToggleCodeCellSymbolEntries extends Action2 {
806
806
  constructor() {
807
807
  super({
808
808
  id: 'notebook.outline.toggleCodeCellSymbols',
809
- title: ( localize(8120, "Code Cell Symbols")),
809
+ title: ( localize(8156, "Code Cell Symbols")),
810
810
  f1: false,
811
811
  toggled: {
812
812
  condition: ( (ContextKeyExpr.equals('config.notebook.outline.showCodeCellSymbols', true)))
@@ -52,7 +52,7 @@ registerAction2(class extends Action2 {
52
52
  constructor() {
53
53
  super({
54
54
  id: 'notebook.setProfile',
55
- title: ( localize(8121, "Set Profile"))
55
+ title: ( localize(8157, "Set Profile"))
56
56
  });
57
57
  }
58
58
  async run(accessor, args) {
@@ -60,7 +60,7 @@ let FormatOnSaveParticipant = class FormatOnSaveParticipant {
60
60
  if (!enabled) {
61
61
  return undefined;
62
62
  }
63
- progress.report({ message: ( localize(8087, "Formatting")) });
63
+ progress.report({ message: ( localize(8123, "Formatting")) });
64
64
  const notebook = workingCopy.model.notebookModel;
65
65
  const formatApplied = await this.instantiationService.invokeFunction(CodeActionParticipantUtils.checkAndRunFormatCodeAction, notebook, progress, token);
66
66
  const disposable = ( (new DisposableStore()));
@@ -80,7 +80,7 @@ let FormatOnSaveParticipant = class FormatOnSaveParticipant {
80
80
  }
81
81
  return [];
82
82
  }))));
83
- await this.bulkEditService.apply( allCellEdits.flat(), { label: ( localize(8088, "Format Notebook")), code: 'undoredo.formatNotebook', });
83
+ await this.bulkEditService.apply( allCellEdits.flat(), { label: ( localize(8124, "Format Notebook")), code: 'undoredo.formatNotebook', });
84
84
  }
85
85
  }
86
86
  finally {
@@ -153,7 +153,7 @@ let TrimWhitespaceParticipant = class TrimWhitespaceParticipant extends Notebook
153
153
  );
154
154
  }))));
155
155
  const filteredEdits = allCellEdits.flat().filter(edit => edit !== undefined);
156
- await this.bulkEditService.apply(filteredEdits, { label: ( localize(8089, "Notebook Trim Trailing Whitespace")), code: 'undoredo.notebookTrimTrailingWhitespace' });
156
+ await this.bulkEditService.apply(filteredEdits, { label: ( localize(8125, "Notebook Trim Trailing Whitespace")), code: 'undoredo.notebookTrimTrailingWhitespace' });
157
157
  }
158
158
  finally {
159
159
  progress.report({ increment: 100 });
@@ -232,7 +232,7 @@ let TrimFinalNewLinesParticipant = class TrimFinalNewLinesParticipant extends No
232
232
  );
233
233
  }))));
234
234
  const filteredEdits = allCellEdits.flat().filter(edit => edit !== undefined);
235
- await this.bulkEditService.apply(filteredEdits, { label: ( localize(8090, "Trim Final New Lines")), code: 'undoredo.trimFinalNewLines' });
235
+ await this.bulkEditService.apply(filteredEdits, { label: ( localize(8126, "Trim Final New Lines")), code: 'undoredo.trimFinalNewLines' });
236
236
  }
237
237
  finally {
238
238
  progress.report({ increment: 100 });
@@ -288,7 +288,7 @@ let InsertFinalNewLineParticipant = class InsertFinalNewLineParticipant extends
288
288
  );
289
289
  }))));
290
290
  const filteredEdits = allCellEdits.filter(edit => edit !== undefined);
291
- await this.bulkEditService.apply(filteredEdits, { label: ( localize(8091, "Insert Final New Line")), code: 'undoredo.insertFinalNewLine' });
291
+ await this.bulkEditService.apply(filteredEdits, { label: ( localize(8127, "Insert Final New Line")), code: 'undoredo.insertFinalNewLine' });
292
292
  if (activeCellEditor && selections) {
293
293
  activeCellEditor.setSelections(selections);
294
294
  }
@@ -344,7 +344,7 @@ let CodeActionOnSaveParticipant = class CodeActionOnSaveParticipant {
344
344
  const notebookCodeActionsOnSave = includedActions.filter(x => CodeActionKind.Notebook.contains(x));
345
345
  if (notebookCodeActionsOnSave.length) {
346
346
  const nbDisposable = ( (new DisposableStore()));
347
- progress.report({ message: ( localize(8092, "Running 'Notebook' code actions")) });
347
+ progress.report({ message: ( localize(8128, "Running 'Notebook' code actions")) });
348
348
  try {
349
349
  const cell = notebookModel.cells[0];
350
350
  const ref = await this.textModelService.createModelReference(cell.uri);
@@ -376,7 +376,7 @@ let CodeActionOnSaveParticipant = class CodeActionOnSaveParticipant {
376
376
  });
377
377
  }
378
378
  const cellDisposable = ( (new DisposableStore()));
379
- progress.report({ message: ( localize(8093, "Running 'Cell' code actions")) });
379
+ progress.report({ message: ( localize(8129, "Running 'Cell' code actions")) });
380
380
  try {
381
381
  await Promise.all(( (notebookModel.cells.map(async (cell) => {
382
382
  const ref = await this.textModelService.createModelReference(cell.uri);
@@ -416,7 +416,7 @@ class CodeActionParticipantUtils {
416
416
  const configurationService = accessor.get(IConfigurationService);
417
417
  const formatDisposable = ( (new DisposableStore()));
418
418
  let formatResult = false;
419
- progress.report({ message: ( localize(8094, "Running 'Format' code actions")) });
419
+ progress.report({ message: ( localize(8130, "Running 'Format' code actions")) });
420
420
  try {
421
421
  const cell = notebookModel.cells[0];
422
422
  const ref = await textModelService.createModelReference(cell.uri);
@@ -445,7 +445,7 @@ class CodeActionParticipantUtils {
445
445
  _report() {
446
446
  progress.report({
447
447
  message: ( localize(
448
- 8095,
448
+ 8131,
449
449
  "Getting code actions from '{0}' ([configure]({1})).",
450
450
  ( ([...this._names].map(name => `'${name}'`))).join(', '),
451
451
  'command:workbench.action.openSettings?%5B%22notebook.codeActionsOnSave%22%5D'
@@ -485,7 +485,7 @@ class CodeActionParticipantUtils {
485
485
  logService.warn('Failed to apply code action on save, applied to multiple resources.');
486
486
  continue;
487
487
  }
488
- progress.report({ message: ( localize(8096, "Applying code action '{0}'.", action.action.title)) });
488
+ progress.report({ message: ( localize(8132, "Applying code action '{0}'.", action.action.title)) });
489
489
  await instantiationService.invokeFunction(applyCodeAction, action, ApplyCodeActionReason.OnSave, {}, token);
490
490
  if (token.isCancellationRequested) {
491
491
  return;
@@ -510,7 +510,7 @@ class CodeActionParticipantUtils {
510
510
  _report() {
511
511
  progress.report({
512
512
  message: ( localize(
513
- 8095,
513
+ 8131,
514
514
  "Getting code actions from '{0}' ([configure]({1})).",
515
515
  ( ([...this._names].map(name => `'${name}'`))).join(', '),
516
516
  'command:workbench.action.openSettings?%5B%22notebook.defaultFormatter%22%5D'
@@ -537,7 +537,7 @@ class CodeActionParticipantUtils {
537
537
  if (!action) {
538
538
  return false;
539
539
  }
540
- progress.report({ message: ( localize(8096, "Applying code action '{0}'.", action.action.title)) });
540
+ progress.report({ message: ( localize(8132, "Applying code action '{0}'.", action.action.title)) });
541
541
  await instantiationService.invokeFunction(applyCodeAction, action, ApplyCodeActionReason.OnSave, {}, token);
542
542
  if (token.isCancellationRequested) {
543
543
  return false;
@@ -93,7 +93,7 @@ registerAction2(class extends Action2 {
93
93
  constructor() {
94
94
  super({
95
95
  id: 'notebook.toggleLayoutTroubleshoot',
96
- title: ( localize2(8160, "Toggle Layout Troubleshoot")),
96
+ title: ( localize2(8176, "Toggle Layout Troubleshoot")),
97
97
  category: Categories.Developer,
98
98
  f1: true
99
99
  });
@@ -112,7 +112,7 @@ registerAction2(class extends Action2 {
112
112
  constructor() {
113
113
  super({
114
114
  id: 'notebook.inspectLayout',
115
- title: ( localize2(8161, "Inspect Notebook Layout")),
115
+ title: ( localize2(8177, "Inspect Notebook Layout")),
116
116
  category: Categories.Developer,
117
117
  f1: true
118
118
  });
@@ -133,7 +133,7 @@ registerAction2(class extends Action2 {
133
133
  constructor() {
134
134
  super({
135
135
  id: 'notebook.clearNotebookEdtitorTypeCache',
136
- title: ( localize2(8162, "Clear Notebook Editor Type Cache")),
136
+ title: ( localize2(8178, "Clear Notebook Editor Type Cache")),
137
137
  category: Categories.Developer,
138
138
  f1: true
139
139
  });
@@ -25,7 +25,7 @@ registerAction2(class extends NotebookAction {
25
25
  constructor() {
26
26
  super({
27
27
  id: 'notebook.cell.chat.accept',
28
- title: ( localize2(10945, "Make Request")),
28
+ title: ( localize2(10957, "Make Request")),
29
29
  icon: Codicon.send,
30
30
  keybinding: {
31
31
  when: ( (ContextKeyExpr.and(
@@ -53,7 +53,7 @@ registerAction2(class extends NotebookCellAction {
53
53
  constructor() {
54
54
  super({
55
55
  id: 'notebook.cell.chat.arrowOutUp',
56
- title: ( localize(10946, 'Cursor Up')),
56
+ title: ( localize(10958, 'Cursor Up')),
57
57
  keybinding: {
58
58
  when: ( (ContextKeyExpr.and(
59
59
  CTX_NOTEBOOK_CELL_CHAT_FOCUSED,
@@ -88,7 +88,7 @@ registerAction2(class extends NotebookAction {
88
88
  constructor() {
89
89
  super({
90
90
  id: 'notebook.cell.chat.arrowOutDown',
91
- title: ( localize(10947, 'Cursor Down')),
91
+ title: ( localize(10959, 'Cursor Down')),
92
92
  keybinding: {
93
93
  when: ( (ContextKeyExpr.and(
94
94
  CTX_NOTEBOOK_CELL_CHAT_FOCUSED,
@@ -111,7 +111,7 @@ registerAction2(class extends NotebookCellAction {
111
111
  constructor() {
112
112
  super({
113
113
  id: 'notebook.cell.focusChatWidget',
114
- title: ( localize(10948, 'Focus Chat Widget')),
114
+ title: ( localize(10960, 'Focus Chat Widget')),
115
115
  keybinding: {
116
116
  when: ( (ContextKeyExpr.and(
117
117
  NOTEBOOK_EDITOR_FOCUSED,
@@ -139,7 +139,7 @@ registerAction2(class extends NotebookCellAction {
139
139
  constructor() {
140
140
  super({
141
141
  id: 'notebook.cell.focusNextChatWidget',
142
- title: ( localize(10949, 'Focus Next Cell Chat Widget')),
142
+ title: ( localize(10961, 'Focus Next Cell Chat Widget')),
143
143
  keybinding: {
144
144
  when: ( (ContextKeyExpr.and(
145
145
  (CONTEXT_ACCESSIBILITY_MODE_ENABLED.negate()),
@@ -173,7 +173,7 @@ registerAction2(class extends NotebookAction {
173
173
  constructor() {
174
174
  super({
175
175
  id: 'notebook.cell.chat.stop',
176
- title: ( localize2(10950, "Stop Request")),
176
+ title: ( localize2(10962, "Stop Request")),
177
177
  icon: Codicon.debugStop,
178
178
  menu: {
179
179
  id: MENU_CELL_CHAT_INPUT,
@@ -192,7 +192,7 @@ registerAction2(class extends NotebookAction {
192
192
  constructor() {
193
193
  super({
194
194
  id: 'notebook.cell.chat.close',
195
- title: ( localize2(10951, "Close Chat")),
195
+ title: ( localize2(10963, "Close Chat")),
196
196
  icon: Codicon.close,
197
197
  menu: {
198
198
  id: MENU_CELL_CHAT_WIDGET,
@@ -210,10 +210,10 @@ registerAction2(class extends NotebookAction {
210
210
  constructor() {
211
211
  super({
212
212
  id: 'notebook.cell.chat.acceptChanges',
213
- title: ( localize2(10952, "Accept Changes")),
214
- shortTitle: ( localize(10953, 'Accept')),
213
+ title: ( localize2(10964, "Accept Changes")),
214
+ shortTitle: ( localize(10965, 'Accept')),
215
215
  icon: Codicon.check,
216
- tooltip: ( localize(10954, 'Accept Changes')),
216
+ tooltip: ( localize(10966, 'Accept Changes')),
217
217
  keybinding: [
218
218
  {
219
219
  when: ( (ContextKeyExpr.and(
@@ -264,7 +264,7 @@ registerAction2(class extends NotebookAction {
264
264
  constructor() {
265
265
  super({
266
266
  id: 'notebook.cell.chat.discard',
267
- title: ( localize(10955, 'Discard')),
267
+ title: ( localize(10967, 'Discard')),
268
268
  icon: Codicon.discard,
269
269
  keybinding: {
270
270
  when: ( (ContextKeyExpr.and(
@@ -310,12 +310,12 @@ registerAction2(class extends NotebookAction {
310
310
  super({
311
311
  id: 'notebook.cell.chat.start',
312
312
  title: {
313
- value: '$(sparkle) ' + ( localize(10956, "Generate")),
313
+ value: '$(sparkle) ' + ( localize(10968, "Generate")),
314
314
  original: '$(sparkle) Generate',
315
315
  },
316
- tooltip: ( localize(10957, "Start Chat to Generate Code")),
316
+ tooltip: ( localize(10969, "Start Chat to Generate Code")),
317
317
  metadata: {
318
- description: ( localize(10957, "Start Chat to Generate Code")),
318
+ description: ( localize(10969, "Start Chat to Generate Code")),
319
319
  args: [
320
320
  {
321
321
  name: 'args',
@@ -413,10 +413,10 @@ registerAction2(class extends NotebookAction {
413
413
  super({
414
414
  id: 'notebook.cell.chat.startAtTop',
415
415
  title: {
416
- value: '$(sparkle) ' + ( localize(10956, "Generate")),
416
+ value: '$(sparkle) ' + ( localize(10968, "Generate")),
417
417
  original: '$(sparkle) Generate',
418
418
  },
419
- tooltip: ( localize(10957, "Start Chat to Generate Code")),
419
+ tooltip: ( localize(10969, "Start Chat to Generate Code")),
420
420
  f1: false,
421
421
  menu: [
422
422
  {
@@ -443,8 +443,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
443
443
  command: {
444
444
  id: 'notebook.cell.chat.start',
445
445
  icon: Codicon.sparkle,
446
- title: ( localize(10958, "Generate")),
447
- tooltip: ( localize(10959, "Start Chat to Generate Code"))
446
+ title: ( localize(10970, "Generate")),
447
+ tooltip: ( localize(10971, "Start Chat to Generate Code"))
448
448
  },
449
449
  order: -10,
450
450
  group: 'navigation/add',
@@ -463,7 +463,7 @@ registerAction2(class extends NotebookAction {
463
463
  constructor() {
464
464
  super({
465
465
  id: 'notebook.cell.chat.focus',
466
- title: ( localize(10960, 'Focus Chat')),
466
+ title: ( localize(10972, 'Focus Chat')),
467
467
  keybinding: [
468
468
  {
469
469
  when: ( (ContextKeyExpr.and(
@@ -495,7 +495,7 @@ registerAction2(class extends NotebookAction {
495
495
  constructor() {
496
496
  super({
497
497
  id: 'notebook.cell.chat.focusNextCell',
498
- title: ( localize(10961, 'Focus Next Cell')),
498
+ title: ( localize(10973, 'Focus Next Cell')),
499
499
  keybinding: [
500
500
  {
501
501
  when: ( (ContextKeyExpr.and(CTX_NOTEBOOK_CELL_CHAT_FOCUSED, CTX_INLINE_CHAT_FOCUSED))),
@@ -514,7 +514,7 @@ registerAction2(class extends NotebookAction {
514
514
  constructor() {
515
515
  super({
516
516
  id: 'notebook.cell.chat.focusPreviousCell',
517
- title: ( localize(10962, 'Focus Previous Cell')),
517
+ title: ( localize(10974, 'Focus Previous Cell')),
518
518
  keybinding: [
519
519
  {
520
520
  when: ( (ContextKeyExpr.and(CTX_NOTEBOOK_CELL_CHAT_FOCUSED, CTX_INLINE_CHAT_FOCUSED))),
@@ -533,7 +533,7 @@ registerAction2(class extends NotebookAction {
533
533
  constructor() {
534
534
  super({
535
535
  id: 'notebook.cell.chat.previousFromHistory',
536
- title: ( localize2(10963, "Previous From History")),
536
+ title: ( localize2(10975, "Previous From History")),
537
537
  precondition: ( (ContextKeyExpr.and(CTX_NOTEBOOK_CELL_CHAT_FOCUSED, CTX_INLINE_CHAT_FOCUSED))),
538
538
  keybinding: {
539
539
  when: ( (ContextKeyExpr.and(CTX_NOTEBOOK_CELL_CHAT_FOCUSED, CTX_INLINE_CHAT_FOCUSED))),
@@ -551,7 +551,7 @@ registerAction2(class extends NotebookAction {
551
551
  constructor() {
552
552
  super({
553
553
  id: 'notebook.cell.chat.nextFromHistory',
554
- title: ( localize2(10964, "Next From History")),
554
+ title: ( localize2(10976, "Next From History")),
555
555
  precondition: ( (ContextKeyExpr.and(CTX_NOTEBOOK_CELL_CHAT_FOCUSED, CTX_INLINE_CHAT_FOCUSED))),
556
556
  keybinding: {
557
557
  when: ( (ContextKeyExpr.and(CTX_NOTEBOOK_CELL_CHAT_FOCUSED, CTX_INLINE_CHAT_FOCUSED))),
@@ -569,7 +569,7 @@ registerAction2(class extends NotebookCellAction {
569
569
  constructor() {
570
570
  super({
571
571
  id: 'notebook.cell.chat.restore',
572
- title: ( localize2(10965, "Generate")),
572
+ title: ( localize2(10977, "Generate")),
573
573
  icon: Codicon.sparkle,
574
574
  menu: {
575
575
  id: MenuId.NotebookCellTitle,
@@ -605,9 +605,9 @@ class AcceptChangesAndRun extends AbstractInlineChatAction {
605
605
  constructor() {
606
606
  super({
607
607
  id: 'notebook.inlineChat.acceptChangesAndRun',
608
- title: ( localize2(10966, "Accept and Run")),
609
- shortTitle: ( localize(10967, 'Accept & Run')),
610
- tooltip: ( localize(10968, 'Accept the changes and run the cell')),
608
+ title: ( localize2(10978, "Accept and Run")),
609
+ shortTitle: ( localize(10979, 'Accept & Run')),
610
+ tooltip: ( localize(10980, 'Accept the changes and run the cell')),
611
611
  icon: Codicon.check,
612
612
  f1: true,
613
613
  precondition: ( (ContextKeyExpr.and(
@@ -64,7 +64,7 @@ let NotebookChatContribution = class NotebookChatContribution extends Disposable
64
64
  result.suggestions.push({
65
65
  label: `${chatVariableLeader}${NotebookKernelVariableKey}`,
66
66
  insertText: `${chatVariableLeader}${NotebookKernelVariableKey}:`,
67
- detail: ( localize(8073, "Pick a variable from the kernel")),
67
+ detail: ( localize(8109, "Pick a variable from the kernel")),
68
68
  range,
69
69
  kind: 18 ,
70
70
  command: { id: SelectAndInsertKernelVariableAction.ID, title: SelectAndInsertKernelVariableAction.ID, arguments: [{ widget, range: afterRange }] },