@codingame/monaco-vscode-notebook-service-override 21.3.2 → 21.3.3
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.
- package/package.json +24 -24
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellCommands/cellCommands.js +21 -21
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/cellDiagnosticsActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellDiagnostics/diagnosticCellStatusBarContrib.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/statusBarProviders.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/clipboard/notebookClipboard.js +6 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/editorStatusBar/editorStatusBar.js +10 -10
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFind.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/format/formatting.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/gettingStarted/notebookGettingStarted.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/layout/layoutActions.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/multicursor/notebookMulticursor.js +5 -5
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/navigation/arrow.js +13 -13
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookInlineVariables.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariables.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesDataSource.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesTree.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.js +9 -9
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/profile/notebookProfile.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/saveParticipants/saveParticipants.js +12 -12
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/troubleshoot/layout.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/cellChatActions.js +27 -27
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/chat/notebook.chat.contribution.js +6 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/editActions.js +25 -25
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/executeActions.js +22 -22
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/layoutActions.js +17 -17
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/sectionActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/variablesActions.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffActions.js +21 -21
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebook.contribution.js +68 -68
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp.js +10 -10
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookExtensionPoint.js +33 -33
- package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditorInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookExecutionServiceImpl.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKernelHistoryServiceImpl.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookKeymapServiceImpl.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +12 -12
- package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +1 -1
package/vscode/src/vs/workbench/contrib/notebook/browser/controller/notebookIndentationActions.js
CHANGED
|
@@ -19,7 +19,7 @@ class NotebookIndentUsingTabs extends Action2 {
|
|
|
19
19
|
constructor() {
|
|
20
20
|
super({
|
|
21
21
|
id: NotebookIndentUsingTabs.ID,
|
|
22
|
-
title: ( localize(
|
|
22
|
+
title: ( localize(8936, "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(
|
|
35
|
+
title: ( localize(8937, "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(
|
|
48
|
+
title: ( localize(8938, "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(
|
|
61
|
+
title: ( localize(8939, "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(
|
|
74
|
+
title: ( localize(8940, "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(
|
|
106
|
+
quickInputService.pick(picks, { placeHolder: ( localize(8941, "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(
|
|
156
|
+
bulkEditService.apply(edits, { label: ( localize(8942, "Convert Indentation")), code: 'undoredo.convertIndentation', });
|
|
157
157
|
}))).then(() => {
|
|
158
158
|
const initialConfig = configurationService.getValue(NotebookSetting.cellEditorOptionsCustomizations);
|
|
159
159
|
const initialIndentSize = initialConfig['editor.indentSize'];
|
|
@@ -16,10 +16,10 @@ class NotebookRunSingleCellInSection extends Action2 {
|
|
|
16
16
|
super({
|
|
17
17
|
id: 'notebook.section.runSingleCell',
|
|
18
18
|
title: {
|
|
19
|
-
...( localize2(
|
|
20
|
-
mnemonicTitle: ( localize(
|
|
19
|
+
...( localize2(8943, "Run Cell")),
|
|
20
|
+
mnemonicTitle: ( localize(8944, "&&Run Cell")),
|
|
21
21
|
},
|
|
22
|
-
shortTitle: ( localize(
|
|
22
|
+
shortTitle: ( localize(8943, "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(
|
|
47
|
-
mnemonicTitle: ( localize(
|
|
46
|
+
...( localize2(8945, "Run Cells In Section")),
|
|
47
|
+
mnemonicTitle: ( localize(8946, "&&Run Cells In Section")),
|
|
48
48
|
},
|
|
49
|
-
shortTitle: ( localize(
|
|
49
|
+
shortTitle: ( localize(8945, "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(
|
|
109
|
-
mnemonicTitle: ( localize(
|
|
108
|
+
...( localize2(8947, "Fold Section")),
|
|
109
|
+
mnemonicTitle: ( localize(8948, "&&Fold Section")),
|
|
110
110
|
},
|
|
111
|
-
shortTitle: ( localize(
|
|
111
|
+
shortTitle: ( localize(8947, "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(
|
|
142
|
-
mnemonicTitle: ( localize(
|
|
141
|
+
...( localize2(8949, "Expand Section")),
|
|
142
|
+
mnemonicTitle: ( localize(8950, "&&Expand Section")),
|
|
143
143
|
},
|
|
144
|
-
shortTitle: ( localize(
|
|
144
|
+
shortTitle: ( localize(8949, "Expand Section")),
|
|
145
145
|
menu: [
|
|
146
146
|
{
|
|
147
147
|
id: MenuId.NotebookOutlineActionMenu,
|
|
@@ -13,7 +13,7 @@ registerAction2(class OpenVariablesViewAction extends NotebookAction {
|
|
|
13
13
|
constructor() {
|
|
14
14
|
super({
|
|
15
15
|
id: OPEN_VARIABLES_VIEW_COMMAND_ID,
|
|
16
|
-
title: ( localize2(
|
|
16
|
+
title: ( localize2(8951, "Variables")),
|
|
17
17
|
icon: variablesViewIcon,
|
|
18
18
|
menu: [
|
|
19
19
|
{
|
|
@@ -29,7 +29,7 @@ registerAction2(class extends Action2 {
|
|
|
29
29
|
super({
|
|
30
30
|
id: 'notebook.diff.openFile',
|
|
31
31
|
icon: Codicon.goToFile,
|
|
32
|
-
title: ( localize2(
|
|
32
|
+
title: ( localize2(8963, 'Open File')),
|
|
33
33
|
precondition: ( ContextKeyExpr.or(( ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)), ( ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID)))),
|
|
34
34
|
menu: [{
|
|
35
35
|
id: MenuId.EditorTitle,
|
|
@@ -55,7 +55,7 @@ registerAction2(class extends Action2 {
|
|
|
55
55
|
constructor() {
|
|
56
56
|
super({
|
|
57
57
|
id: 'notebook.diff.cell.toggleCollapseUnchangedRegions',
|
|
58
|
-
title: ( localize2(
|
|
58
|
+
title: ( localize2(8964, 'Toggle Collapse Unchanged Regions')),
|
|
59
59
|
icon: Codicon.map,
|
|
60
60
|
toggled: ( ContextKeyExpr.has('config.diffEditor.hideUnchangedRegions.enabled')),
|
|
61
61
|
precondition: ( ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)),
|
|
@@ -77,7 +77,7 @@ registerAction2(class extends Action2 {
|
|
|
77
77
|
super({
|
|
78
78
|
id: 'notebook.diff.switchToText',
|
|
79
79
|
icon: openAsTextIcon,
|
|
80
|
-
title: ( localize2(
|
|
80
|
+
title: ( localize2(8965, 'Open Text Diff Editor')),
|
|
81
81
|
precondition: ( ContextKeyExpr.or(( ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)), ( ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID)))),
|
|
82
82
|
menu: [{
|
|
83
83
|
id: MenuId.EditorTitle,
|
|
@@ -110,7 +110,7 @@ registerAction2(class extends Action2 {
|
|
|
110
110
|
constructor() {
|
|
111
111
|
super({
|
|
112
112
|
id: 'notebook.diffEditor.showUnchangedCells',
|
|
113
|
-
title: ( localize2(
|
|
113
|
+
title: ( localize2(8966, 'Show Unchanged Cells')),
|
|
114
114
|
icon: Codicon.unfold,
|
|
115
115
|
precondition: ( ContextKeyExpr.and(( ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID)), ( ContextKeyExpr.has(NOTEBOOK_DIFF_HAS_UNCHANGED_CELLS.key)))),
|
|
116
116
|
menu: {
|
|
@@ -135,7 +135,7 @@ registerAction2(class extends Action2 {
|
|
|
135
135
|
constructor() {
|
|
136
136
|
super({
|
|
137
137
|
id: 'notebook.diffEditor.hideUnchangedCells',
|
|
138
|
-
title: ( localize2(
|
|
138
|
+
title: ( localize2(8967, 'Hide Unchanged Cells')),
|
|
139
139
|
icon: Codicon.fold,
|
|
140
140
|
precondition: ( ContextKeyExpr.and(( ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID)), ( ContextKeyExpr.has(NOTEBOOK_DIFF_HAS_UNCHANGED_CELLS.key)))),
|
|
141
141
|
menu: {
|
|
@@ -160,7 +160,7 @@ registerAction2(class GoToFileAction extends Action2 {
|
|
|
160
160
|
constructor() {
|
|
161
161
|
super({
|
|
162
162
|
id: 'notebook.diffEditor.2.goToCell',
|
|
163
|
-
title: ( localize2(
|
|
163
|
+
title: ( localize2(8968, 'Go To Cell')),
|
|
164
164
|
icon: Codicon.goToFile,
|
|
165
165
|
menu: {
|
|
166
166
|
when: ( ContextKeyExpr.and(( ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID)), ( ContextKeyExpr.equals(NOTEBOOK_DIFF_ITEM_KIND.key, 'Cell')), ( ContextKeyExpr.notEquals(NOTEBOOK_DIFF_ITEM_DIFF_STATE.key, 'delete')))),
|
|
@@ -189,7 +189,7 @@ registerAction2(class extends Action2 {
|
|
|
189
189
|
constructor() {
|
|
190
190
|
super({
|
|
191
191
|
id: 'notebook.diff.revertMetadata',
|
|
192
|
-
title: ( localize(
|
|
192
|
+
title: ( localize(8969, "Revert Notebook Metadata")),
|
|
193
193
|
icon: revertIcon,
|
|
194
194
|
f1: false,
|
|
195
195
|
menu: {
|
|
@@ -214,7 +214,7 @@ registerAction2(class extends Action2 {
|
|
|
214
214
|
}], true, undefined, () => undefined, undefined, true);
|
|
215
215
|
}
|
|
216
216
|
});
|
|
217
|
-
const revertInput = ( localize(
|
|
217
|
+
const revertInput = ( localize(8970, "Revert Input"));
|
|
218
218
|
registerAction2(class extends Action2 {
|
|
219
219
|
constructor() {
|
|
220
220
|
super({
|
|
@@ -253,7 +253,7 @@ registerAction2(class extends Action2 {
|
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
255
|
});
|
|
256
|
-
const revertOutputs = ( localize(
|
|
256
|
+
const revertOutputs = ( localize(8971, "Revert Outputs"));
|
|
257
257
|
registerAction2(class extends Action2 {
|
|
258
258
|
constructor() {
|
|
259
259
|
super({
|
|
@@ -289,7 +289,7 @@ registerAction2(class extends Action2 {
|
|
|
289
289
|
}
|
|
290
290
|
}
|
|
291
291
|
});
|
|
292
|
-
const revertMetadata = ( localize(
|
|
292
|
+
const revertMetadata = ( localize(8972, "Revert Metadata"));
|
|
293
293
|
registerAction2(class extends Action2 {
|
|
294
294
|
constructor() {
|
|
295
295
|
super({
|
|
@@ -363,7 +363,7 @@ registerAction2(class extends Action2 {
|
|
|
363
363
|
constructor() {
|
|
364
364
|
super({
|
|
365
365
|
id: 'notebook.diff.cell.switchOutputRenderingStyleToText',
|
|
366
|
-
title: ( localize(
|
|
366
|
+
title: ( localize(8973, "Switch Output Rendering")),
|
|
367
367
|
icon: renderOutputIcon,
|
|
368
368
|
f1: false,
|
|
369
369
|
menu: {
|
|
@@ -383,7 +383,7 @@ registerAction2(class extends Action2 {
|
|
|
383
383
|
constructor() {
|
|
384
384
|
super({
|
|
385
385
|
id: 'notebook.diff.cell.revertOutputs',
|
|
386
|
-
title: ( localize(
|
|
386
|
+
title: ( localize(8971, "Revert Outputs")),
|
|
387
387
|
icon: revertIcon,
|
|
388
388
|
f1: false,
|
|
389
389
|
menu: {
|
|
@@ -415,7 +415,7 @@ registerAction2(class extends Action2 {
|
|
|
415
415
|
constructor() {
|
|
416
416
|
super({
|
|
417
417
|
id: 'notebook.toggle.diff.cell.ignoreTrimWhitespace',
|
|
418
|
-
title: ( localize(
|
|
418
|
+
title: ( localize(8974, "Show Leading/Trailing Whitespace Differences")),
|
|
419
419
|
icon: toggleWhitespace,
|
|
420
420
|
f1: false,
|
|
421
421
|
menu: {
|
|
@@ -503,19 +503,19 @@ class ToggleRenderAction extends Action2 {
|
|
|
503
503
|
}
|
|
504
504
|
registerAction2(class extends ToggleRenderAction {
|
|
505
505
|
constructor() {
|
|
506
|
-
super('notebook.diff.showOutputs', ( localize2(
|
|
506
|
+
super('notebook.diff.showOutputs', ( localize2(8975, 'Show Outputs Differences')), ( ContextKeyExpr.or(( ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)), ( ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID)))), ( ContextKeyExpr.notEquals('config.notebook.diff.ignoreOutputs', true)), 2, true, undefined);
|
|
507
507
|
}
|
|
508
508
|
});
|
|
509
509
|
registerAction2(class extends ToggleRenderAction {
|
|
510
510
|
constructor() {
|
|
511
|
-
super('notebook.diff.showMetadata', ( localize2(
|
|
511
|
+
super('notebook.diff.showMetadata', ( localize2(8976, 'Show Metadata Differences')), ( ContextKeyExpr.or(( ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)), ( ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID)))), ( ContextKeyExpr.notEquals('config.notebook.diff.ignoreMetadata', true)), 1, undefined, true);
|
|
512
512
|
}
|
|
513
513
|
});
|
|
514
514
|
registerAction2(class extends Action2 {
|
|
515
515
|
constructor() {
|
|
516
516
|
super({
|
|
517
517
|
id: 'notebook.diff.action.previous',
|
|
518
|
-
title: ( localize(
|
|
518
|
+
title: ( localize(8977, "Show Previous Change")),
|
|
519
519
|
icon: previousChangeIcon,
|
|
520
520
|
f1: false,
|
|
521
521
|
keybinding: {
|
|
@@ -543,7 +543,7 @@ registerAction2(class extends Action2 {
|
|
|
543
543
|
constructor() {
|
|
544
544
|
super({
|
|
545
545
|
id: 'notebook.diff.action.next',
|
|
546
|
-
title: ( localize(
|
|
546
|
+
title: ( localize(8978, "Show Next Change")),
|
|
547
547
|
icon: nextChangeIcon,
|
|
548
548
|
f1: false,
|
|
549
549
|
keybinding: {
|
|
@@ -571,7 +571,7 @@ registerAction2(class extends Action2 {
|
|
|
571
571
|
constructor() {
|
|
572
572
|
super({
|
|
573
573
|
id: 'notebook.diff.inline.toggle',
|
|
574
|
-
title: ( localize(
|
|
574
|
+
title: ( localize(8979, "Toggle Inline View")),
|
|
575
575
|
menu: {
|
|
576
576
|
id: MenuId.EditorTitle,
|
|
577
577
|
group: '1_diff',
|
|
@@ -597,18 +597,18 @@ registerAction2(class extends Action2 {
|
|
|
597
597
|
'notebook.diff.ignoreMetadata': {
|
|
598
598
|
type: 'boolean',
|
|
599
599
|
default: false,
|
|
600
|
-
markdownDescription: ( localize(
|
|
600
|
+
markdownDescription: ( localize(8980, "Hide Metadata Differences"))
|
|
601
601
|
},
|
|
602
602
|
'notebook.diff.ignoreOutputs': {
|
|
603
603
|
type: 'boolean',
|
|
604
604
|
default: false,
|
|
605
|
-
markdownDescription: ( localize(
|
|
605
|
+
markdownDescription: ( localize(8981, "Hide Outputs Differences"))
|
|
606
606
|
},
|
|
607
607
|
'notebook.diff.experimental.toggleInline': {
|
|
608
608
|
type: 'boolean',
|
|
609
609
|
default: typeof product.quality === 'string' && product.quality !== 'stable',
|
|
610
610
|
markdownDescription: ( localize(
|
|
611
|
-
|
|
611
|
+
8982,
|
|
612
612
|
"Enable the command to toggle the experimental notebook inline diff editor."
|
|
613
613
|
))
|
|
614
614
|
},
|