@codingame/monaco-vscode-notebook-service-override 21.3.2 → 21.3.4
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
|
@@ -47,7 +47,7 @@ registerAction2(class EditCellAction extends NotebookCellAction {
|
|
|
47
47
|
constructor() {
|
|
48
48
|
super({
|
|
49
49
|
id: EDIT_CELL_COMMAND_ID,
|
|
50
|
-
title: ( localize(
|
|
50
|
+
title: ( localize(8864, "Edit Cell")),
|
|
51
51
|
keybinding: {
|
|
52
52
|
when: ( ContextKeyExpr.and(
|
|
53
53
|
NOTEBOOK_CELL_LIST_FOCUSED,
|
|
@@ -83,7 +83,7 @@ registerAction2(class QuitEditCellAction extends NotebookCellAction {
|
|
|
83
83
|
constructor() {
|
|
84
84
|
super({
|
|
85
85
|
id: QUIT_EDIT_CELL_COMMAND_ID,
|
|
86
|
-
title: ( localize(
|
|
86
|
+
title: ( localize(8865, "Stop Editing Cell")),
|
|
87
87
|
menu: {
|
|
88
88
|
id: MenuId.NotebookCellTitle,
|
|
89
89
|
when: ( ContextKeyExpr.and(( NOTEBOOK_CELL_TYPE.isEqualTo('markup')), NOTEBOOK_CELL_MARKDOWN_EDIT_MODE, NOTEBOOK_CELL_EDITABLE)),
|
|
@@ -124,7 +124,7 @@ registerAction2(class QuitEditAllCellsAction extends NotebookAction {
|
|
|
124
124
|
constructor() {
|
|
125
125
|
super({
|
|
126
126
|
id: QUIT_EDIT_ALL_CELLS_COMMAND_ID,
|
|
127
|
-
title: ( localize(
|
|
127
|
+
title: ( localize(8866, "Stop Editing All Cells"))
|
|
128
128
|
});
|
|
129
129
|
}
|
|
130
130
|
async runWithContext(accessor, context) {
|
|
@@ -149,7 +149,7 @@ registerAction2(class DeleteCellAction extends NotebookCellAction {
|
|
|
149
149
|
constructor() {
|
|
150
150
|
super({
|
|
151
151
|
id: DELETE_CELL_COMMAND_ID,
|
|
152
|
-
title: ( localize(
|
|
152
|
+
title: ( localize(8867, "Delete Cell")),
|
|
153
153
|
keybinding: {
|
|
154
154
|
primary: KeyCode.Delete,
|
|
155
155
|
mac: {
|
|
@@ -186,13 +186,13 @@ registerAction2(class DeleteCellAction extends NotebookCellAction {
|
|
|
186
186
|
const configService = accessor.get(IConfigurationService);
|
|
187
187
|
if (runState === NotebookCellExecutionState.Executing && configService.getValue(NotebookSetting.confirmDeleteRunningCell)) {
|
|
188
188
|
const dialogService = accessor.get(IDialogService);
|
|
189
|
-
const primaryButton = ( localize(
|
|
189
|
+
const primaryButton = ( localize(8868, "Delete"));
|
|
190
190
|
confirmation = await dialogService.confirm({
|
|
191
191
|
type: 'question',
|
|
192
|
-
message: ( localize(
|
|
192
|
+
message: ( localize(8869, "This cell is running, are you sure you want to delete it?")),
|
|
193
193
|
primaryButton: primaryButton,
|
|
194
194
|
checkbox: {
|
|
195
|
-
label: ( localize(
|
|
195
|
+
label: ( localize(8870, "Do not ask me again"))
|
|
196
196
|
}
|
|
197
197
|
});
|
|
198
198
|
}
|
|
@@ -212,7 +212,7 @@ registerAction2(class ClearCellOutputsAction extends NotebookCellAction {
|
|
|
212
212
|
constructor() {
|
|
213
213
|
super({
|
|
214
214
|
id: CLEAR_CELL_OUTPUTS_COMMAND_ID,
|
|
215
|
-
title: ( localize(
|
|
215
|
+
title: ( localize(8871, 'Clear Cell Outputs')),
|
|
216
216
|
menu: [
|
|
217
217
|
{
|
|
218
218
|
id: MenuId.NotebookCellTitle,
|
|
@@ -276,7 +276,7 @@ registerAction2(class ClearAllCellOutputsAction extends NotebookAction {
|
|
|
276
276
|
constructor() {
|
|
277
277
|
super({
|
|
278
278
|
id: CLEAR_ALL_CELLS_OUTPUTS_COMMAND_ID,
|
|
279
|
-
title: ( localize(
|
|
279
|
+
title: ( localize(8872, 'Clear All Outputs')),
|
|
280
280
|
precondition: NOTEBOOK_HAS_OUTPUTS,
|
|
281
281
|
menu: [
|
|
282
282
|
{
|
|
@@ -333,14 +333,14 @@ registerAction2(class ChangeCellLanguageAction extends NotebookCellAction {
|
|
|
333
333
|
constructor() {
|
|
334
334
|
super({
|
|
335
335
|
id: CHANGE_CELL_LANGUAGE,
|
|
336
|
-
title: ( localize(
|
|
336
|
+
title: ( localize(8873, 'Change Cell Language')),
|
|
337
337
|
keybinding: {
|
|
338
338
|
weight: KeybindingWeight.WorkbenchContrib,
|
|
339
339
|
primary: KeyChord(KeyMod.CtrlCmd | KeyCode.KeyK, KeyCode.KeyM),
|
|
340
340
|
when: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, NOTEBOOK_EDITOR_EDITABLE, NOTEBOOK_CELL_EDITABLE))
|
|
341
341
|
},
|
|
342
342
|
metadata: {
|
|
343
|
-
description: ( localize(
|
|
343
|
+
description: ( localize(8873, 'Change Cell Language')),
|
|
344
344
|
args: [
|
|
345
345
|
{
|
|
346
346
|
name: 'range',
|
|
@@ -413,10 +413,10 @@ registerAction2(class ChangeCellLanguageAction extends NotebookCellAction {
|
|
|
413
413
|
providerLanguages.forEach(languageId => {
|
|
414
414
|
let description;
|
|
415
415
|
if (context.cell.cellKind === CellKind.Markup ? (languageId === 'markdown') : (languageId === context.cell.language)) {
|
|
416
|
-
description = ( localize(
|
|
416
|
+
description = ( localize(8874, "({0}) - Current Language", languageId));
|
|
417
417
|
}
|
|
418
418
|
else {
|
|
419
|
-
description = ( localize(
|
|
419
|
+
description = ( localize(8875, "({0})", languageId));
|
|
420
420
|
}
|
|
421
421
|
const languageName = languageService.getLanguageName(languageId);
|
|
422
422
|
if (!languageName) {
|
|
@@ -439,16 +439,16 @@ registerAction2(class ChangeCellLanguageAction extends NotebookCellAction {
|
|
|
439
439
|
return a.description.localeCompare(b.description);
|
|
440
440
|
});
|
|
441
441
|
const autoDetectMode = {
|
|
442
|
-
label: ( localize(
|
|
442
|
+
label: ( localize(8876, "Auto Detect"))
|
|
443
443
|
};
|
|
444
444
|
const picks = [
|
|
445
445
|
autoDetectMode,
|
|
446
|
-
{ type: 'separator', label: ( localize(
|
|
446
|
+
{ type: 'separator', label: ( localize(8877, "languages (identifier)")) },
|
|
447
447
|
...topItems,
|
|
448
448
|
{ type: 'separator' },
|
|
449
449
|
...mainItems
|
|
450
450
|
];
|
|
451
|
-
const selection = await quickInputService.pick(picks, { placeHolder: ( localize(
|
|
451
|
+
const selection = await quickInputService.pick(picks, { placeHolder: ( localize(8878, "Select Language Mode")) });
|
|
452
452
|
const languageId = selection === autoDetectMode
|
|
453
453
|
? await languageDetectionService.detectLanguage(context.cell.uri)
|
|
454
454
|
: selection?.languageId;
|
|
@@ -481,7 +481,7 @@ registerAction2(class DetectCellLanguageAction extends NotebookCellAction {
|
|
|
481
481
|
constructor() {
|
|
482
482
|
super({
|
|
483
483
|
id: DETECT_CELL_LANGUAGE,
|
|
484
|
-
title: ( localize2(
|
|
484
|
+
title: ( localize2(8879, "Accept Detected Language for Cell")),
|
|
485
485
|
f1: true,
|
|
486
486
|
precondition: ( ContextKeyExpr.and(NOTEBOOK_EDITOR_EDITABLE, NOTEBOOK_CELL_EDITABLE)),
|
|
487
487
|
keybinding: { primary: KeyCode.KeyD | KeyMod.Alt | KeyMod.Shift, weight: KeybindingWeight.WorkbenchContrib }
|
|
@@ -499,7 +499,7 @@ registerAction2(class DetectCellLanguageAction extends NotebookCellAction {
|
|
|
499
499
|
setCellToLanguage(detection, context);
|
|
500
500
|
}
|
|
501
501
|
else {
|
|
502
|
-
notificationService.warn(( localize(
|
|
502
|
+
notificationService.warn(( localize(8880, "Unable to detect cell language")));
|
|
503
503
|
}
|
|
504
504
|
}
|
|
505
505
|
});
|
|
@@ -524,7 +524,7 @@ registerAction2(class SelectNotebookIndentation extends NotebookAction {
|
|
|
524
524
|
constructor() {
|
|
525
525
|
super({
|
|
526
526
|
id: SELECT_NOTEBOOK_INDENTATION_ID,
|
|
527
|
-
title: ( localize2(
|
|
527
|
+
title: ( localize2(8881, 'Select Indentation')),
|
|
528
528
|
f1: true,
|
|
529
529
|
precondition: ( ContextKeyExpr.and(
|
|
530
530
|
NOTEBOOK_IS_ACTIVE_EDITOR,
|
|
@@ -542,10 +542,10 @@ registerAction2(class SelectNotebookIndentation extends NotebookAction {
|
|
|
542
542
|
const instantiationService = accessor.get(IInstantiationService);
|
|
543
543
|
const activeNotebook = getNotebookEditorFromEditorPane(editorService.activeEditorPane);
|
|
544
544
|
if (!activeNotebook || activeNotebook.isDisposed) {
|
|
545
|
-
return quickInputService.pick([{ label: ( localize(
|
|
545
|
+
return quickInputService.pick([{ label: ( localize(8882, "No notebook editor active at this time")) }]);
|
|
546
546
|
}
|
|
547
547
|
if (activeNotebook.isReadOnly) {
|
|
548
|
-
return quickInputService.pick([{ label: ( localize(
|
|
548
|
+
return quickInputService.pick([{ label: ( localize(8883, "The active notebook editor is read-only.")) }]);
|
|
549
549
|
}
|
|
550
550
|
const picks = ( [
|
|
551
551
|
(
|
|
@@ -567,9 +567,9 @@ registerAction2(class SelectNotebookIndentation extends NotebookAction {
|
|
|
567
567
|
}
|
|
568
568
|
};
|
|
569
569
|
}));
|
|
570
|
-
picks.splice(3, 0, { type: 'separator', label: ( localize(
|
|
571
|
-
picks.unshift({ type: 'separator', label: ( localize(
|
|
572
|
-
const action = await quickInputService.pick(picks, { placeHolder: ( localize(
|
|
570
|
+
picks.splice(3, 0, { type: 'separator', label: ( localize(8884, "convert file")) });
|
|
571
|
+
picks.unshift({ type: 'separator', label: ( localize(8885, "change view")) });
|
|
572
|
+
const action = await quickInputService.pick(picks, { placeHolder: ( localize(8886, "Select Action")), matchOnDetail: true });
|
|
573
573
|
if (!action) {
|
|
574
574
|
return;
|
|
575
575
|
}
|
|
@@ -582,7 +582,7 @@ registerAction2(class CommentSelectedCellsAction extends NotebookMultiCellAction
|
|
|
582
582
|
constructor() {
|
|
583
583
|
super({
|
|
584
584
|
id: COMMENT_SELECTED_CELLS_ID,
|
|
585
|
-
title: ( localize(
|
|
585
|
+
title: ( localize(8887, "Comment Selected Cells")),
|
|
586
586
|
keybinding: {
|
|
587
587
|
when: ( ContextKeyExpr.and(
|
|
588
588
|
NOTEBOOK_EDITOR_FOCUSED,
|
|
@@ -134,7 +134,7 @@ registerAction2(class RenderAllMarkdownCellsAction extends NotebookAction {
|
|
|
134
134
|
constructor() {
|
|
135
135
|
super({
|
|
136
136
|
id: RENDER_ALL_MARKDOWN_CELLS,
|
|
137
|
-
title: ( localize(
|
|
137
|
+
title: ( localize(8888, "Render All Markdown Cells")),
|
|
138
138
|
});
|
|
139
139
|
}
|
|
140
140
|
async runWithContext(accessor, context) {
|
|
@@ -145,10 +145,10 @@ registerAction2(class ExecuteNotebookAction extends NotebookAction {
|
|
|
145
145
|
constructor() {
|
|
146
146
|
super({
|
|
147
147
|
id: EXECUTE_NOTEBOOK_COMMAND_ID,
|
|
148
|
-
title: ( localize(
|
|
148
|
+
title: ( localize(8889, "Run All")),
|
|
149
149
|
icon: executeAllIcon,
|
|
150
150
|
metadata: {
|
|
151
|
-
description: ( localize(
|
|
151
|
+
description: ( localize(8889, "Run All")),
|
|
152
152
|
args: [
|
|
153
153
|
{
|
|
154
154
|
name: 'uri',
|
|
@@ -196,7 +196,7 @@ registerAction2(class ExecuteCell extends NotebookMultiCellAction {
|
|
|
196
196
|
super({
|
|
197
197
|
id: EXECUTE_CELL_COMMAND_ID,
|
|
198
198
|
precondition: executeThisCellCondition,
|
|
199
|
-
title: ( localize(
|
|
199
|
+
title: ( localize(8890, "Execute Cell")),
|
|
200
200
|
keybinding: {
|
|
201
201
|
when: NOTEBOOK_CELL_LIST_FOCUSED,
|
|
202
202
|
primary: KeyMod.WinCtrl | KeyCode.Enter,
|
|
@@ -211,7 +211,7 @@ registerAction2(class ExecuteCell extends NotebookMultiCellAction {
|
|
|
211
211
|
group: 'inline'
|
|
212
212
|
},
|
|
213
213
|
metadata: {
|
|
214
|
-
description: ( localize(
|
|
214
|
+
description: ( localize(8890, "Execute Cell")),
|
|
215
215
|
args: cellExecutionArgs
|
|
216
216
|
},
|
|
217
217
|
icon: executeIcon
|
|
@@ -246,7 +246,7 @@ registerAction2(class ExecuteAboveCells extends NotebookMultiCellAction {
|
|
|
246
246
|
super({
|
|
247
247
|
id: EXECUTE_CELLS_ABOVE,
|
|
248
248
|
precondition: executeCondition,
|
|
249
|
-
title: ( localize(
|
|
249
|
+
title: ( localize(8891, "Execute Above Cells")),
|
|
250
250
|
menu: [
|
|
251
251
|
{
|
|
252
252
|
id: MenuId.NotebookCellExecute,
|
|
@@ -286,7 +286,7 @@ registerAction2(class ExecuteCellAndBelow extends NotebookMultiCellAction {
|
|
|
286
286
|
super({
|
|
287
287
|
id: EXECUTE_CELL_AND_BELOW,
|
|
288
288
|
precondition: executeCondition,
|
|
289
|
-
title: ( localize(
|
|
289
|
+
title: ( localize(8892, "Execute Cell and Below")),
|
|
290
290
|
menu: [
|
|
291
291
|
{
|
|
292
292
|
id: MenuId.NotebookCellExecute,
|
|
@@ -326,9 +326,9 @@ registerAction2(class ExecuteCellFocusContainer extends NotebookMultiCellAction
|
|
|
326
326
|
super({
|
|
327
327
|
id: EXECUTE_CELL_FOCUS_CONTAINER_COMMAND_ID,
|
|
328
328
|
precondition: executeThisCellCondition,
|
|
329
|
-
title: ( localize(
|
|
329
|
+
title: ( localize(8893, "Execute Cell and Focus Container")),
|
|
330
330
|
metadata: {
|
|
331
|
-
description: ( localize(
|
|
331
|
+
description: ( localize(8893, "Execute Cell and Focus Container")),
|
|
332
332
|
args: cellExecutionArgs
|
|
333
333
|
},
|
|
334
334
|
icon: executeIcon
|
|
@@ -358,7 +358,7 @@ registerAction2(class CancelExecuteCell extends NotebookMultiCellAction {
|
|
|
358
358
|
super({
|
|
359
359
|
id: CANCEL_CELL_COMMAND_ID,
|
|
360
360
|
precondition: cellCancelCondition,
|
|
361
|
-
title: ( localize(
|
|
361
|
+
title: ( localize(8894, "Stop Cell Execution")),
|
|
362
362
|
icon: stopIcon,
|
|
363
363
|
menu: {
|
|
364
364
|
id: MenuId.NotebookCellExecutePrimary,
|
|
@@ -366,7 +366,7 @@ registerAction2(class CancelExecuteCell extends NotebookMultiCellAction {
|
|
|
366
366
|
group: 'inline'
|
|
367
367
|
},
|
|
368
368
|
metadata: {
|
|
369
|
-
description: ( localize(
|
|
369
|
+
description: ( localize(8894, "Stop Cell Execution")),
|
|
370
370
|
args: [
|
|
371
371
|
{
|
|
372
372
|
name: 'options',
|
|
@@ -421,7 +421,7 @@ registerAction2(class ExecuteCellSelectBelow extends NotebookCellAction {
|
|
|
421
421
|
super({
|
|
422
422
|
id: EXECUTE_CELL_SELECT_BELOW,
|
|
423
423
|
precondition: ( ContextKeyExpr.or(executeThisCellCondition, ( NOTEBOOK_CELL_TYPE.isEqualTo('markup')))),
|
|
424
|
-
title: ( localize(
|
|
424
|
+
title: ( localize(8895, "Execute Notebook Cell and Select Below")),
|
|
425
425
|
keybinding: {
|
|
426
426
|
when: ( ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, ( CTX_INLINE_CHAT_FOCUSED.negate()))),
|
|
427
427
|
primary: KeyMod.Shift | KeyCode.Enter,
|
|
@@ -482,7 +482,7 @@ registerAction2(class ExecuteCellInsertBelow extends NotebookCellAction {
|
|
|
482
482
|
super({
|
|
483
483
|
id: EXECUTE_CELL_INSERT_BELOW,
|
|
484
484
|
precondition: ( ContextKeyExpr.or(executeThisCellCondition, ( NOTEBOOK_CELL_TYPE.isEqualTo('markup')))),
|
|
485
|
-
title: ( localize(
|
|
485
|
+
title: ( localize(8896, "Execute Notebook Cell and Insert Below")),
|
|
486
486
|
keybinding: {
|
|
487
487
|
when: NOTEBOOK_CELL_LIST_FOCUSED,
|
|
488
488
|
primary: KeyMod.Alt | KeyCode.Enter,
|
|
@@ -520,7 +520,7 @@ registerAction2(class CancelAllNotebook extends CancelNotebook {
|
|
|
520
520
|
constructor() {
|
|
521
521
|
super({
|
|
522
522
|
id: CANCEL_NOTEBOOK_COMMAND_ID,
|
|
523
|
-
title: ( localize2(
|
|
523
|
+
title: ( localize2(8897, "Stop Execution")),
|
|
524
524
|
icon: stopIcon,
|
|
525
525
|
menu: [
|
|
526
526
|
{
|
|
@@ -543,7 +543,7 @@ registerAction2(class InterruptNotebook extends CancelNotebook {
|
|
|
543
543
|
constructor() {
|
|
544
544
|
super({
|
|
545
545
|
id: INTERRUPT_NOTEBOOK_COMMAND_ID,
|
|
546
|
-
title: ( localize2(
|
|
546
|
+
title: ( localize2(8898, "Interrupt")),
|
|
547
547
|
precondition: ( ContextKeyExpr.and(NOTEBOOK_HAS_SOMETHING_RUNNING, NOTEBOOK_INTERRUPTIBLE_KERNEL)),
|
|
548
548
|
icon: stopIcon,
|
|
549
549
|
menu: [
|
|
@@ -577,7 +577,7 @@ registerAction2(class InterruptNotebook extends CancelNotebook {
|
|
|
577
577
|
}
|
|
578
578
|
});
|
|
579
579
|
MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
|
|
580
|
-
title: ( localize(
|
|
580
|
+
title: ( localize(8899, "Go To")),
|
|
581
581
|
submenu: MenuId.NotebookCellExecuteGoTo,
|
|
582
582
|
group: 'navigation/execute',
|
|
583
583
|
order: 20,
|
|
@@ -587,9 +587,9 @@ registerAction2(class RevealRunningCellAction extends NotebookAction {
|
|
|
587
587
|
constructor() {
|
|
588
588
|
super({
|
|
589
589
|
id: REVEAL_RUNNING_CELL,
|
|
590
|
-
title: ( localize(
|
|
591
|
-
tooltip: ( localize(
|
|
592
|
-
shortTitle: ( localize(
|
|
590
|
+
title: ( localize(8900, "Go to Running Cell")),
|
|
591
|
+
tooltip: ( localize(8900, "Go to Running Cell")),
|
|
592
|
+
shortTitle: ( localize(8900, "Go to Running Cell")),
|
|
593
593
|
precondition: NOTEBOOK_HAS_RUNNING_CELL,
|
|
594
594
|
menu: [
|
|
595
595
|
{
|
|
@@ -647,9 +647,9 @@ registerAction2(class RevealLastFailedCellAction extends NotebookAction {
|
|
|
647
647
|
constructor() {
|
|
648
648
|
super({
|
|
649
649
|
id: REVEAL_LAST_FAILED_CELL,
|
|
650
|
-
title: ( localize(
|
|
651
|
-
tooltip: ( localize(
|
|
652
|
-
shortTitle: ( localize(
|
|
650
|
+
title: ( localize(8901, "Go to Most Recently Failed Cell")),
|
|
651
|
+
tooltip: ( localize(8901, "Go to Most Recently Failed Cell")),
|
|
652
|
+
shortTitle: ( localize(8902, "Go to Most Recently Failed Cell")),
|
|
653
653
|
precondition: NOTEBOOK_LAST_CELL_FAILED,
|
|
654
654
|
menu: [
|
|
655
655
|
{
|
|
@@ -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(8905, "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(8906, "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(8907, "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(8908, "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(8909, "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(8910, "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(8911, "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(8912, "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(8913, "Code")),
|
|
181
|
+
tooltip: ( localize(8914, "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(8915, "Add Code")),
|
|
191
191
|
icon: Codicon.add,
|
|
192
|
-
tooltip: ( localize(
|
|
192
|
+
tooltip: ( localize(8914, "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(8916, "Code")),
|
|
203
|
+
tooltip: ( localize(8914, "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(8913, "Code")),
|
|
213
|
+
tooltip: ( localize(8914, "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(8917, "Add Code")),
|
|
223
223
|
icon: Codicon.add,
|
|
224
|
-
tooltip: ( localize(
|
|
224
|
+
tooltip: ( localize(8914, "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(8918, "Markdown")),
|
|
234
|
+
tooltip: ( localize(8919, "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(8920, "Markdown")),
|
|
245
|
+
tooltip: ( localize(8919, "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(8918, "Markdown")),
|
|
255
|
+
tooltip: ( localize(8919, "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(8921, "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(8922, "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(8922, "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(8923, "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(8924, '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(8925, "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(8926, '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(8927, '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(8928, "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(8929, '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(8930, 'User Settings')) },
|
|
179
|
+
{ target: ConfigurationTarget.WORKSPACE, label: ( localize(8931, '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(8932, "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(8933, "Toggle Notebook Sticky Scroll")),
|
|
228
|
+
mnemonicTitle: ( localize(8934, "&&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(8935, "Toggle Notebook Sticky Scroll")),
|
|
234
|
+
mnemonicTitle: ( localize(8934, "&&Toggle Notebook Sticky Scroll")),
|
|
235
235
|
},
|
|
236
236
|
menu: [
|
|
237
237
|
{ id: MenuId.CommandPalette },
|