@codingame/monaco-vscode-notebook-service-override 15.0.2 → 16.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 (84) hide show
  1. package/index.js +5 -11
  2. package/package.json +27 -26
  3. package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.css +6 -0
  4. package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.js +10 -10
  5. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.js +22 -22
  6. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticEditorContrib.d.ts +1 -0
  7. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticEditorContrib.js +7 -3
  8. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions.js +5 -5
  9. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib.js +7 -3
  10. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders.js +3 -3
  11. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.js +7 -7
  12. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/debug/notebookDebugDecorations.js +12 -3
  13. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar.js +10 -10
  14. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/media/notebookFind.css +17 -0
  15. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFind.js +4 -4
  16. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.js +5 -5
  17. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted.js +2 -2
  18. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions.js +1 -1
  19. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor.js +6 -6
  20. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/navigation/arrow.js +14 -14
  21. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables.js +1 -1
  22. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables.js +1 -1
  23. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource.js +1 -1
  24. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree.js +2 -2
  25. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.js +2 -2
  26. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.js +10 -10
  27. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile.js +1 -1
  28. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.js +13 -13
  29. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.js +3 -3
  30. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +28 -28
  31. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution.js +54 -31
  32. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/editActions.js +25 -25
  33. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/executeActions.js +26 -26
  34. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +25 -25
  35. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.js +18 -18
  36. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions.js +7 -7
  37. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.js +12 -12
  38. package/vscode/src/vs/workbench/contrib/notebook/browser/controller/variablesActions.js +2 -2
  39. package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffActions.js +22 -22
  40. package/vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js +72 -74
  41. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp.js +11 -11
  42. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibleView.js +1 -1
  43. package/vscode/src/vs/workbench/contrib/notebook/browser/notebookExtensionPoint.js +33 -33
  44. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorServiceImpl.js +2 -2
  45. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js +1 -1
  46. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js +1 -1
  47. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js +3 -3
  48. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
  49. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +54 -12
  50. package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookWorkerServiceImpl.js +4 -3
  51. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookTextModel.d.ts +2 -0
  52. package/vscode/src/vs/workbench/contrib/notebook/common/model/notebookTextModel.js +42 -1
  53. package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorModelResolverServiceImpl.js +10 -2
  54. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookCellMatching.d.ts +15 -0
  55. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookCellMatching.js +173 -0
  56. package/vscode/src/vs/workbench/contrib/notebook/common/services/{notebookSimpleWorker.d.ts → notebookWebWorker.d.ts} +24 -6
  57. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookWebWorker.js +366 -0
  58. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookWebWorkerMain.js +5 -0
  59. package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +12 -12
  60. package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +1 -1
  61. package/vscode/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.d.ts +2 -2
  62. package/vscode/src/vs/workbench/services/workingCopy/common/untitledFileWorkingCopy.js +1 -1
  63. package/worker.js +1 -1
  64. package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.css.js +0 -6
  65. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/contribution.js +0 -10
  66. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookCellDecorators.d.ts +0 -24
  67. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookCellDecorators.js +0 -332
  68. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatActionsOverlay.d.ts +0 -23
  69. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatActionsOverlay.js +0 -299
  70. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditController.d.ts +0 -9
  71. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditController.js +0 -179
  72. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookOriginalCellModelFactory.d.ts +0 -21
  73. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookOriginalCellModelFactory.js +0 -42
  74. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookOriginalModelRefFactory.d.ts +0 -25
  75. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookOriginalModelRefFactory.js +0 -77
  76. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.d.ts +0 -64
  77. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.js +0 -443
  78. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizerService.d.ts +0 -20
  79. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizerService.js +0 -86
  80. package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/media/notebookFind.css.js +0 -6
  81. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookSimpleWorker.js +0 -279
  82. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookSimpleWorkerMain.d.ts +0 -1
  83. package/vscode/src/vs/workbench/contrib/notebook/common/services/notebookSimpleWorkerMain.js +0 -5
  84. /package/vscode/src/vs/workbench/contrib/notebook/{browser/contrib/chatEdit/contribution.d.ts → common/services/notebookWebWorkerMain.d.ts} +0 -0
@@ -88,7 +88,10 @@ let PausedCellDecorationContribution = class PausedCellDecorationContribution ex
88
88
  position: NotebookOverviewRulerLane.Full
89
89
  }
90
90
  };
91
- return { handle, options };
91
+ return {
92
+ handle,
93
+ options
94
+ };
92
95
  }));
93
96
  this._currentTopDecorations = this._notebookEditor.deltaCellDecorations(this._currentTopDecorations, newDecorations);
94
97
  }
@@ -103,7 +106,10 @@ let PausedCellDecorationContribution = class PausedCellDecorationContribution ex
103
106
  position: NotebookOverviewRulerLane.Full
104
107
  }
105
108
  };
106
- newDecorations = [{ handle: focusedFrameCellAndRange.handle, options }];
109
+ newDecorations = [{
110
+ handle: focusedFrameCellAndRange.handle,
111
+ options
112
+ }];
107
113
  }
108
114
  this._currentOtherDecorations = this._notebookEditor.deltaCellDecorations(this._currentOtherDecorations, newDecorations);
109
115
  }
