@codingame/monaco-vscode-notebook-service-override 21.6.0 → 22.0.1
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 +23 -24
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.css +5 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/emptyTextEditorHint/emptyTextEditorHint.js +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 +2 -2
- 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/notebookVariables/notebookVariablesView.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/notebookVariables/notebookVariablesView.js +1 -1
- 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 +12 -12
- 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 +69 -69
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityHelp.js +10 -10
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookExtensionPoint.js +37 -37
- package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/outputEditor/notebookOutputEditor.js +4 -4
- 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 +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookLoggingServiceImpl.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookServiceImpl.js +2 -2
- package/vscode/src/vs/workbench/services/workingCopy/common/fileWorkingCopyManager.js +12 -12
- package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopyManager.js +1 -1
|
@@ -58,7 +58,7 @@ registerAction2(class InsertCodeCellAboveAction extends InsertCellCommand {
|
|
|
58
58
|
constructor() {
|
|
59
59
|
super({
|
|
60
60
|
id: INSERT_CODE_CELL_ABOVE_COMMAND_ID,
|
|
61
|
-
title: ( localize(
|
|
61
|
+
title: ( localize(8995, "Insert Code Cell Above")),
|
|
62
62
|
keybinding: {
|
|
63
63
|
primary: KeyMod.CtrlCmd | KeyMod.Shift | KeyCode.Enter,
|
|
64
64
|
when: ( ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, ( InputFocusedContext.toNegated()))),
|
|
@@ -75,7 +75,7 @@ registerAction2(class InsertCodeCellAboveAndFocusContainerAction extends InsertC
|
|
|
75
75
|
constructor() {
|
|
76
76
|
super({
|
|
77
77
|
id: INSERT_CODE_CELL_ABOVE_AND_FOCUS_CONTAINER_COMMAND_ID,
|
|
78
|
-
title: ( localize(
|
|
78
|
+
title: ( localize(8996, "Insert Code Cell Above and Focus Container"))
|
|
79
79
|
}, CellKind.Code, 'above', false);
|
|
80
80
|
}
|
|
81
81
|
});
|
|
@@ -83,7 +83,7 @@ registerAction2(class InsertCodeCellBelowAction extends InsertCellCommand {
|
|
|
83
83
|
constructor() {
|
|
84
84
|
super({
|
|
85
85
|
id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
|
|
86
|
-
title: ( localize(
|
|
86
|
+
title: ( localize(8997, "Insert Code Cell Below")),
|
|
87
87
|
keybinding: {
|
|
88
88
|
primary: KeyMod.CtrlCmd | KeyCode.Enter,
|
|
89
89
|
when: ( ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, ( InputFocusedContext.toNegated()), ( CTX_NOTEBOOK_CHAT_OUTER_FOCUS_POSITION.isEqualTo('')))),
|
|
@@ -100,7 +100,7 @@ registerAction2(class InsertCodeCellBelowAndFocusContainerAction extends InsertC
|
|
|
100
100
|
constructor() {
|
|
101
101
|
super({
|
|
102
102
|
id: INSERT_CODE_CELL_BELOW_AND_FOCUS_CONTAINER_COMMAND_ID,
|
|
103
|
-
title: ( localize(
|
|
103
|
+
title: ( localize(8998, "Insert Code Cell Below and Focus Container")),
|
|
104
104
|
}, CellKind.Code, 'below', false);
|
|
105
105
|
}
|
|
106
106
|
});
|
|
@@ -108,7 +108,7 @@ registerAction2(class InsertMarkdownCellAboveAction extends InsertCellCommand {
|
|
|
108
108
|
constructor() {
|
|
109
109
|
super({
|
|
110
110
|
id: INSERT_MARKDOWN_CELL_ABOVE_COMMAND_ID,
|
|
111
|
-
title: ( localize(
|
|
111
|
+
title: ( localize(8999, "Insert Markdown Cell Above")),
|
|
112
112
|
menu: {
|
|
113
113
|
id: MenuId.NotebookCellInsert,
|
|
114
114
|
order: 2
|
|
@@ -120,7 +120,7 @@ registerAction2(class InsertMarkdownCellBelowAction extends InsertCellCommand {
|
|
|
120
120
|
constructor() {
|
|
121
121
|
super({
|
|
122
122
|
id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
|
|
123
|
-
title: ( localize(
|
|
123
|
+
title: ( localize(9000, "Insert Markdown Cell Below")),
|
|
124
124
|
menu: {
|
|
125
125
|
id: MenuId.NotebookCellInsert,
|
|
126
126
|
order: 3
|
|
@@ -132,7 +132,7 @@ registerAction2(class InsertCodeCellAtTopAction extends NotebookAction {
|
|
|
132
132
|
constructor() {
|
|
133
133
|
super({
|
|
134
134
|
id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
|
|
135
|
-
title: ( localize(
|
|
135
|
+
title: ( localize(9001, "Add Code Cell At Top")),
|
|
136
136
|
f1: false
|
|
137
137
|
});
|
|
138
138
|
}
|
|
@@ -155,7 +155,7 @@ registerAction2(class InsertMarkdownCellAtTopAction extends NotebookAction {
|
|
|
155
155
|
constructor() {
|
|
156
156
|
super({
|
|
157
157
|
id: INSERT_MARKDOWN_CELL_AT_TOP_COMMAND_ID,
|
|
158
|
-
title: ( localize(
|
|
158
|
+
title: ( localize(9002, "Add Markdown Cell At Top")),
|
|
159
159
|
f1: false
|
|
160
160
|
});
|
|
161
161
|
}
|
|
@@ -177,8 +177,8 @@ registerAction2(class InsertMarkdownCellAtTopAction extends NotebookAction {
|
|
|
177
177
|
MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
|
|
178
178
|
command: {
|
|
179
179
|
id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
|
|
180
|
-
title: '$(add) ' + ( localize(
|
|
181
|
-
tooltip: ( localize(
|
|
180
|
+
title: '$(add) ' + ( localize(9003, "Code")),
|
|
181
|
+
tooltip: ( localize(9004, "Add Code Cell"))
|
|
182
182
|
},
|
|
183
183
|
order: 0,
|
|
184
184
|
group: 'inline',
|
|
@@ -187,9 +187,9 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
|
|
|
187
187
|
MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
|
|
188
188
|
command: {
|
|
189
189
|
id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
|
|
190
|
-
title: ( localize(
|
|
190
|
+
title: ( localize(9005, "Add Code")),
|
|
191
191
|
icon: Codicon.add,
|
|
192
|
-
tooltip: ( localize(
|
|
192
|
+
tooltip: ( localize(9004, "Add Code Cell"))
|
|
193
193
|
},
|
|
194
194
|
order: 0,
|
|
195
195
|
group: 'inline',
|
|
@@ -199,8 +199,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
|
|
|
199
199
|
command: {
|
|
200
200
|
id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
|
|
201
201
|
icon: Codicon.add,
|
|
202
|
-
title: ( localize(
|
|
203
|
-
tooltip: ( localize(
|
|
202
|
+
title: ( localize(9006, "Code")),
|
|
203
|
+
tooltip: ( localize(9004, "Add Code Cell"))
|
|
204
204
|
},
|
|
205
205
|
order: -5,
|
|
206
206
|
group: 'navigation/add',
|
|
@@ -209,8 +209,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
|
|
|
209
209
|
MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
|
|
210
210
|
command: {
|
|
211
211
|
id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
|
|
212
|
-
title: '$(add) ' + ( localize(
|
|
213
|
-
tooltip: ( localize(
|
|
212
|
+
title: '$(add) ' + ( localize(9003, "Code")),
|
|
213
|
+
tooltip: ( localize(9004, "Add Code Cell"))
|
|
214
214
|
},
|
|
215
215
|
order: 0,
|
|
216
216
|
group: 'inline',
|
|
@@ -219,9 +219,9 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
|
|
|
219
219
|
MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
|
|
220
220
|
command: {
|
|
221
221
|
id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
|
|
222
|
-
title: ( localize(
|
|
222
|
+
title: ( localize(9007, "Add Code")),
|
|
223
223
|
icon: Codicon.add,
|
|
224
|
-
tooltip: ( localize(
|
|
224
|
+
tooltip: ( localize(9004, "Add Code Cell"))
|
|
225
225
|
},
|
|
226
226
|
order: 0,
|
|
227
227
|
group: 'inline',
|
|
@@ -230,8 +230,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
|
|
|
230
230
|
MenuRegistry.appendMenuItem(MenuId.NotebookCellBetween, {
|
|
231
231
|
command: {
|
|
232
232
|
id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
|
|
233
|
-
title: '$(add) ' + ( localize(
|
|
234
|
-
tooltip: ( localize(
|
|
233
|
+
title: '$(add) ' + ( localize(9008, "Markdown")),
|
|
234
|
+
tooltip: ( localize(9009, "Add Markdown Cell"))
|
|
235
235
|
},
|
|
236
236
|
order: 1,
|
|
237
237
|
group: 'inline',
|
|
@@ -241,8 +241,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
|
|
|
241
241
|
command: {
|
|
242
242
|
id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
|
|
243
243
|
icon: Codicon.add,
|
|
244
|
-
title: ( localize(
|
|
245
|
-
tooltip: ( localize(
|
|
244
|
+
title: ( localize(9010, "Markdown")),
|
|
245
|
+
tooltip: ( localize(9009, "Add Markdown Cell"))
|
|
246
246
|
},
|
|
247
247
|
order: -5,
|
|
248
248
|
group: 'navigation/add',
|
|
@@ -251,8 +251,8 @@ MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
|
|
|
251
251
|
MenuRegistry.appendMenuItem(MenuId.NotebookCellListTop, {
|
|
252
252
|
command: {
|
|
253
253
|
id: INSERT_MARKDOWN_CELL_AT_TOP_COMMAND_ID,
|
|
254
|
-
title: '$(add) ' + ( localize(
|
|
255
|
-
tooltip: ( localize(
|
|
254
|
+
title: '$(add) ' + ( localize(9008, "Markdown")),
|
|
255
|
+
tooltip: ( localize(9009, "Add Markdown Cell"))
|
|
256
256
|
},
|
|
257
257
|
order: 1,
|
|
258
258
|
group: 'inline',
|
|
@@ -23,7 +23,7 @@ registerAction2(class NotebookConfigureLayoutAction extends Action2 {
|
|
|
23
23
|
constructor() {
|
|
24
24
|
super({
|
|
25
25
|
id: 'workbench.notebook.layout.select',
|
|
26
|
-
title: ( localize2(
|
|
26
|
+
title: ( localize2(9011, "Select between Notebook Layouts")),
|
|
27
27
|
f1: true,
|
|
28
28
|
precondition: ( ContextKeyExpr.equals(`config.${NotebookSetting.openGettingStarted}`, true)),
|
|
29
29
|
category: NOTEBOOK_ACTIONS_CATEGORY,
|
|
@@ -51,7 +51,7 @@ registerAction2(class NotebookConfigureLayoutAction extends Action2 {
|
|
|
51
51
|
constructor() {
|
|
52
52
|
super({
|
|
53
53
|
id: 'workbench.notebook.layout.configure',
|
|
54
|
-
title: ( localize2(
|
|
54
|
+
title: ( localize2(9012, "Customize Notebook Layout")),
|
|
55
55
|
f1: true,
|
|
56
56
|
category: NOTEBOOK_ACTIONS_CATEGORY,
|
|
57
57
|
menu: [
|
|
@@ -72,7 +72,7 @@ registerAction2(class NotebookConfigureLayoutFromEditorTitle extends Action2 {
|
|
|
72
72
|
constructor() {
|
|
73
73
|
super({
|
|
74
74
|
id: 'workbench.notebook.layout.configure.editorTitle',
|
|
75
|
-
title: ( localize2(
|
|
75
|
+
title: ( localize2(9012, "Customize Notebook Layout")),
|
|
76
76
|
f1: false,
|
|
77
77
|
category: NOTEBOOK_ACTIONS_CATEGORY,
|
|
78
78
|
menu: [
|
|
@@ -92,7 +92,7 @@ registerAction2(class NotebookConfigureLayoutFromEditorTitle extends Action2 {
|
|
|
92
92
|
MenuRegistry.appendMenuItem(MenuId.EditorTitle, {
|
|
93
93
|
submenu: MenuId.NotebookEditorLayoutConfigure,
|
|
94
94
|
rememberDefaultAction: false,
|
|
95
|
-
title: ( localize2(
|
|
95
|
+
title: ( localize2(9013, "Customize Notebook...")),
|
|
96
96
|
icon: Codicon.gear,
|
|
97
97
|
group: 'navigation',
|
|
98
98
|
order: -1,
|
|
@@ -102,7 +102,7 @@ registerAction2(class ToggleLineNumberFromEditorTitle extends Action2 {
|
|
|
102
102
|
constructor() {
|
|
103
103
|
super({
|
|
104
104
|
id: 'notebook.toggleLineNumbersFromEditorTitle',
|
|
105
|
-
title: ( localize2(
|
|
105
|
+
title: ( localize2(9014, 'Toggle Notebook Line Numbers')),
|
|
106
106
|
precondition: NOTEBOOK_EDITOR_FOCUSED,
|
|
107
107
|
menu: [
|
|
108
108
|
{
|
|
@@ -116,7 +116,7 @@ registerAction2(class ToggleLineNumberFromEditorTitle extends Action2 {
|
|
|
116
116
|
f1: true,
|
|
117
117
|
toggled: {
|
|
118
118
|
condition: ( ContextKeyExpr.notEquals('config.notebook.lineNumbers', 'off')),
|
|
119
|
-
title: ( localize(
|
|
119
|
+
title: ( localize(9015, "Notebook Line Numbers")),
|
|
120
120
|
}
|
|
121
121
|
});
|
|
122
122
|
}
|
|
@@ -128,7 +128,7 @@ registerAction2(class ToggleCellToolbarPositionFromEditorTitle extends Action2 {
|
|
|
128
128
|
constructor() {
|
|
129
129
|
super({
|
|
130
130
|
id: 'notebook.toggleCellToolbarPositionFromEditorTitle',
|
|
131
|
-
title: ( localize2(
|
|
131
|
+
title: ( localize2(9016, 'Toggle Cell Toolbar Position')),
|
|
132
132
|
menu: [{
|
|
133
133
|
id: MenuId.NotebookEditorLayoutConfigure,
|
|
134
134
|
group: 'notebookLayoutDetails',
|
|
@@ -146,7 +146,7 @@ registerAction2(class ToggleBreadcrumbFromEditorTitle extends Action2 {
|
|
|
146
146
|
constructor() {
|
|
147
147
|
super({
|
|
148
148
|
id: 'breadcrumbs.toggleFromEditorTitle',
|
|
149
|
-
title: ( localize2(
|
|
149
|
+
title: ( localize2(9017, 'Toggle Breadcrumbs')),
|
|
150
150
|
menu: [{
|
|
151
151
|
id: MenuId.NotebookEditorLayoutConfigure,
|
|
152
152
|
group: 'notebookLayoutDetails',
|
|
@@ -163,7 +163,7 @@ registerAction2(class SaveMimeTypeDisplayOrder extends Action2 {
|
|
|
163
163
|
constructor() {
|
|
164
164
|
super({
|
|
165
165
|
id: 'notebook.saveMimeTypeOrder',
|
|
166
|
-
title: ( localize2(
|
|
166
|
+
title: ( localize2(9018, "Save Mimetype Display Order")),
|
|
167
167
|
f1: true,
|
|
168
168
|
category: NOTEBOOK_ACTIONS_CATEGORY,
|
|
169
169
|
precondition: NOTEBOOK_IS_ACTIVE_EDITOR,
|
|
@@ -173,10 +173,10 @@ registerAction2(class SaveMimeTypeDisplayOrder extends Action2 {
|
|
|
173
173
|
const service = accessor.get(INotebookService);
|
|
174
174
|
const disposables = ( new DisposableStore());
|
|
175
175
|
const qp = disposables.add(accessor.get(IQuickInputService).createQuickPick());
|
|
176
|
-
qp.placeholder = ( localize(
|
|
176
|
+
qp.placeholder = ( localize(9019, 'Settings file to save in'));
|
|
177
177
|
qp.items = [
|
|
178
|
-
{ target: ConfigurationTarget.USER, label: ( localize(
|
|
179
|
-
{ target: ConfigurationTarget.WORKSPACE, label: ( localize(
|
|
178
|
+
{ target: ConfigurationTarget.USER, label: ( localize(9020, 'User Settings')) },
|
|
179
|
+
{ target: ConfigurationTarget.WORKSPACE, label: ( localize(9021, 'Workspace Settings')) },
|
|
180
180
|
];
|
|
181
181
|
disposables.add(qp.onDidAccept(() => {
|
|
182
182
|
const target = qp.selectedItems[0]?.target;
|
|
@@ -193,7 +193,7 @@ registerAction2(class NotebookWebviewResetAction extends Action2 {
|
|
|
193
193
|
constructor() {
|
|
194
194
|
super({
|
|
195
195
|
id: 'workbench.notebook.layout.webview.reset',
|
|
196
|
-
title: ( localize2(
|
|
196
|
+
title: ( localize2(9022, "Reset Notebook Webview")),
|
|
197
197
|
f1: false,
|
|
198
198
|
category: NOTEBOOK_ACTIONS_CATEGORY
|
|
199
199
|
});
|
|
@@ -224,14 +224,14 @@ registerAction2(class ToggleNotebookStickyScroll extends Action2 {
|
|
|
224
224
|
super({
|
|
225
225
|
id: 'notebook.action.toggleNotebookStickyScroll',
|
|
226
226
|
title: {
|
|
227
|
-
...( localize2(
|
|
228
|
-
mnemonicTitle: ( localize(
|
|
227
|
+
...( localize2(9023, "Toggle Notebook Sticky Scroll")),
|
|
228
|
+
mnemonicTitle: ( localize(9024, "&&Toggle Notebook Sticky Scroll")),
|
|
229
229
|
},
|
|
230
230
|
category: Categories.View,
|
|
231
231
|
toggled: {
|
|
232
232
|
condition: ( ContextKeyExpr.equals('config.notebook.stickyScroll.enabled', true)),
|
|
233
|
-
title: ( localize(
|
|
234
|
-
mnemonicTitle: ( localize(
|
|
233
|
+
title: ( localize(9025, "Toggle Notebook Sticky Scroll")),
|
|
234
|
+
mnemonicTitle: ( localize(9024, "&&Toggle Notebook Sticky Scroll")),
|
|
235
235
|
},
|
|
236
236
|
menu: [
|
|
237
237
|
{ id: MenuId.CommandPalette },
|
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(9026, "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(9027, "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(9028, "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(9029, "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(9030, "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(9031, "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(9032, "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(9033, "Run Cell")),
|
|
20
|
+
mnemonicTitle: ( localize(9034, "&&Run Cell")),
|
|
21
21
|
},
|
|
22
|
-
shortTitle: ( localize(
|
|
22
|
+
shortTitle: ( localize(9033, "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(9035, "Run Cells In Section")),
|
|
47
|
+
mnemonicTitle: ( localize(9036, "&&Run Cells In Section")),
|
|
48
48
|
},
|
|
49
|
-
shortTitle: ( localize(
|
|
49
|
+
shortTitle: ( localize(9035, "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(9037, "Fold Section")),
|
|
109
|
+
mnemonicTitle: ( localize(9038, "&&Fold Section")),
|
|
110
110
|
},
|
|
111
|
-
shortTitle: ( localize(
|
|
111
|
+
shortTitle: ( localize(9037, "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(9039, "Expand Section")),
|
|
142
|
+
mnemonicTitle: ( localize(9040, "&&Expand Section")),
|
|
143
143
|
},
|
|
144
|
-
shortTitle: ( localize(
|
|
144
|
+
shortTitle: ( localize(9039, "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(9041, "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(9053, '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(9054, '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(9055, '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(9056, '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(9057, '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(9058, '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(9059, "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(9060, "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(9061, "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(9062, "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(9063, "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(9061, "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(9064, "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(9065, '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(9066, '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(9067, "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(9068, "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(9069, "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(9070, "Hide Metadata Differences"))
|
|
601
601
|
},
|
|
602
602
|
'notebook.diff.ignoreOutputs': {
|
|
603
603
|
type: 'boolean',
|
|
604
604
|
default: false,
|
|
605
|
-
markdownDescription: ( localize(
|
|
605
|
+
markdownDescription: ( localize(9071, "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
|
+
9072,
|
|
612
612
|
"Enable the command to toggle the experimental notebook inline diff editor."
|
|
613
613
|
))
|
|
614
614
|
},
|