@@ -117,7 +123,10 @@ let PausedCellDecorationContribution = class PausedCellDecorationContribution ex
117
123
  position: NotebookOverviewRulerLane.Left
118
124
  }
119
125
  };
120
- return { handle, options };
126
+ return {
127
+ handle,
128
+ options
129
+ };
121
130
  }));
122
131
  this._executingCellDecorations = this._notebookEditor.deltaCellDecorations(this._executingCellDecorations, newDecorations);
123
132
  }
@@ -112,19 +112,19 @@ let KernelStatus = class KernelStatus extends Disposable {
112
112
  }
113
113
  const tooltip = kernel.description ?? kernel.detail ?? kernel.label;
114
114
  this._kernelInfoElement.add(this._statusbarService.addEntry({
115
- name: ( localize(7582, "Notebook Kernel Info")),
115
+ name: ( localize(7858, "Notebook Kernel Info")),
116
116
  text: `$(notebook-kernel-select) ${kernel.label}`,
117
117
  ariaLabel: kernel.label,
118
- tooltip: isSuggested ? ( localize(7583, "{0} (suggestion)", tooltip)) : tooltip,
118
+ tooltip: isSuggested ? ( localize(7859, "{0} (suggestion)", tooltip)) : tooltip,
119
119
  command: SELECT_KERNEL_ID,
120
120
  }, SELECT_KERNEL_ID, StatusbarAlignment.RIGHT, 10));
121
121
  this._kernelInfoElement.add(kernel.onDidChange(() => this._showKernelStatus(notebook)));
122
122
  }
123
123
  else {
124
124
  this._kernelInfoElement.add(this._statusbarService.addEntry({
125
- name: ( localize(7584, "Notebook Kernel Selection")),
126
- text: ( localize(7585, "Select Kernel")),
127
- ariaLabel: ( localize(7585, "Select Kernel")),
125
+ name: ( localize(7860, "Notebook Kernel Selection")),
126
+ text: ( localize(7861, "Select Kernel")),
127
+ ariaLabel: ( localize(7861, "Select Kernel")),
128
128
  command: SELECT_KERNEL_ID,
129
129
  kind: 'prominent'
130
130
  }, SELECT_KERNEL_ID, StatusbarAlignment.RIGHT, 10));
@@ -170,7 +170,7 @@ let ActiveCellStatus = class ActiveCellStatus extends Disposable {
170
170
  return;
171
171
  }
172
172
  const entry = {
173
- name: ( localize(7586, "Notebook Editor Selections")),
173
+ name: ( localize(7862, "Notebook Editor Selections")),
174
174
  text: newText,
175
175
  ariaLabel: newText,
176
176
  command: CENTER_ACTIVE_CELL
@@ -194,8 +194,8 @@ let ActiveCellStatus = class ActiveCellStatus extends Disposable {
194
194
  const numSelected = editor.getSelections().reduce((prev, range) => prev + (range.end - range.start), 0);
195
195
  const totalCells = editor.getLength();
196
196
  return numSelected > 1 ?
197
- ( localize(7587, "Cell {0} ({1} selected)", idxFocused, numSelected)) :
198
- ( localize(7588, "Cell {0} of {1}", idxFocused, totalCells));
197
+ ( localize(7863, "Cell {0} ({1} selected)", idxFocused, numSelected)) :
198
+ ( localize(7864, "Cell {0} of {1}", idxFocused, totalCells));
199
199
  }
200
200
  };
201
201
  ActiveCellStatus = ( __decorate([
@@ -255,10 +255,10 @@ let NotebookIndentationStatus = class NotebookIndentationStatus extends Disposab
255
255
  return;
256
256
  }
257
257
  const entry = {
258
- name: ( localize(7589, "Notebook Indentation")),
258
+ name: ( localize(7865, "Notebook Indentation")),
259
259
  text: newText,
260
260
  ariaLabel: newText,
261
- tooltip: ( localize(7590, "Select Indentation")),
261
+ tooltip: ( localize(7866, "Select Indentation")),
262
262
  command: SELECT_NOTEBOOK_INDENTATION_ID
263
263
  };
264
264
  if (!this._accessor.value) {
@@ -0,0 +1,17 @@
1
+ .monaco-workbench .notebookOverlay.notebook-editor.find-hide-transition {
2
+ overflow-y: hidden;
3
+ }
4
+ .monaco-workbench .notebookOverlay.notebook-editor.find-show-transition {
5
+ overflow-y: hidden;
6
+ }
7
+ .monaco-workbench .notebookOverlay.notebook-editor .simple-fr-find-part-wrapper .matchesCount {
8
+ text-align: center;
9
+ text-overflow: ellipsis;
10
+ overflow: hidden;
11
+ white-space: nowrap;
12
+ padding: 0 2px;
13
+ box-sizing: border-box;
14
+ }
15
+ .monaco-workbench .nb-findScope {
16
+ background-color: var(--vscode-editor-findRangeHighlightBackground);
17
+ }
@@ -1,5 +1,5 @@
1
1
 
2
- import './media/notebookFind.css.js';
2
+ import './media/notebookFind.css';
3
3
  import { KeyCode, KeyMod } from '@codingame/monaco-vscode-api/vscode/vs/base/common/keyCodes';
4
4
  import { Schemas } from '@codingame/monaco-vscode-api/vscode/vs/base/common/network';
5
5
  import { isEqual } from '@codingame/monaco-vscode-api/vscode/vs/base/common/resources';
@@ -16,7 +16,7 @@ import { NotebookMultiCellAction } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-
16
16
  import { getNotebookEditorFromEditorPane } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
17
17
  import { registerNotebookContribution } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/notebookEditorExtensions';
18
18
  import { NotebookFindScopeType, CellUri } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
19
- import { NOTEBOOK_EDITOR_FOCUSED, KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED, NOTEBOOK_IS_ACTIVE_EDITOR, INTERACTIVE_WINDOW_IS_ACTIVE_EDITOR } from '@codingame/monaco-vscode-52bb4d5b-ba1a-57fd-9bee-b28824214eac-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
19
+ import { NOTEBOOK_EDITOR_FOCUSED, KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED, NOTEBOOK_IS_ACTIVE_EDITOR, INTERACTIVE_WINDOW_IS_ACTIVE_EDITOR } from '@codingame/monaco-vscode-a1eb43d5-da63-5f76-8ad4-acf0d6c3b749-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
20
20
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
21
21
 
22
22
  registerNotebookContribution(NotebookFindContrib.id, NotebookFindContrib);
@@ -24,7 +24,7 @@ registerAction2(class extends Action2 {
24
24
  constructor() {
25
25
  super({
26
26
  id: 'notebook.hideFind',
27
- title: ( localize2(7591, 'Hide Find in Notebook')),
27
+ title: ( localize2(7867, 'Hide Find in Notebook')),
28
28
  keybinding: {
29
29
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED)),
30
30
  primary: KeyCode.Escape,
@@ -47,7 +47,7 @@ registerAction2(class extends NotebookMultiCellAction {
47
47
  constructor() {
48
48
  super({
49
49
  id: 'notebook.find',
50
- title: ( localize2(7592, 'Find in Notebook')),
50
+ title: ( localize2(7868, 'Find in Notebook')),
51
51
  keybinding: {
52
52
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ( ContextKeyExpr.or(NOTEBOOK_IS_ACTIVE_EDITOR, INTERACTIVE_WINDOW_IS_ACTIVE_EDITOR)), ( EditorContextKeys.focus.toNegated()))),
53
53
  primary: KeyCode.KeyF | KeyMod.CtrlCmd,
@@ -19,7 +19,7 @@ import { KeybindingWeight } from '@codingame/monaco-vscode-api/vscode/vs/platfor
19
19
  import { Progress } from '@codingame/monaco-vscode-api/vscode/vs/platform/progress/common/progress';
20
20
  import { NOTEBOOK_ACTIONS_CATEGORY } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
21
21
  import { getNotebookEditorFromEditorPane } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
22
- import { NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_EDITABLE } from '@codingame/monaco-vscode-52bb4d5b-ba1a-57fd-9bee-b28824214eac-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
22
+ import { NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_EDITABLE } from '@codingame/monaco-vscode-a1eb43d5-da63-5f76-8ad4-acf0d6c3b749-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
23
23
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
24
24
  import { INotebookExecutionService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookExecutionService.service';
25
25
  import { NotebookSetting } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
@@ -34,7 +34,7 @@ registerAction2(class extends Action2 {
34
34
  constructor() {
35
35
  super({
36
36
  id: 'notebook.format',
37
- title: ( localize2(7613, 'Format Notebook')),
37
+ title: ( localize2(7889, 'Format Notebook')),
38
38
  category: NOTEBOOK_ACTIONS_CATEGORY,
39
39
  precondition: ( ContextKeyExpr.and(NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_EDITABLE)),
40
40
  keybinding: {
@@ -85,7 +85,7 @@ registerAction2(class extends Action2 {
85
85
  }
86
86
  return [];
87
87
  })));
88
- await bulkEditService.apply( allCellEdits.flat(), { label: ( localize(7614, "Format Notebook")), code: 'undoredo.formatNotebook', });
88
+ await bulkEditService.apply( allCellEdits.flat(), { label: ( localize(7890, "Format Notebook")), code: 'undoredo.formatNotebook', });
89
89
  }
90
90
  }
91
91
  finally {
@@ -97,7 +97,7 @@ registerEditorAction(class FormatCellAction extends EditorAction {
97
97
  constructor() {
98
98
  super({
99
99
  id: 'notebook.formatCell',
100
- label: ( localize2(7615, "Format Cell")),
100
+ label: ( localize2(7891, "Format Cell")),
101
101
  precondition: ( ContextKeyExpr.and(
102
102
  NOTEBOOK_IS_ACTIVE_EDITOR,
103
103
  NOTEBOOK_EDITOR_EDITABLE,
@@ -166,7 +166,7 @@ let FormatOnCellExecutionParticipant = class FormatOnCellExecutionParticipant {
166
166
  }
167
167
  return [];
168
168
  })));
169
- await this.bulkEditService.apply( allCellEdits.flat(), { label: ( localize(7616, "Format Cells")), code: 'undoredo.notebooks.onWillExecuteFormat', });
169
+ await this.bulkEditService.apply( allCellEdits.flat(), { label: ( localize(7892, "Format Cells")), code: 'undoredo.notebooks.onWillExecuteFormat', });
170
170
  }
171
171
  finally {
172
172
  disposable.dispose();
@@ -14,7 +14,7 @@ import { IStorageService } from '@codingame/monaco-vscode-api/vscode/vs/platform
14
14
  import { Extensions } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
15
15
  import { Memento } from '@codingame/monaco-vscode-12c5f9eb-72d3-57ca-babd-5bef7aa9de3b-common/vscode/vs/workbench/common/memento';
16
16
  import { NotebookSetting } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
17
- import { HAS_OPENED_NOTEBOOK } from '@codingame/monaco-vscode-52bb4d5b-ba1a-57fd-9bee-b28824214eac-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
17
+ import { HAS_OPENED_NOTEBOOK } from '@codingame/monaco-vscode-a1eb43d5-da63-5f76-8ad4-acf0d6c3b749-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
18
18
  import { NotebookEditorInput } from '@codingame/monaco-vscode-9b5a5e82-d649-5455-b4bf-ef90d6afd294-common/vscode/vs/workbench/contrib/notebook/common/notebookEditorInput';
19
19
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
20
20
  import { LifecyclePhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/lifecycle/common/lifecycle';
@@ -66,7 +66,7 @@ registerAction2(class NotebookClearNotebookLayoutAction extends Action2 {
66
66
  constructor() {
67
67
  super({
68
68
  id: 'workbench.notebook.layout.gettingStarted',
69
- title: ( localize2(7617, "Reset notebook getting started")),
69
+ title: ( localize2(7893, "Reset notebook getting started")),
70
70
  f1: true,
71
71
  precondition: ( ContextKeyExpr.equals(`config.${NotebookSetting.openGettingStarted}`, true)),
72
72
  category: Categories.Developer,
@@ -10,7 +10,7 @@ class ToggleCellToolbarPositionAction extends Action2 {
10
10
  constructor() {
11
11
  super({
12
12
  id: TOGGLE_CELL_TOOLBAR_POSITION,
13
- title: ( localize2(7618, 'Toggle Cell Toolbar Position')),
13
+ title: ( localize2(7894, 'Toggle Cell Toolbar Position')),
14
14
  menu: [{
15
15
  id: MenuId.NotebookCellTitle,
16
16
  group: 'View',
@@ -32,7 +32,7 @@ import { UndoRedoElementType } from '@codingame/monaco-vscode-api/vscode/vs/plat
32
32
  import { IUndoRedoService } from '@codingame/monaco-vscode-api/vscode/vs/platform/undoRedo/common/undoRedo.service';
33
33
  import { registerWorkbenchContribution2, WorkbenchPhase } from '@codingame/monaco-vscode-api/vscode/vs/workbench/common/contributions';
34
34
  import { IEditorService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/services/editor/common/editorService.service';
35
- import { NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_CELL_EDITOR_FOCUSED, KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED } from '@codingame/monaco-vscode-52bb4d5b-ba1a-57fd-9bee-b28824214eac-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
35
+ import { NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_CELL_EDITOR_FOCUSED, KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED } from '@codingame/monaco-vscode-a1eb43d5-da63-5f76-8ad4-acf0d6c3b749-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
36
36
  import { NotebookAction } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
37
37
  import { getNotebookEditorFromEditorPane } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
38
38
  import { registerNotebookContribution } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/notebookEditorExtensions';
@@ -772,7 +772,7 @@ class NotebookSelectAllFindMatches extends NotebookAction {
772
772
  constructor() {
773
773
  super({
774
774
  id: NOTEBOOK_SELECT_ALL_FIND_MATCHES_ID,
775
- title: ( localize(7619, "Select All Occurrences of Find Match")),
775
+ title: ( localize(7895, "Select All Occurrences of Find Match")),
776
776
  precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)))),
777
777
  keybinding: {
778
778
  when: ( ContextKeyExpr.or(( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_CELL_EDITOR_FOCUSED)), ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED)))),
@@ -805,7 +805,7 @@ class NotebookAddMatchToMultiSelectionAction extends NotebookAction {
805
805
  constructor() {
806
806
  super({
807
807
  id: NOTEBOOK_ADD_FIND_MATCH_TO_SELECTION_ID,
808
- title: ( localize(7620, "Add Selection To Next Find Match")),
808
+ title: ( localize(7896, "Add Selection to Next Find Match")),
809
809
  precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_CELL_EDITOR_FOCUSED)),
810
810
  keybinding: {
811
811
  when: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_CELL_EDITOR_FOCUSED)),
@@ -831,7 +831,7 @@ class NotebookExitMultiSelectionAction extends NotebookAction {
831
831
  constructor() {
832
832
  super({
833
833
  id: 'noteMultiCursor.exit',
834
- title: ( localize(7621, "Exit Multi Cursor Mode")),
834
+ title: ( localize(7897, "Exit Multi Cursor Mode")),
835
835
  precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_MULTI_CURSOR_CONTEXT.IsNotebookMultiCursor)),
836
836
  keybinding: {
837
837
  when: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_MULTI_CURSOR_CONTEXT.IsNotebookMultiCursor)),
@@ -854,7 +854,7 @@ class NotebookDeleteLeftMultiSelectionAction extends NotebookAction {
854
854
  constructor() {
855
855
  super({
856
856
  id: 'noteMultiCursor.deleteLeft',
857
- title: ( localize(7622, "Delete Left")),
857
+ title: ( localize(7898, "Delete Left")),
858
858
  precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_MULTI_CURSOR_CONTEXT.IsNotebookMultiCursor, ( ContextKeyExpr.or(( NOTEBOOK_MULTI_CURSOR_CONTEXT.NotebookMultiSelectCursorState.isEqualTo(NotebookMultiCursorState.Selecting)), ( NOTEBOOK_MULTI_CURSOR_CONTEXT.NotebookMultiSelectCursorState.isEqualTo(NotebookMultiCursorState.Editing)))))),
859
859
  keybinding: {
860
860
  when: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_MULTI_CURSOR_CONTEXT.IsNotebookMultiCursor, ( ContextKeyExpr.or(( NOTEBOOK_MULTI_CURSOR_CONTEXT.NotebookMultiSelectCursorState.isEqualTo(NotebookMultiCursorState.Selecting)), ( NOTEBOOK_MULTI_CURSOR_CONTEXT.NotebookMultiSelectCursorState.isEqualTo(NotebookMultiCursorState.Editing)))))),
@@ -877,7 +877,7 @@ class NotebookDeleteRightMultiSelectionAction extends NotebookAction {
877
877
  constructor() {
878
878
  super({
879
879
  id: 'noteMultiCursor.deleteRight',
880
- title: ( localize(7623, "Delete Right")),
880
+ title: ( localize(7899, "Delete Right")),
881
881
  precondition: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_MULTI_CURSOR_CONTEXT.IsNotebookMultiCursor, ( ContextKeyExpr.or(( NOTEBOOK_MULTI_CURSOR_CONTEXT.NotebookMultiSelectCursorState.isEqualTo(NotebookMultiCursorState.Selecting)), ( NOTEBOOK_MULTI_CURSOR_CONTEXT.NotebookMultiSelectCursorState.isEqualTo(NotebookMultiCursorState.Editing)))))),
882
882
  keybinding: {
883
883
  when: ( ContextKeyExpr.and(( ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)), NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_MULTI_CURSOR_CONTEXT.IsNotebookMultiCursor, ( ContextKeyExpr.or(( NOTEBOOK_MULTI_CURSOR_CONTEXT.NotebookMultiSelectCursorState.isEqualTo(NotebookMultiCursorState.Selecting)), ( NOTEBOOK_MULTI_CURSOR_CONTEXT.NotebookMultiSelectCursorState.isEqualTo(NotebookMultiCursorState.Editing)))))),
@@ -16,7 +16,7 @@ import { CTX_NOTEBOOK_CHAT_OUTER_FOCUS_POSITION } from '@codingame/monaco-vscode
16
16
  import { NotebookCellAction, NOTEBOOK_EDITOR_WIDGET_ACTION_WEIGHT, findTargetCellEditor, NotebookAction } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/controller/coreActions';
17
17
  import { CellEditState } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/notebookBrowser';
18
18
  import { NOTEBOOK_EDITOR_CURSOR_BOUNDARY, CellKind } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/notebook/common/notebookCommon';
19
- import { NOTEBOOK_OUTPUT_INPUT_FOCUSED, NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_CELL_TYPE, NOTEBOOK_CELL_MARKDOWN_EDIT_MODE, NOTEBOOK_CURSOR_NAVIGATION_MODE, NOTEBOOK_OUTPUT_FOCUSED, NOTEBOOK_CELL_EDITOR_FOCUSED, NOTEBOOK_CELL_HAS_OUTPUTS, IS_COMPOSITE_NOTEBOOK } from '@codingame/monaco-vscode-52bb4d5b-ba1a-57fd-9bee-b28824214eac-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
19
+ import { NOTEBOOK_OUTPUT_INPUT_FOCUSED, NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_CELL_TYPE, NOTEBOOK_CELL_MARKDOWN_EDIT_MODE, NOTEBOOK_CURSOR_NAVIGATION_MODE, NOTEBOOK_OUTPUT_FOCUSED, NOTEBOOK_CELL_EDITOR_FOCUSED, NOTEBOOK_CELL_HAS_OUTPUTS, IS_COMPOSITE_NOTEBOOK } from '@codingame/monaco-vscode-a1eb43d5-da63-5f76-8ad4-acf0d6c3b749-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
20
20
 
21
21
  const NOTEBOOK_FOCUS_TOP = 'notebook.focusTop';
22
22
  const NOTEBOOK_FOCUS_BOTTOM = 'notebook.focusBottom';
@@ -34,7 +34,7 @@ registerAction2(class extends Action2 {
34
34
  super({
35
35
  id: 'notebook.cell.nullAction',
36
36
  title: ( localize(
37
- 7624,
37
+ 7900,
38
38
  "Keypresses that should be handled by the focused element in the cell output."
39
39
  )),
40
40
  keybinding: [{
@@ -57,7 +57,7 @@ registerAction2(class FocusNextCellAction extends NotebookCellAction {
57
57
  constructor() {
58
58
  super({
59
59
  id: NOTEBOOK_FOCUS_NEXT_EDITOR,
60
- title: ( localize(7625, 'Focus Next Cell Editor')),
60
+ title: ( localize(7901, 'Focus Next Cell Editor')),
61
61
  keybinding: [
62
62
  {
63
63
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ( CONTEXT_ACCESSIBILITY_MODE_ENABLED.negate()), ( ContextKeyExpr.equals('config.notebook.navigation.allowNavigateToSurroundingCells', true)), ( ContextKeyExpr.and(( ContextKeyExpr.has(InputFocusedContextKey)), EditorContextKeys.editorTextFocus, ( NOTEBOOK_EDITOR_CURSOR_BOUNDARY.notEqualsTo('top')), ( NOTEBOOK_EDITOR_CURSOR_BOUNDARY.notEqualsTo('none')))), ( EditorContextKeys.isEmbeddedDiffEditor.negate()))),
@@ -111,7 +111,7 @@ registerAction2(class FocusPreviousCellAction extends NotebookCellAction {
111
111
  constructor() {
112
112
  super({
113
113
  id: NOTEBOOK_FOCUS_PREVIOUS_EDITOR,
114
- title: ( localize(7626, 'Focus Previous Cell Editor')),
114
+ title: ( localize(7902, 'Focus Previous Cell Editor')),
115
115
  keybinding: [
116
116
  {
117
117
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ( CONTEXT_ACCESSIBILITY_MODE_ENABLED.negate()), ( ContextKeyExpr.equals('config.notebook.navigation.allowNavigateToSurroundingCells', true)), ( ContextKeyExpr.and(( ContextKeyExpr.has(InputFocusedContextKey)), EditorContextKeys.editorTextFocus, ( NOTEBOOK_EDITOR_CURSOR_BOUNDARY.notEqualsTo('bottom')), ( NOTEBOOK_EDITOR_CURSOR_BOUNDARY.notEqualsTo('none')))), ( EditorContextKeys.isEmbeddedDiffEditor.negate()))),
@@ -156,7 +156,7 @@ registerAction2(class extends NotebookAction {
156
156
  constructor() {
157
157
  super({
158
158
  id: NOTEBOOK_FOCUS_TOP,
159
- title: ( localize(7627, 'Focus First Cell')),
159
+ title: ( localize(7903, 'Focus First Cell')),
160
160
  keybinding: [
161
161
  {
162
162
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ContextKeyExpr.not(InputFocusedContextKey))),
@@ -188,7 +188,7 @@ registerAction2(class extends NotebookAction {
188
188
  constructor() {
189
189
  super({
190
190
  id: NOTEBOOK_FOCUS_BOTTOM,
191
- title: ( localize(7628, 'Focus Last Cell')),
191
+ title: ( localize(7904, 'Focus Last Cell')),
192
192
  keybinding: [
193
193
  {
194
194
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ContextKeyExpr.not(InputFocusedContextKey))),
@@ -225,7 +225,7 @@ registerAction2(class extends NotebookCellAction {
225
225
  constructor() {
226
226
  super({
227
227
  id: FOCUS_IN_OUTPUT_COMMAND_ID,
228
- title: ( localize(7629, 'Focus In Active Cell Output')),
228
+ title: ( localize(7905, 'Focus In Active Cell Output')),
229
229
  keybinding: [{
230
230
  when: ( ContextKeyExpr.and(( IS_COMPOSITE_NOTEBOOK.negate()), IsWindowsContext)),
231
231
  primary: KeyMod.CtrlCmd | KeyCode.DownArrow,
@@ -248,7 +248,7 @@ registerAction2(class extends NotebookCellAction {
248
248
  constructor() {
249
249
  super({
250
250
  id: FOCUS_OUT_OUTPUT_COMMAND_ID,
251
- title: ( localize(7630, 'Focus Out Active Cell Output')),
251
+ title: ( localize(7906, 'Focus Out Active Cell Output')),
252
252
  keybinding: {
253
253
  primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.UpArrow,
254
254
  mac: { primary: KeyMod.WinCtrl | KeyMod.CtrlCmd | KeyCode.UpArrow, },
@@ -267,7 +267,7 @@ registerAction2(class CenterActiveCellAction extends NotebookCellAction {
267
267
  constructor() {
268
268
  super({
269
269
  id: CENTER_ACTIVE_CELL,
270
- title: ( localize(7631, "Center Active Cell")),
270
+ title: ( localize(7907, "Center Active Cell")),
271
271
  keybinding: {
272
272
  when: NOTEBOOK_EDITOR_FOCUSED,
273
273
  primary: KeyMod.CtrlCmd | KeyCode.KeyL,
@@ -286,7 +286,7 @@ registerAction2(class extends NotebookCellAction {
286
286
  constructor() {
287
287
  super({
288
288
  id: NOTEBOOK_CURSOR_PAGEUP_COMMAND_ID,
289
- title: ( localize(7632, "Cell Cursor Page Up")),
289
+ title: ( localize(7908, "Cell Cursor Page Up")),
290
290
  keybinding: [
291
291
  {
292
292
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ( ContextKeyExpr.has(InputFocusedContextKey)), EditorContextKeys.editorTextFocus)),
@@ -304,7 +304,7 @@ registerAction2(class extends NotebookCellAction {
304
304
  constructor() {
305
305
  super({
306
306
  id: NOTEBOOK_CURSOR_PAGEUP_SELECT_COMMAND_ID,
307
- title: ( localize(7633, "Cell Cursor Page Up Select")),
307
+ title: ( localize(7909, "Cell Cursor Page Up Select")),
308
308
  keybinding: [
309
309
  {
310
310
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ( ContextKeyExpr.has(InputFocusedContextKey)), EditorContextKeys.editorTextFocus, ( NOTEBOOK_OUTPUT_FOCUSED.negate()))),
@@ -322,7 +322,7 @@ registerAction2(class extends NotebookCellAction {
322
322
  constructor() {
323
323
  super({
324
324
  id: NOTEBOOK_CURSOR_PAGEDOWN_COMMAND_ID,
325
- title: ( localize(7634, "Cell Cursor Page Down")),
325
+ title: ( localize(7910, "Cell Cursor Page Down")),
326
326
  keybinding: [
327
327
  {
328
328
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ( ContextKeyExpr.has(InputFocusedContextKey)), EditorContextKeys.editorTextFocus)),
@@ -340,7 +340,7 @@ registerAction2(class extends NotebookCellAction {
340
340
  constructor() {
341
341
  super({
342
342
  id: NOTEBOOK_CURSOR_PAGEDOWN_SELECT_COMMAND_ID,
343
- title: ( localize(7635, "Cell Cursor Page Down Select")),
343
+ title: ( localize(7911, "Cell Cursor Page Down Select")),
344
344
  keybinding: [
345
345
  {
346
346
  when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ( ContextKeyExpr.has(InputFocusedContextKey)), EditorContextKeys.editorTextFocus, ( NOTEBOOK_OUTPUT_FOCUSED.negate()))),
@@ -369,7 +369,7 @@ function getPageSize(context) {
369
369
  type: 'boolean',
370
370
  default: true,
371
371
  markdownDescription: ( localize(
372
- 7636,
372
+ 7912,
373
373
  "When enabled cursor can navigate to the next/previous cell when the current cursor in the cell editor is at the first/last line."
374
374
  ))
375
375
  }
@@ -508,7 +508,7 @@ registerAction2(class ClearNotebookInlineValues extends NotebookAction {
508
508
  constructor() {
509
509
  super({
510
510
  id: 'notebook.clearAllInlineValues',
511
- title: ( localize(7637, 'Clear All Inline Values')),
511
+ title: ( localize(7913, 'Clear All Inline Values')),
512
512
  });
513
513
  }
514
514
  runWithContext(accessor, context) {
@@ -63,7 +63,7 @@ let NotebookVariables = class NotebookVariables extends Disposable {
63
63
  if (debugViewContainer) {
64
64
  const viewsRegistry = ( Registry.as(Extensions.ViewsRegistry));
65
65
  const viewDescriptor = {
66
- id: 'workbench.notebook.variables', name: ( localize2(7640, "Notebook Variables")),
66
+ id: 'workbench.notebook.variables', name: ( localize2(7916, "Notebook Variables")),
67
67
  containerIcon: variablesViewIcon, ctorDescriptor: ( new SyncDescriptor(NotebookVariablesView)),
68
68
  order: 50, weight: 5, canToggleVisibility: true, canMoveView: true, collapsed: false, when: NOTEBOOK_VARIABLE_VIEW_ENABLED
69
69
  };
@@ -78,7 +78,7 @@ class NotebookVariableDataSource {
78
78
  notebook: parent.notebook,
79
79
  id: parent.id + `${last + 1}`,
80
80
  extHostId: parent.extHostId,
81
- name: ( localize(7641, "Display limit reached")),
81
+ name: ( localize(7917, "Display limit reached")),
82
82
  value: '',
83
83
  indexedChildrenCount: 0,
84
84
  hasNamedChildren: false
@@ -56,10 +56,10 @@ NotebookVariableRenderer = NotebookVariableRenderer_1 = ( __decorate([
56
56
  ], NotebookVariableRenderer));
57
57
  class NotebookVariableAccessibilityProvider {
58
58
  getWidgetAriaLabel() {
59
- return localize(7642, "Notebook Variables");
59
+ return localize(7918, "Notebook Variables");
60
60
  }
61
61
  getAriaLabel(element) {
62
- return localize(7643, "Variable {0}, value {1}", element.name, element.value);
62
+ return localize(7919, "Variable {0}, value {1}", element.name, element.value);
63
63
  }
64
64
  }
65
65
 
@@ -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(7644, "Notebook Variables")); }
35
- static { this.REPL_TITLE = ( localize2(7645, "REPL Variables")); }
34
+ static { this.NOTEBOOK_TITLE = ( localize2(7920, "Notebook Variables")); }
35
+ static { this.REPL_TITLE = ( localize2(7921, "REPL Variables")); }
36
36
  constructor(options, editorService, notebookKernelService, notebookExecutionStateService, keybindingService, contextMenuService, contextKeyService, configurationService, instantiationService, viewDescriptorService, openerService, quickInputService, commandService, themeService, hoverService, menuService) {
37
37
  super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, hoverService);
38
38
  this.editorService = editorService;
@@ -47,7 +47,7 @@ import { MenuEntryActionViewItem, getActionBarActions } from '@codingame/monaco-
47
47
  import { disposableTimeout, Delayer } from '@codingame/monaco-vscode-api/vscode/vs/base/common/async';
48
48
  import { IOutlinePane } from '@codingame/monaco-vscode-0cd5242b-7b61-5f66-ac25-ffa40baf8e8f-common/vscode/vs/workbench/contrib/outline/browser/outline';
49
49
  import { Codicon } from '@codingame/monaco-vscode-api/vscode/vs/base/common/codicons';
50
- import { NOTEBOOK_IS_ACTIVE_EDITOR } from '@codingame/monaco-vscode-52bb4d5b-ba1a-57fd-9bee-b28824214eac-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
50
+ import { NOTEBOOK_IS_ACTIVE_EDITOR } from '@codingame/monaco-vscode-a1eb43d5-da63-5f76-8ad4-acf0d6c3b749-common/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';
51
51
  import { NotebookOutlineConstants } from '../../viewModel/notebookOutlineEntryFactory.js';
52
52
  import { INotebookCellOutlineDataSourceFactory } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/browser/viewModel/notebookOutlineDataSourceFactory.service';
53
53
  import { NotebookExecutionType } from '@codingame/monaco-vscode-9a6d8b6c-ad4c-5ea3-9558-f43d6dc4c0ad-common/vscode/vs/workbench/contrib/notebook/common/notebookExecutionStateService';
@@ -728,33 +728,33 @@ const NotebookOutlineContext = {
728
728
  type: 'boolean',
729
729
  default: true,
730
730
  markdownDescription: ( localize(
731
- 7646,
731
+ 7922,
732
732
  "When enabled, notebook outline will show only markdown cells containing a header."
733
733
  ))
734
734
  },
735
735
  [NotebookSetting.outlineShowCodeCells]: {
736
736
  type: 'boolean',
737
737
  default: false,
738
- markdownDescription: ( localize(7647, "When enabled, notebook outline shows code cells."))
738
+ markdownDescription: ( localize(7923, "When enabled, notebook outline shows code cells."))
739
739
  },
740
740
  [NotebookSetting.outlineShowCodeCellSymbols]: {
741
741
  type: 'boolean',
742
742
  default: true,
743
743
  markdownDescription: ( localize(
744
- 7648,
744
+ 7924,
745
745
  "When enabled, notebook outline shows code cell symbols. Relies on `notebook.outline.showCodeCells` being enabled."
746
746
  ))
747
747
  },
748
748
  [NotebookSetting.breadcrumbsShowCodeCells]: {
749
749
  type: 'boolean',
750
750
  default: true,
751
- markdownDescription: ( localize(7649, "When enabled, notebook breadcrumbs contain code cells."))
751
+ markdownDescription: ( localize(7925, "When enabled, notebook breadcrumbs contain code cells."))
752
752
  },
753
753
  [NotebookSetting.gotoSymbolsAllSymbols]: {
754
754
  type: 'boolean',
755
755
  default: true,
756
756
  markdownDescription: ( localize(
757
- 7650,
757
+ 7926,
758
758
  "When enabled, the Go to Symbol Quick Pick will display full code symbols from the notebook, as well as Markdown headers."
759
759
  ))
760
760
  },
@@ -762,7 +762,7 @@ const NotebookOutlineContext = {
762
762
  });
763
763
  MenuRegistry.appendMenuItem(MenuId.ViewTitle, {
764
764
  submenu: MenuId.NotebookOutlineFilter,
765
- title: ( localize(7651, "Filter Entries")),
765
+ title: ( localize(7927, "Filter Entries")),
766
766
  icon: Codicon.filter,
767
767
  group: 'navigation',
768
768
  order: -1,
@@ -772,7 +772,7 @@ registerAction2(class ToggleShowMarkdownHeadersOnly extends Action2 {
772
772
  constructor() {
773
773
  super({
774
774
  id: 'notebook.outline.toggleShowMarkdownHeadersOnly',
775
- title: ( localize(7652, "Markdown Headers Only")),
775
+ title: ( localize(7928, "Markdown Headers Only")),
776
776
  f1: false,
777
777
  toggled: {
778
778
  condition: ( ContextKeyExpr.equals('config.notebook.outline.showMarkdownHeadersOnly', true))
@@ -793,7 +793,7 @@ registerAction2(class ToggleCodeCellEntries extends Action2 {
793
793
  constructor() {
794
794
  super({
795
795
  id: 'notebook.outline.toggleCodeCells',
796
- title: ( localize(7653, "Code Cells")),
796
+ title: ( localize(7929, "Code Cells")),
797
797
  f1: false,
798
798
  toggled: {
799
799
  condition: ( ContextKeyExpr.equals('config.notebook.outline.showCodeCells', true))
@@ -815,7 +815,7 @@ registerAction2(class ToggleCodeCellSymbolEntries extends Action2 {
815
815
  constructor() {
816
816
  super({
817
817
  id: 'notebook.outline.toggleCodeCellSymbols',
818
- title: ( localize(7654, "Code Cell Symbols")),
818
+ title: ( localize(7930, "Code Cell Symbols")),
819
819
  f1: false,
820
820
  toggled: {
821
821
  condition: ( ContextKeyExpr.equals('config.notebook.outline.showCodeCellSymbols', true))
@@ -53,7 +53,7 @@ registerAction2(class extends Action2 {
53
53
  constructor() {
54
54
  super({
55
55
  id: 'notebook.setProfile',
56
- title: ( localize(7655, "Set Profile"))
56
+ title: ( localize(7931, "Set Profile"))
57
57
  });
58
58
  }
59
59
  async run(accessor, args) {