New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@codingame/monaco-vscode-notebook-service-override

Package Overview
Dependencies
Maintainers
0
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codingame/monaco-vscode-notebook-service-override - npm Package Compare versions

Comparing version 10.1.2 to 10.1.3

6

package.json
{
"name": "@codingame/monaco-vscode-notebook-service-override",
"version": "10.1.2",
"version": "10.1.3",
"keywords": [],

@@ -12,3 +12,3 @@ "author": {

"type": "git",
"url": "git@github.com:CodinGame/monaco-vscode-api.git"
"url": "git+ssh://git@github.com/CodinGame/monaco-vscode-api.git"
},

@@ -33,5 +33,5 @@ "type": "module",

"dependencies": {
"vscode": "npm:@codingame/monaco-vscode-api@10.1.2",
"vscode": "npm:@codingame/monaco-vscode-api@10.1.3",
"marked": "~14.0.0"
}
}

@@ -197,4 +197,4 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

id: 'workench.action.disableEmptyEditorHint',
label: ( localize(10857, "Disable Empty Editor Hint")),
tooltip: ( localize(10857, "Disable Empty Editor Hint")),
label: ( localize(10900, "Disable Empty Editor Hint")),
tooltip: ( localize(10900, "Disable Empty Editor Hint")),
enabled: true,

@@ -237,3 +237,3 @@ class: undefined,

const actionPart = ( localize(
10858,
10901,
'Press {0} to ask {1} to do something. ',

@@ -269,3 +269,3 @@ keybindingHintLabel,

hintElement.appendChild(after);
const typeToDismiss = ( localize(10859, 'Start typing to dismiss.'));
const typeToDismiss = ( localize(10902, 'Start typing to dismiss.'));
const textHint2 = $('span', undefined, typeToDismiss);

@@ -278,3 +278,3 @@ textHint2.style.fontStyle = 'italic';

const hintMsg = ( localize(
10860,
10903,
'[[Ask {0} to do something]] or start typing to dismiss.',

@@ -339,3 +339,3 @@ providerName

const hintMsg = ( localize(
10861,
10904,
'[[Select a language]], or [[fill with template]], or [[open a different editor]] to get started.\nStart typing to dismiss or [[don\'t show]] this again.'

@@ -351,3 +351,3 @@ ));

const ariaLabel = ( localize(
10862,
10905,
'Execute {0} to select a language, execute {1} to fill with template, or execute {2} to open a different editor and get started. Start typing to dismiss.',

@@ -373,3 +373,3 @@ ...keybindingLabels

this.ariaLabel = ariaLabel.concat(( localize(
10863,
10906,
' Toggle {0} in settings to disable this hint.',

@@ -376,0 +376,0 @@ "accessibility.verbosity.emptyEditorHint"

@@ -27,3 +27,3 @@ import { KeyChord } from 'vscode/vscode/vs/base/common/keyCodes';

id: MOVE_CELL_UP_COMMAND_ID,
title: ( localize2(8086, "Move Cell Up")),
title: ( localize2(8342, "Move Cell Up")),
icon: moveUpIcon,

@@ -51,3 +51,3 @@ keybinding: {

id: MOVE_CELL_DOWN_COMMAND_ID,
title: ( localize2(8087, "Move Cell Down")),
title: ( localize2(8343, "Move Cell Down")),
icon: moveDownIcon,

@@ -75,3 +75,3 @@ keybinding: {

id: COPY_CELL_UP_COMMAND_ID,
title: ( localize2(8088, "Copy Cell Up")),
title: ( localize2(8344, "Copy Cell Up")),
keybinding: {

@@ -92,3 +92,3 @@ primary: 512 | 1024 | 16 ,

id: COPY_CELL_DOWN_COMMAND_ID,
title: ( localize2(8089, "Copy Cell Down")),
title: ( localize2(8345, "Copy Cell Down")),
keybinding: {

@@ -119,3 +119,3 @@ primary: 512 | 1024 | 18 ,

id: SPLIT_CELL_COMMAND_ID,
title: ( localize2(8090, "Split Cell")),
title: ( localize2(8346, "Split Cell")),
menu: {

@@ -190,3 +190,3 @@ id: MenuId.NotebookCellTitle,

id: JOIN_CELL_ABOVE_COMMAND_ID,
title: ( localize2(8091, "Join With Previous Cell")),
title: ( localize2(8347, "Join With Previous Cell")),
keybinding: {

@@ -214,3 +214,3 @@ when: NOTEBOOK_EDITOR_FOCUSED,

id: JOIN_CELL_BELOW_COMMAND_ID,
title: ( localize2(8092, "Join With Next Cell")),
title: ( localize2(8348, "Join With Next Cell")),
keybinding: {

@@ -238,3 +238,3 @@ when: NOTEBOOK_EDITOR_FOCUSED,

id: JOIN_SELECTED_CELLS_COMMAND_ID,
title: ( localize2(8093, "Join Selected Cells")),
title: ( localize2(8349, "Join Selected Cells")),
menu: {

@@ -260,3 +260,3 @@ id: MenuId.NotebookCellTitle,

id: CHANGE_CELL_TO_CODE_COMMAND_ID,
title: ( localize2(8094, "Change Cell to Code")),
title: ( localize2(8350, "Change Cell to Code")),
keybinding: {

@@ -295,3 +295,3 @@ when: ( (ContextKeyExpr.and(

id: CHANGE_CELL_TO_MARKDOWN_COMMAND_ID,
title: ( localize2(8095, "Change Cell to Markdown")),
title: ( localize2(8351, "Change Cell to Markdown")),
keybinding: {

@@ -338,3 +338,3 @@ when: ( (ContextKeyExpr.and(

id: COLLAPSE_CELL_INPUT_COMMAND_ID,
title: ( localize2(8096, "Collapse Cell Input")),
title: ( localize2(8352, "Collapse Cell Input")),
keybinding: {

@@ -367,3 +367,3 @@ when: ( (ContextKeyExpr.and(

id: EXPAND_CELL_INPUT_COMMAND_ID,
title: ( localize2(8097, "Expand Cell Input")),
title: ( localize2(8353, "Expand Cell Input")),
keybinding: {

@@ -392,3 +392,3 @@ when: ( (ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, NOTEBOOK_CELL_INPUT_COLLAPSED))),

id: COLLAPSE_CELL_OUTPUT_COMMAND_ID,
title: ( localize2(8098, "Collapse Cell Output")),
title: ( localize2(8354, "Collapse Cell Output")),
keybinding: {

@@ -419,3 +419,3 @@ when: ( (ContextKeyExpr.and(

id: EXPAND_CELL_OUTPUT_COMMAND_ID,
title: ( localize2(8099, "Expand Cell Output")),
title: ( localize2(8355, "Expand Cell Output")),
keybinding: {

@@ -442,5 +442,5 @@ when: ( (ContextKeyExpr.and(NOTEBOOK_CELL_LIST_FOCUSED, NOTEBOOK_CELL_OUTPUT_COLLAPSED))),

precondition: NOTEBOOK_CELL_LIST_FOCUSED,
title: ( localize2(8100, "Toggle Outputs")),
title: ( localize2(8356, "Toggle Outputs")),
metadata: {
description: ( localize(8100, "Toggle Outputs")),
description: ( localize(8356, "Toggle Outputs")),
args: cellExecutionArgs

@@ -470,3 +470,3 @@ }

id: COLLAPSE_ALL_CELL_INPUTS_COMMAND_ID,
title: ( localize2(8101, "Collapse All Cell Inputs")),
title: ( localize2(8357, "Collapse All Cell Inputs")),
f1: true,

@@ -483,3 +483,3 @@ });

id: EXPAND_ALL_CELL_INPUTS_COMMAND_ID,
title: ( localize2(8102, "Expand All Cell Inputs")),
title: ( localize2(8358, "Expand All Cell Inputs")),
f1: true

@@ -496,3 +496,3 @@ });

id: COLLAPSE_ALL_CELL_OUTPUTS_COMMAND_ID,
title: ( localize2(8103, "Collapse All Cell Outputs")),
title: ( localize2(8359, "Collapse All Cell Outputs")),
f1: true,

@@ -509,3 +509,3 @@ });

id: EXPAND_ALL_CELL_OUTPUTS_COMMAND_ID,
title: ( localize2(8104, "Expand All Cell Outputs")),
title: ( localize2(8360, "Expand All Cell Outputs")),
f1: true

@@ -522,3 +522,3 @@ });

id: TOGGLE_CELL_OUTPUT_SCROLLING,
title: ( localize2(8105, "Toggle Scroll Cell Output")),
title: ( localize2(8361, "Toggle Scroll Cell Output")),
keybinding: {

@@ -525,0 +525,0 @@ when: ( (ContextKeyExpr.and(

@@ -16,3 +16,3 @@ import { Range } from 'vscode/vscode/vs/editor/common/core/range';

id: OPEN_CELL_FAILURE_ACTIONS_COMMAND_ID,
title: ( localize2(10864, "Show Cell Failure Actions")),
title: ( localize2(10907, "Show Cell Failure Actions")),
precondition: ( (ContextKeyExpr.and(

@@ -49,3 +49,3 @@ NOTEBOOK_CELL_FOCUSED,

const controller = CodeActionController.get(editor);
controller?.manualTriggerAtCurrentPosition(( localize(10865, "No code actions available")), CodeActionTriggerSource.Default, { include: CodeActionKind.QuickFix });
controller?.manualTriggerAtCurrentPosition(( localize(10908, "No code actions available")), CodeActionTriggerSource.Default, { include: CodeActionKind.QuickFix });
}

@@ -52,0 +52,0 @@ }

@@ -43,3 +43,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

const keybinding = this.keybindingService.lookupKeybinding(OPEN_CELL_FAILURE_ACTIONS_COMMAND_ID)?.getLabel();
const tooltip = ( localize(10866, "Quick Actions {0}", `(${keybinding})`));
const tooltip = ( localize(10909, "Quick Actions {0}", `(${keybinding})`));
item = {

@@ -46,0 +46,0 @@ text: `$(sparkle)`,

@@ -42,3 +42,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

const searchTooltip = ( localize(
8068,
8324,
"Unknown cell language. Click to search for '{0}' extensions",

@@ -59,3 +59,3 @@ cell.language

command: CHANGE_CELL_LANGUAGE,
tooltip: ( localize(8069, "Select Cell Language Mode")),
tooltip: ( localize(8325, "Select Cell Language Mode")),
alignment: 2 ,

@@ -124,3 +124,3 @@ priority: -Number.MAX_SAFE_INTEGER

const detectedName = this._languageService.getLanguageName(cached.guess) || cached.guess;
let tooltip = ( localize(8070, "Accept Detected Language: {0}", detectedName));
let tooltip = ( localize(8326, "Accept Detected Language: {0}", detectedName));
const keybinding = this._keybindingService.lookupKeybinding(DETECT_CELL_LANGUAGE);

@@ -127,0 +127,0 @@ const label = keybinding?.getLabel();

@@ -350,3 +350,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

id: COPY_CELL_COMMAND_ID,
title: ( localize(8021, "Copy Cell")),
title: ( localize(8277, "Copy Cell")),
menu: {

@@ -374,3 +374,3 @@ id: MenuId.NotebookCellTitle,

id: CUT_CELL_COMMAND_ID,
title: ( localize(8022, "Cut Cell")),
title: ( localize(8278, "Cut Cell")),
menu: {

@@ -398,3 +398,3 @@ id: MenuId.NotebookCellTitle,

id: PASTE_CELL_COMMAND_ID,
title: ( localize(8023, "Paste Cell")),
title: ( localize(8279, "Paste Cell")),
menu: {

@@ -431,3 +431,3 @@ id: MenuId.NotebookCellTitle,

id: PASTE_CELL_ABOVE_COMMAND_ID,
title: ( localize(8024, "Paste Cell Above")),
title: ( localize(8280, "Paste Cell Above")),
keybinding: {

@@ -476,3 +476,3 @@ when: ( (ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, ContextKeyExpr.not(InputFocusedContextKey)))),

id: 'workbench.action.toggleNotebookClipboardLog',
title: ( localize2(8025, 'Toggle Notebook Clipboard Troubleshooting')),
title: ( localize2(8281, 'Toggle Notebook Clipboard Troubleshooting')),
category: Categories.Developer,

@@ -494,3 +494,3 @@ f1: true

id: 'notebook.cell.output.selectAll',
title: ( localize(8026, "Select All")),
title: ( localize(8282, "Select All")),
keybinding: {

@@ -497,0 +497,0 @@ primary: 2048 | 31 ,

@@ -112,6 +112,6 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

this._kernelInfoElement.add(this._statusbarService.addEntry({
name: ( localize(8077, "Notebook Kernel Info")),
name: ( localize(8333, "Notebook Kernel Info")),
text: `$(notebook-kernel-select) ${kernel.label}`,
ariaLabel: kernel.label,
tooltip: isSuggested ? ( localize(8078, "{0} (suggestion)", tooltip)) : tooltip,
tooltip: isSuggested ? ( localize(8334, "{0} (suggestion)", tooltip)) : tooltip,
command: SELECT_KERNEL_ID,

@@ -123,5 +123,5 @@ }, SELECT_KERNEL_ID, 1 , 10));

this._kernelInfoElement.add(this._statusbarService.addEntry({
name: ( localize(8079, "Notebook Kernel Selection")),
text: ( localize(8080, "Select Kernel")),
ariaLabel: ( localize(8080, "Select Kernel")),
name: ( localize(8335, "Notebook Kernel Selection")),
text: ( localize(8336, "Select Kernel")),
ariaLabel: ( localize(8336, "Select Kernel")),
command: SELECT_KERNEL_ID,

@@ -171,3 +171,3 @@ kind: 'prominent'

const entry = {
name: ( localize(8081, "Notebook Editor Selections")),
name: ( localize(8337, "Notebook Editor Selections")),
text: newText,

@@ -196,4 +196,4 @@ ariaLabel: newText,

return numSelected > 1 ?
( localize(8082, "Cell {0} ({1} selected)", idxFocused, numSelected)) :
( localize(8083, "Cell {0} of {1}", idxFocused, totalCells));
( localize(8338, "Cell {0} ({1} selected)", idxFocused, numSelected)) :
( localize(8339, "Cell {0} of {1}", idxFocused, totalCells));
}

@@ -257,6 +257,6 @@ };

const entry = {
name: ( localize(8084, "Notebook Indentation")),
name: ( localize(8340, "Notebook Indentation")),
text: newText,
ariaLabel: newText,
tooltip: ( localize(8085, "Select Indentation")),
tooltip: ( localize(8341, "Select Indentation")),
command: SELECT_NOTEBOOK_INDENTATION_ID

@@ -263,0 +263,0 @@ };

@@ -23,3 +23,3 @@ import './media/notebookFind.css.js';

id: 'notebook.hideFind',
title: ( localize2(8027, 'Hide Find in Notebook')),
title: ( localize2(8283, 'Hide Find in Notebook')),
keybinding: {

@@ -47,3 +47,3 @@ when: ( (ContextKeyExpr.and(NOTEBOOK_EDITOR_FOCUSED, KEYBINDING_CONTEXT_NOTEBOOK_FIND_WIDGET_FOCUSED))),

id: 'notebook.find',
title: ( localize2(8028, 'Find in Notebook')),
title: ( localize2(8284, 'Find in Notebook')),
keybinding: {

@@ -50,0 +50,0 @@ when: ( (ContextKeyExpr.and(

@@ -32,3 +32,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

id: 'notebook.format',
title: ( localize2(8029, 'Format Notebook')),
title: ( localize2(8285, 'Format Notebook')),
category: NOTEBOOK_ACTIONS_CATEGORY,

@@ -84,3 +84,3 @@ precondition: ( (ContextKeyExpr.and(NOTEBOOK_IS_ACTIVE_EDITOR, NOTEBOOK_EDITOR_EDITABLE))),

}))));
await bulkEditService.apply( allCellEdits.flat(), { label: ( localize(8030, "Format Notebook")), code: 'undoredo.formatNotebook', });
await bulkEditService.apply( allCellEdits.flat(), { label: ( localize(8286, "Format Notebook")), code: 'undoredo.formatNotebook', });
}

@@ -97,3 +97,3 @@ }

id: 'notebook.formatCell',
label: ( localize(8031, "Format Cell")),
label: ( localize(8287, "Format Cell")),
alias: 'Format Cell',

@@ -170,3 +170,3 @@ precondition: ( (ContextKeyExpr.and(

}))));
await this.bulkEditService.apply( allCellEdits.flat(), { label: ( localize(8032, "Format Cells")), code: 'undoredo.notebooks.onWillExecuteFormat', });
await this.bulkEditService.apply( allCellEdits.flat(), { label: ( localize(8288, "Format Cells")), code: 'undoredo.notebooks.onWillExecuteFormat', });
}

@@ -173,0 +173,0 @@ finally {

@@ -66,3 +66,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

id: 'workbench.notebook.layout.gettingStarted',
title: ( localize2(8043, "Reset notebook getting started")),
title: ( localize2(8299, "Reset notebook getting started")),
f1: true,

@@ -69,0 +69,0 @@ precondition: ( (ContextKeyExpr.equals(`config.${NotebookSetting.openGettingStarted}`, true))),

@@ -12,3 +12,3 @@ import { localize2 } from 'vscode/vscode/vs/nls';

id: TOGGLE_CELL_TOOLBAR_POSITION,
title: ( localize2(8044, 'Toggle Cell Toolbar Position')),
title: ( localize2(8300, 'Toggle Cell Toolbar Position')),
menu: [{

@@ -15,0 +15,0 @@ id: MenuId.NotebookCellTitle,

@@ -679,3 +679,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

id: NOTEBOOK_ADD_FIND_MATCH_TO_SELECTION_ID,
title: ( localize(8109, "Add Find Match to Selection")),
title: ( localize(8365, "Add Find Match to Selection")),
precondition: ( (ContextKeyExpr.and(

@@ -714,3 +714,3 @@ (ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)),

id: 'noteMultiCursor.exit',
title: ( localize(8110, "Exit Multi Cursor Mode")),
title: ( localize(8366, "Exit Multi Cursor Mode")),
precondition: ( (ContextKeyExpr.and(

@@ -746,3 +746,3 @@ (ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)),

id: 'noteMultiCursor.deleteLeft',
title: ( localize(8111, "Delete Left")),
title: ( localize(8367, "Delete Left")),
precondition: ( (ContextKeyExpr.and(

@@ -786,3 +786,3 @@ (ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)),

id: 'noteMultiCursor.deleteRight',
title: ( localize(8112, "Delete Right")),
title: ( localize(8368, "Delete Right")),
precondition: ( (ContextKeyExpr.and(

@@ -789,0 +789,0 @@ (ContextKeyExpr.equals('config.notebook.multiCursor.enabled', true)),

@@ -34,3 +34,3 @@ import { timeout } from 'vscode/vscode/vs/base/common/async';

title: ( localize(
8045,
8301,
"Keypresses that should be handled by the focused element in the cell output."

@@ -58,3 +58,3 @@ )),

id: NOTEBOOK_FOCUS_NEXT_EDITOR,
title: ( localize(8046, 'Focus Next Cell Editor')),
title: ( localize(8302, 'Focus Next Cell Editor')),
keybinding: [

@@ -134,3 +134,3 @@ {

id: NOTEBOOK_FOCUS_PREVIOUS_EDITOR,
title: ( localize(8047, 'Focus Previous Cell Editor')),
title: ( localize(8303, 'Focus Previous Cell Editor')),
keybinding: [

@@ -201,3 +201,3 @@ {

id: NOTEBOOK_FOCUS_TOP,
title: ( localize(8048, 'Focus First Cell')),
title: ( localize(8304, 'Focus First Cell')),
keybinding: [

@@ -234,3 +234,3 @@ {

id: NOTEBOOK_FOCUS_BOTTOM,
title: ( localize(8049, 'Focus Last Cell')),
title: ( localize(8305, 'Focus Last Cell')),
keybinding: [

@@ -272,3 +272,3 @@ {

id: FOCUS_IN_OUTPUT_COMMAND_ID,
title: ( localize(8050, 'Focus In Active Cell Output')),
title: ( localize(8306, 'Focus In Active Cell Output')),
keybinding: [{

@@ -297,3 +297,3 @@ primary: 2048 | 1024 | 18 ,

id: FOCUS_OUT_OUTPUT_COMMAND_ID,
title: ( localize(8051, 'Focus Out Active Cell Output')),
title: ( localize(8307, 'Focus Out Active Cell Output')),
keybinding: {

@@ -317,3 +317,3 @@ primary: 2048 | 1024 | 16 ,

id: CENTER_ACTIVE_CELL,
title: ( localize(8052, "Center Active Cell")),
title: ( localize(8308, "Center Active Cell")),
keybinding: {

@@ -337,3 +337,3 @@ when: NOTEBOOK_EDITOR_FOCUSED,

id: NOTEBOOK_CURSOR_PAGEUP_COMMAND_ID,
title: ( localize(8053, "Cell Cursor Page Up")),
title: ( localize(8309, "Cell Cursor Page Up")),
keybinding: [

@@ -360,3 +360,3 @@ {

id: NOTEBOOK_CURSOR_PAGEUP_SELECT_COMMAND_ID,
title: ( localize(8054, "Cell Cursor Page Up Select")),
title: ( localize(8310, "Cell Cursor Page Up Select")),
keybinding: [

@@ -384,3 +384,3 @@ {

id: NOTEBOOK_CURSOR_PAGEDOWN_COMMAND_ID,
title: ( localize(8055, "Cell Cursor Page Down")),
title: ( localize(8311, "Cell Cursor Page Down")),
keybinding: [

@@ -407,3 +407,3 @@ {

id: NOTEBOOK_CURSOR_PAGEDOWN_SELECT_COMMAND_ID,
title: ( localize(8056, "Cell Cursor Page Down Select")),
title: ( localize(8312, "Cell Cursor Page Down Select")),
keybinding: [

@@ -442,3 +442,3 @@ {

markdownDescription: ( localize(
8057,
8313,
"When enabled cursor can navigate to the next/previous cell when the current cursor in the cell editor is at the first/last line."

@@ -445,0 +445,0 @@ ))

@@ -69,3 +69,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

const viewDescriptor = {
id: 'NOTEBOOK_VARIABLES', name: ( localize2(8133, "Notebook Variables")),
id: 'NOTEBOOK_VARIABLES', name: ( localize2(8389, "Notebook Variables")),
containerIcon: variablesViewIcon, ctorDescriptor: ( (new SyncDescriptor(NotebookVariablesView))),

@@ -72,0 +72,0 @@ order: 50, weight: 5, canToggleVisibility: true, canMoveView: true, collapsed: false, when: NOTEBOOK_VARIABLE_VIEW_ENABLED,

@@ -34,4 +34,4 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

static { this.ID = 'notebookVariablesView'; }
static { this.NOTEBOOK_TITLE = ( localize2(10871, "Notebook Variables")); }
static { this.REPL_TITLE = ( localize2(10872, "REPL Variables")); }
static { this.NOTEBOOK_TITLE = ( localize2(10914, "Notebook Variables")); }
static { this.REPL_TITLE = ( localize2(10915, "REPL Variables")); }
constructor(options, editorService, notebookKernelService, notebookExecutionStateService, keybindingService, contextMenuService, contextKeyService, configurationService, instantiationService, viewDescriptorService, openerService, quickInputService, commandService, themeService, telemetryService, hoverService, menuService) {

@@ -38,0 +38,0 @@ super(options, keybindingService, contextMenuService, configurationService, contextKeyService, viewDescriptorService, instantiationService, openerService, themeService, telemetryService, hoverService);

@@ -719,3 +719,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

markdownDescription: ( localize(
8058,
8314,
"When enabled, notebook outline will show only markdown cells containing a header."

@@ -727,3 +727,3 @@ ))

default: false,
markdownDescription: ( localize(8059, "When enabled, notebook outline shows code cells."))
markdownDescription: ( localize(8315, "When enabled, notebook outline shows code cells."))
},

@@ -734,3 +734,3 @@ [NotebookSetting.outlineShowCodeCellSymbols]: {

markdownDescription: ( localize(
8060,
8316,
"When enabled, notebook outline shows code cell symbols. Relies on `notebook.outline.showCodeCells` being enabled."

@@ -742,3 +742,3 @@ ))

default: true,
markdownDescription: ( localize(8061, "When enabled, notebook breadcrumbs contain code cells."))
markdownDescription: ( localize(8317, "When enabled, notebook breadcrumbs contain code cells."))
},

@@ -749,3 +749,3 @@ [NotebookSetting.gotoSymbolsAllSymbols]: {

markdownDescription: ( localize(
8062,
8318,
"When enabled, the Go to Symbol Quick Pick will display full code symbols from the notebook, as well as Markdown headers."

@@ -758,3 +758,3 @@ ))

submenu: MenuId.NotebookOutlineFilter,
title: ( localize(8063, "Filter Entries")),
title: ( localize(8319, "Filter Entries")),
icon: Codicon.filter,

@@ -772,3 +772,3 @@ group: 'navigation',

id: 'notebook.outline.toggleShowMarkdownHeadersOnly',
title: ( localize(8064, "Markdown Headers Only")),
title: ( localize(8320, "Markdown Headers Only")),
f1: false,

@@ -794,3 +794,3 @@ toggled: {

id: 'notebook.outline.toggleCodeCells',
title: ( localize(8065, "Code Cells")),
title: ( localize(8321, "Code Cells")),
f1: false,

@@ -817,3 +817,3 @@ toggled: {

id: 'notebook.outline.toggleCodeCellSymbols',
title: ( localize(8066, "Code Cell Symbols")),
title: ( localize(8322, "Code Cell Symbols")),
f1: false,

@@ -820,0 +820,0 @@ toggled: {

@@ -55,3 +55,3 @@ import { localize } from 'vscode/vscode/vs/nls';

id: 'notebook.setProfile',
title: ( localize(8067, "Set Profile"))
title: ( localize(8323, "Set Profile"))
});

@@ -58,0 +58,0 @@ }

@@ -63,3 +63,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

}
progress.report({ message: ( localize(8033, "Formatting")) });
progress.report({ message: ( localize(8289, "Formatting")) });
const notebook = workingCopy.model.notebookModel;

@@ -84,3 +84,3 @@ const formatApplied = await this.instantiationService.invokeFunction(CodeActionParticipantUtils.checkAndRunFormatCodeAction, notebook, progress, token);

}))));
await this.bulkEditService.apply( allCellEdits.flat(), { label: ( localize(8034, "Format Notebook")), code: 'undoredo.formatNotebook', });
await this.bulkEditService.apply( allCellEdits.flat(), { label: ( localize(8290, "Format Notebook")), code: 'undoredo.formatNotebook', });
}

@@ -158,3 +158,3 @@ }

const filteredEdits = allCellEdits.flat().filter(edit => edit !== undefined);
await this.bulkEditService.apply(filteredEdits, { label: ( localize(8035, "Notebook Trim Trailing Whitespace")), code: 'undoredo.notebookTrimTrailingWhitespace' });
await this.bulkEditService.apply(filteredEdits, { label: ( localize(8291, "Notebook Trim Trailing Whitespace")), code: 'undoredo.notebookTrimTrailingWhitespace' });
}

@@ -238,3 +238,3 @@ finally {

const filteredEdits = allCellEdits.flat().filter(edit => edit !== undefined);
await this.bulkEditService.apply(filteredEdits, { label: ( localize(8036, "Trim Final New Lines")), code: 'undoredo.trimFinalNewLines' });
await this.bulkEditService.apply(filteredEdits, { label: ( localize(8292, "Trim Final New Lines")), code: 'undoredo.trimFinalNewLines' });
}

@@ -295,3 +295,3 @@ finally {

const filteredEdits = allCellEdits.filter(edit => edit !== undefined);
await this.bulkEditService.apply(filteredEdits, { label: ( localize(8037, "Insert Final New Line")), code: 'undoredo.insertFinalNewLine' });
await this.bulkEditService.apply(filteredEdits, { label: ( localize(8293, "Insert Final New Line")), code: 'undoredo.insertFinalNewLine' });
if (activeCellEditor && selections) {

@@ -352,3 +352,3 @@ activeCellEditor.setSelections(selections);

const nbDisposable = ( (new DisposableStore()));
progress.report({ message: ( localize(8038, "Running 'Notebook' code actions")) });
progress.report({ message: ( localize(8294, "Running 'Notebook' code actions")) });
try {

@@ -385,3 +385,3 @@ const cell = notebookModel.cells[0];

const cellDisposable = ( (new DisposableStore()));
progress.report({ message: ( localize(8039, "Running 'Cell' code actions")) });
progress.report({ message: ( localize(8295, "Running 'Cell' code actions")) });
try {

@@ -426,3 +426,3 @@ await Promise.all(( (notebookModel.cells.map(async (cell) => {

let formatResult = false;
progress.report({ message: ( localize(8040, "Running 'Format' code actions")) });
progress.report({ message: ( localize(8296, "Running 'Format' code actions")) });
try {

@@ -456,3 +456,3 @@ const cell = notebookModel.cells[0];

message: ( localize(
8041,
8297,
"Getting code actions from '{0}' ([configure]({1})).",

@@ -497,3 +497,3 @@ ( ([...this._names].map(name => `'${name}'`))).join(', '),

}
progress.report({ message: ( localize(8042, "Applying code action '{0}'.", action.action.title)) });
progress.report({ message: ( localize(8298, "Applying code action '{0}'.", action.action.title)) });
await instantiationService.invokeFunction(applyCodeAction, action, ApplyCodeActionReason.OnSave, {}, token);

@@ -523,3 +523,3 @@ if (token.isCancellationRequested) {

message: ( localize(
8041,
8297,
"Getting code actions from '{0}' ([configure]({1})).",

@@ -551,3 +551,3 @@ ( ([...this._names].map(name => `'${name}'`))).join(', '),

}
progress.report({ message: ( localize(8042, "Applying code action '{0}'.", action.action.title)) });
progress.report({ message: ( localize(8298, "Applying code action '{0}'.", action.action.title)) });
await instantiationService.invokeFunction(applyCodeAction, action, ApplyCodeActionReason.OnSave, {}, token);

@@ -554,0 +554,0 @@ if (token.isCancellationRequested) {

@@ -96,3 +96,3 @@ import { Disposable, DisposableStore, dispose } from 'vscode/vscode/vs/base/common/lifecycle';

id: 'notebook.toggleLayoutTroubleshoot',
title: ( localize2(8106, "Toggle Layout Troubleshoot")),
title: ( localize2(8362, "Toggle Layout Troubleshoot")),
category: Categories.Developer,

@@ -116,3 +116,3 @@ f1: true

id: 'notebook.inspectLayout',
title: ( localize2(8107, "Inspect Notebook Layout")),
title: ( localize2(8363, "Inspect Notebook Layout")),
category: Categories.Developer,

@@ -138,3 +138,3 @@ f1: true

id: 'notebook.clearNotebookEdtitorTypeCache',
title: ( localize2(8108, "Clear Notebook Editor Type Cache")),
title: ( localize2(8364, "Clear Notebook Editor Type Cache")),
category: Categories.Developer,

@@ -141,0 +141,0 @@ f1: true

@@ -28,3 +28,3 @@ import { Codicon } from 'vscode/vscode/vs/base/common/codicons';

id: 'notebook.cell.chat.accept',
title: ( localize2(10833, "Make Request")),
title: ( localize2(10876, "Make Request")),
icon: Codicon.send,

@@ -57,3 +57,3 @@ keybinding: {

id: 'notebook.cell.chat.arrowOutUp',
title: ( localize(10834, 'Cursor Up')),
title: ( localize(10877, 'Cursor Up')),
keybinding: {

@@ -93,3 +93,3 @@ when: ( (ContextKeyExpr.and(

id: 'notebook.cell.chat.arrowOutDown',
title: ( localize(10835, 'Cursor Down')),
title: ( localize(10878, 'Cursor Down')),
keybinding: {

@@ -117,3 +117,3 @@ when: ( (ContextKeyExpr.and(

id: 'notebook.cell.focusChatWidget',
title: ( localize(10836, 'Focus Chat Widget')),
title: ( localize(10879, 'Focus Chat Widget')),
keybinding: {

@@ -146,3 +146,3 @@ when: ( (ContextKeyExpr.and(

id: 'notebook.cell.focusNextChatWidget',
title: ( localize(10837, 'Focus Next Cell Chat Widget')),
title: ( localize(10880, 'Focus Next Cell Chat Widget')),
keybinding: {

@@ -181,3 +181,3 @@ when: ( (ContextKeyExpr.and(

id: 'notebook.cell.chat.stop',
title: ( localize2(10838, "Stop Request")),
title: ( localize2(10881, "Stop Request")),
icon: Codicon.debugStop,

@@ -201,3 +201,3 @@ menu: {

id: 'notebook.cell.chat.close',
title: ( localize2(10839, "Close Chat")),
title: ( localize2(10882, "Close Chat")),
icon: Codicon.close,

@@ -220,6 +220,6 @@ menu: {

id: 'notebook.cell.chat.acceptChanges',
title: ( localize2(10840, "Accept Changes")),
shortTitle: ( localize(10841, 'Accept')),
title: ( localize2(10883, "Accept Changes")),
shortTitle: ( localize(10884, 'Accept')),
icon: Codicon.check,
tooltip: ( localize(10842, 'Accept Changes')),
tooltip: ( localize(10885, 'Accept Changes')),
keybinding: [

@@ -275,3 +275,3 @@ {

id: 'notebook.cell.chat.discard',
title: ( localize(10843, 'Discard')),
title: ( localize(10886, 'Discard')),
icon: Codicon.discard,

@@ -322,8 +322,8 @@ keybinding: {

title: {
value: '$(sparkle) ' + ( localize(10844, "Generate")),
value: '$(sparkle) ' + ( localize(10887, "Generate")),
original: '$(sparkle) Generate',
},
tooltip: ( localize(10845, "Start Chat to Generate Code")),
tooltip: ( localize(10888, "Start Chat to Generate Code")),
metadata: {
description: ( localize(10845, "Start Chat to Generate Code")),
description: ( localize(10888, "Start Chat to Generate Code")),
args: [

@@ -426,6 +426,6 @@ {

title: {
value: '$(sparkle) ' + ( localize(10844, "Generate")),
value: '$(sparkle) ' + ( localize(10887, "Generate")),
original: '$(sparkle) Generate',
},
tooltip: ( localize(10845, "Start Chat to Generate Code")),
tooltip: ( localize(10888, "Start Chat to Generate Code")),
f1: false,

@@ -457,4 +457,4 @@ menu: [

icon: Codicon.sparkle,
title: ( localize(10846, "Generate")),
tooltip: ( localize(10847, "Start Chat to Generate Code"))
title: ( localize(10889, "Generate")),
tooltip: ( localize(10890, "Start Chat to Generate Code"))
},

@@ -478,3 +478,3 @@ order: -10,

id: 'notebook.cell.chat.focus',
title: ( localize(10848, 'Focus Chat')),
title: ( localize(10891, 'Focus Chat')),
keybinding: [

@@ -511,3 +511,3 @@ {

id: 'notebook.cell.chat.focusNextCell',
title: ( localize(10849, 'Focus Next Cell')),
title: ( localize(10892, 'Focus Next Cell')),
keybinding: [

@@ -531,3 +531,3 @@ {

id: 'notebook.cell.chat.focusPreviousCell',
title: ( localize(10850, 'Focus Previous Cell')),
title: ( localize(10893, 'Focus Previous Cell')),
keybinding: [

@@ -551,3 +551,3 @@ {

id: 'notebook.cell.chat.previousFromHistory',
title: ( localize2(10851, "Previous From History")),
title: ( localize2(10894, "Previous From History")),
precondition: ( (ContextKeyExpr.and(CTX_NOTEBOOK_CELL_CHAT_FOCUSED, CTX_INLINE_CHAT_FOCUSED))),

@@ -570,3 +570,3 @@ keybinding: {

id: 'notebook.cell.chat.nextFromHistory',
title: ( localize2(10852, "Next From History")),
title: ( localize2(10895, "Next From History")),
precondition: ( (ContextKeyExpr.and(CTX_NOTEBOOK_CELL_CHAT_FOCUSED, CTX_INLINE_CHAT_FOCUSED))),

@@ -589,3 +589,3 @@ keybinding: {

id: 'notebook.cell.chat.restore',
title: ( localize2(10853, "Generate")),
title: ( localize2(10896, "Generate")),
icon: Codicon.sparkle,

@@ -626,5 +626,5 @@ menu: {

id: 'notebook.inlineChat.acceptChangesAndRun',
title: ( localize2(10854, "Accept and Run")),
shortTitle: ( localize(10855, 'Accept & Run')),
tooltip: ( localize(10856, 'Accept the changes and run the cell')),
title: ( localize2(10897, "Accept and Run")),
shortTitle: ( localize(10898, 'Accept & Run')),
tooltip: ( localize(10899, 'Accept the changes and run the cell')),
icon: Codicon.check,

@@ -631,0 +631,0 @@ f1: true,

@@ -68,3 +68,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

insertText: `${chatVariableLeader}${NotebookKernelVariableKey}:`,
detail: ( localize(8020, "Pick a variable from the kernel")),
detail: ( localize(8276, "Pick a variable from the kernel")),
range,

@@ -71,0 +71,0 @@ kind: 18 ,

@@ -44,3 +44,3 @@ import { Mimes } from 'vscode/vscode/vs/base/common/mime';

id: EDIT_CELL_COMMAND_ID,
title: ( localize(7992, "Edit Cell")),
title: ( localize(8248, "Edit Cell")),
keybinding: {

@@ -91,3 +91,3 @@ when: ( (ContextKeyExpr.and(

id: QUIT_EDIT_CELL_COMMAND_ID,
title: ( localize(7993, "Stop Editing Cell")),
title: ( localize(8249, "Stop Editing Cell")),
menu: {

@@ -142,3 +142,3 @@ id: MenuId.NotebookCellTitle,

id: DELETE_CELL_COMMAND_ID,
title: ( localize(7994, "Delete Cell")),
title: ( localize(8250, "Delete Cell")),
keybinding: {

@@ -180,9 +180,9 @@ primary: 20 ,

const dialogService = accessor.get(IDialogService);
const primaryButton = ( localize(7995, "Delete"));
const primaryButton = ( localize(8251, "Delete"));
confirmation = await dialogService.confirm({
type: 'question',
message: ( localize(7996, "This cell is running, are you sure you want to delete it?")),
message: ( localize(8252, "This cell is running, are you sure you want to delete it?")),
primaryButton: primaryButton,
checkbox: {
label: ( localize(7997, "Do not ask me again"))
label: ( localize(8253, "Do not ask me again"))
}

@@ -207,3 +207,3 @@ });

id: CLEAR_CELL_OUTPUTS_COMMAND_ID,
title: ( localize(7998, 'Clear Cell Outputs')),
title: ( localize(8254, 'Clear Cell Outputs')),
menu: [

@@ -279,3 +279,3 @@ {

id: CLEAR_ALL_CELLS_OUTPUTS_COMMAND_ID,
title: ( localize(7999, 'Clear All Outputs')),
title: ( localize(8255, 'Clear All Outputs')),
precondition: NOTEBOOK_HAS_OUTPUTS,

@@ -341,5 +341,5 @@ menu: [

id: CHANGE_CELL_LANGUAGE,
title: ( localize(8000, 'Change Cell Language')),
title: ( localize(8256, 'Change Cell Language')),
metadata: {
description: ( localize(8000, 'Change Cell Language')),
description: ( localize(8256, 'Change Cell Language')),
args: [

@@ -417,6 +417,6 @@ {

if (context.cell.cellKind === CellKind.Markup ? (languageId === 'markdown') : (languageId === context.cell.language)) {
description = ( localize(8001, "({0}) - Current Language", languageId));
description = ( localize(8257, "({0}) - Current Language", languageId));
}
else {
description = ( localize(8002, "({0})", languageId));
description = ( localize(8258, "({0})", languageId));
}

@@ -444,7 +444,7 @@ const languageName = languageService.getLanguageName(languageId);

const autoDetectMode = {
label: ( localize(8003, "Auto Detect"))
label: ( localize(8259, "Auto Detect"))
};
const picks = [
autoDetectMode,
{ type: 'separator', label: ( localize(8004, "languages (identifier)")) },
{ type: 'separator', label: ( localize(8260, "languages (identifier)")) },
...topItems,

@@ -454,3 +454,3 @@ { type: 'separator' },

];
const selection = await quickInputService.pick(picks, { placeHolder: ( localize(8005, "Select Language Mode")) });
const selection = await quickInputService.pick(picks, { placeHolder: ( localize(8261, "Select Language Mode")) });
const languageId = selection === autoDetectMode

@@ -488,3 +488,3 @@ ? await languageDetectionService.detectLanguage(context.cell.uri)

id: DETECT_CELL_LANGUAGE,
title: ( localize2(8006, "Accept Detected Language for Cell")),
title: ( localize2(8262, "Accept Detected Language for Cell")),
f1: true,

@@ -507,3 +507,3 @@ precondition: ( (ContextKeyExpr.and(NOTEBOOK_EDITOR_EDITABLE, NOTEBOOK_CELL_EDITABLE))),

else {
notificationService.warn(( localize(8007, "Unable to detect cell language")));
notificationService.warn(( localize(8263, "Unable to detect cell language")));
}

@@ -533,3 +533,3 @@ }

id: SELECT_NOTEBOOK_INDENTATION_ID,
title: ( localize2(8008, 'Select Indentation')),
title: ( localize2(8264, 'Select Indentation')),
f1: true,

@@ -552,6 +552,6 @@ precondition: ( (ContextKeyExpr.and(

if (!activeNotebook || activeNotebook.isDisposed) {
return quickInputService.pick([{ label: ( localize(8009, "No notebook editor active at this time")) }]);
return quickInputService.pick([{ label: ( localize(8265, "No notebook editor active at this time")) }]);
}
if (activeNotebook.isReadOnly) {
return quickInputService.pick([{ label: ( localize(8010, "The active notebook editor is read-only.")) }]);
return quickInputService.pick([{ label: ( localize(8266, "The active notebook editor is read-only.")) }]);
}

@@ -578,5 +578,5 @@ const picks = ( ([

})));
picks.splice(3, 0, { type: 'separator', label: ( localize(8011, "convert file")) });
picks.unshift({ type: 'separator', label: ( localize(8012, "change view")) });
const action = await quickInputService.pick(picks, { placeHolder: ( localize(8013, "Select Action")), matchOnDetail: true });
picks.splice(3, 0, { type: 'separator', label: ( localize(8267, "convert file")) });
picks.unshift({ type: 'separator', label: ( localize(8268, "change view")) });
const action = await quickInputService.pick(picks, { placeHolder: ( localize(8269, "Select Action")), matchOnDetail: true });
if (!action) {

@@ -594,3 +594,3 @@ return;

id: COMMENT_SELECTED_CELLS_ID,
title: ( localize(8014, "Comment Selected Cells")),
title: ( localize(8270, "Comment Selected Cells")),
keybinding: {

@@ -597,0 +597,0 @@ when: ( (ContextKeyExpr.and(

@@ -91,3 +91,3 @@ import { Iterable } from 'vscode/vscode/vs/base/common/iterator';

id: RENDER_ALL_MARKDOWN_CELLS,
title: ( localize(7954, "Render All Markdown Cells")),
title: ( localize(8210, "Render All Markdown Cells")),
});

@@ -103,6 +103,6 @@ }

id: EXECUTE_NOTEBOOK_COMMAND_ID,
title: ( localize(7955, "Run All")),
title: ( localize(8211, "Run All")),
icon: executeAllIcon,
metadata: {
description: ( localize(7955, "Run All")),
description: ( localize(8211, "Run All")),
args: [

@@ -165,3 +165,3 @@ {

precondition: executeThisCellCondition,
title: ( localize(7956, "Execute Cell")),
title: ( localize(8212, "Execute Cell")),
keybinding: {

@@ -184,3 +184,3 @@ when: ( (ContextKeyExpr.or(

metadata: {
description: ( localize(7956, "Execute Cell")),
description: ( localize(8212, "Execute Cell")),
args: cellExecutionArgs

@@ -219,3 +219,3 @@ },

precondition: executeCondition,
title: ( localize(7957, "Execute Above Cells")),
title: ( localize(8213, "Execute Above Cells")),
menu: [

@@ -266,3 +266,3 @@ {

precondition: executeCondition,
title: ( localize(7958, "Execute Cell and Below")),
title: ( localize(8214, "Execute Cell and Below")),
menu: [

@@ -313,5 +313,5 @@ {

precondition: executeThisCellCondition,
title: ( localize(7959, "Execute Cell and Focus Container")),
title: ( localize(8215, "Execute Cell and Focus Container")),
metadata: {
description: ( localize(7959, "Execute Cell and Focus Container")),
description: ( localize(8215, "Execute Cell and Focus Container")),
args: cellExecutionArgs

@@ -348,3 +348,3 @@ },

precondition: cellCancelCondition,
title: ( localize(7960, "Stop Cell Execution")),
title: ( localize(8216, "Stop Cell Execution")),
icon: stopIcon,

@@ -357,3 +357,3 @@ menu: {

metadata: {
description: ( localize(7960, "Stop Cell Execution")),
description: ( localize(8216, "Stop Cell Execution")),
args: [

@@ -416,3 +416,3 @@ {

))),
title: ( localize(7961, "Execute Notebook Cell and Select Below")),
title: ( localize(8217, "Execute Notebook Cell and Select Below")),
keybinding: {

@@ -483,3 +483,3 @@ when: ( (ContextKeyExpr.and(

))),
title: ( localize(7962, "Execute Notebook Cell and Insert Below")),
title: ( localize(8218, "Execute Notebook Cell and Insert Below")),
keybinding: {

@@ -521,3 +521,3 @@ when: NOTEBOOK_CELL_LIST_FOCUSED,

id: CANCEL_NOTEBOOK_COMMAND_ID,
title: ( localize2(7963, "Stop Execution")),
title: ( localize2(8219, "Stop Execution")),
icon: stopIcon,

@@ -554,3 +554,3 @@ menu: [

id: INTERRUPT_NOTEBOOK_COMMAND_ID,
title: ( localize2(7964, "Interrupt")),
title: ( localize2(8220, "Interrupt")),
precondition: ( (ContextKeyExpr.and(NOTEBOOK_HAS_SOMETHING_RUNNING, NOTEBOOK_INTERRUPTIBLE_KERNEL))),

@@ -589,3 +589,3 @@ icon: stopIcon,

MenuRegistry.appendMenuItem(MenuId.NotebookToolbar, {
title: ( localize(7965, "Go To")),
title: ( localize(8221, "Go To")),
submenu: MenuId.NotebookCellExecuteGoTo,

@@ -600,5 +600,5 @@ group: 'navigation/execute',

id: REVEAL_RUNNING_CELL,
title: ( localize(7966, "Go to Running Cell")),
tooltip: ( localize(7966, "Go to Running Cell")),
shortTitle: ( localize(7966, "Go to Running Cell")),
title: ( localize(8222, "Go to Running Cell")),
tooltip: ( localize(8222, "Go to Running Cell")),
shortTitle: ( localize(8222, "Go to Running Cell")),
precondition: NOTEBOOK_HAS_RUNNING_CELL,

@@ -672,5 +672,5 @@ menu: [

id: REVEAL_LAST_FAILED_CELL,
title: ( localize(7967, "Go to Most Recently Failed Cell")),
tooltip: ( localize(7967, "Go to Most Recently Failed Cell")),
shortTitle: ( localize(7968, "Go to Most Recently Failed Cell")),
title: ( localize(8223, "Go to Most Recently Failed Cell")),
tooltip: ( localize(8223, "Go to Most Recently Failed Cell")),
shortTitle: ( localize(8224, "Go to Most Recently Failed Cell")),
precondition: NOTEBOOK_LAST_CELL_FAILED,

@@ -677,0 +677,0 @@ menu: [

@@ -56,3 +56,3 @@ import { Codicon } from 'vscode/vscode/vs/base/common/codicons';

id: INSERT_CODE_CELL_ABOVE_COMMAND_ID,
title: ( localize(7938, "Insert Code Cell Above")),
title: ( localize(8194, "Insert Code Cell Above")),
keybinding: {

@@ -77,3 +77,3 @@ primary: 2048 | 1024 | 3 ,

id: INSERT_CODE_CELL_ABOVE_AND_FOCUS_CONTAINER_COMMAND_ID,
title: ( localize(7939, "Insert Code Cell Above and Focus Container"))
title: ( localize(8195, "Insert Code Cell Above and Focus Container"))
}, CellKind.Code, 'above', false);

@@ -86,3 +86,3 @@ }

id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
title: ( localize(7940, "Insert Code Cell Below")),
title: ( localize(8196, "Insert Code Cell Below")),
keybinding: {

@@ -108,3 +108,3 @@ primary: 2048 | 3 ,

id: INSERT_CODE_CELL_BELOW_AND_FOCUS_CONTAINER_COMMAND_ID,
title: ( localize(7941, "Insert Code Cell Below and Focus Container")),
title: ( localize(8197, "Insert Code Cell Below and Focus Container")),
}, CellKind.Code, 'below', false);

@@ -117,3 +117,3 @@ }

id: INSERT_MARKDOWN_CELL_ABOVE_COMMAND_ID,
title: ( localize(7942, "Insert Markdown Cell Above")),
title: ( localize(8198, "Insert Markdown Cell Above")),
menu: {

@@ -130,3 +130,3 @@ id: MenuId.NotebookCellInsert,

id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
title: ( localize(7943, "Insert Markdown Cell Below")),
title: ( localize(8199, "Insert Markdown Cell Below")),
menu: {

@@ -143,3 +143,3 @@ id: MenuId.NotebookCellInsert,

id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
title: ( localize(7944, "Add Code Cell At Top")),
title: ( localize(8200, "Add Code Cell At Top")),
f1: false

@@ -166,3 +166,3 @@ });

id: INSERT_MARKDOWN_CELL_AT_TOP_COMMAND_ID,
title: ( localize(7945, "Add Markdown Cell At Top")),
title: ( localize(8201, "Add Markdown Cell At Top")),
f1: false

@@ -188,4 +188,4 @@ });

id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
title: '$(add) ' + ( localize(7946, "Code")),
tooltip: ( localize(7947, "Add Code Cell"))
title: '$(add) ' + ( localize(8202, "Code")),
tooltip: ( localize(8203, "Add Code Cell"))
},

@@ -202,5 +202,5 @@ order: 0,

id: INSERT_CODE_CELL_BELOW_COMMAND_ID,
title: ( localize(7948, "Add Code")),
title: ( localize(8204, "Add Code")),
icon: Codicon.add,
tooltip: ( localize(7947, "Add Code Cell"))
tooltip: ( localize(8203, "Add Code Cell"))
},

@@ -218,4 +218,4 @@ order: 0,

icon: Codicon.add,
title: ( localize(7949, "Code")),
tooltip: ( localize(7947, "Add Code Cell"))
title: ( localize(8205, "Code")),
tooltip: ( localize(8203, "Add Code Cell"))
},

@@ -233,4 +233,4 @@ order: -5,

id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
title: '$(add) ' + ( localize(7946, "Code")),
tooltip: ( localize(7947, "Add Code Cell"))
title: '$(add) ' + ( localize(8202, "Code")),
tooltip: ( localize(8203, "Add Code Cell"))
},

@@ -247,5 +247,5 @@ order: 0,

id: INSERT_CODE_CELL_AT_TOP_COMMAND_ID,
title: ( localize(7950, "Add Code")),
title: ( localize(8206, "Add Code")),
icon: Codicon.add,
tooltip: ( localize(7947, "Add Code Cell"))
tooltip: ( localize(8203, "Add Code Cell"))
},

@@ -262,4 +262,4 @@ order: 0,

id: INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID,
title: '$(add) ' + ( localize(7951, "Markdown")),
tooltip: ( localize(7952, "Add Markdown Cell"))
title: '$(add) ' + ( localize(8207, "Markdown")),
tooltip: ( localize(8208, "Add Markdown Cell"))
},

@@ -277,4 +277,4 @@ order: 1,

icon: Codicon.add,
title: ( localize(7953, "Markdown")),
tooltip: ( localize(7952, "Add Markdown Cell"))
title: ( localize(8209, "Markdown")),
tooltip: ( localize(8208, "Add Markdown Cell"))
},

@@ -294,4 +294,4 @@ order: -5,

id: INSERT_MARKDOWN_CELL_AT_TOP_COMMAND_ID,
title: '$(add) ' + ( localize(7951, "Markdown")),
tooltip: ( localize(7952, "Add Markdown Cell"))
title: '$(add) ' + ( localize(8207, "Markdown")),
tooltip: ( localize(8208, "Add Markdown Cell"))
},

@@ -298,0 +298,0 @@ order: 1,

@@ -24,3 +24,3 @@ import { Codicon } from 'vscode/vscode/vs/base/common/codicons';

id: 'workbench.notebook.layout.select',
title: ( localize2(7977, "Select between Notebook Layouts")),
title: ( localize2(8233, "Select between Notebook Layouts")),
f1: true,

@@ -60,3 +60,3 @@ precondition: ( (ContextKeyExpr.equals(`config.${NotebookSetting.openGettingStarted}`, true))),

id: 'workbench.notebook.layout.configure',
title: ( localize2(7978, "Customize Notebook Layout")),
title: ( localize2(8234, "Customize Notebook Layout")),
f1: true,

@@ -82,3 +82,3 @@ category: NOTEBOOK_ACTIONS_CATEGORY,

id: 'workbench.notebook.layout.configure.editorTitle',
title: ( localize2(7978, "Customize Notebook Layout")),
title: ( localize2(8234, "Customize Notebook Layout")),
f1: false,

@@ -103,3 +103,3 @@ category: NOTEBOOK_ACTIONS_CATEGORY,

rememberDefaultAction: false,
title: ( localize2(7979, "Customize Notebook...")),
title: ( localize2(8235, "Customize Notebook...")),
icon: Codicon.gear,

@@ -114,3 +114,3 @@ group: 'navigation',

id: 'notebook.toggleLineNumbersFromEditorTitle',
title: ( localize2(7980, 'Toggle Notebook Line Numbers')),
title: ( localize2(8236, 'Toggle Notebook Line Numbers')),
precondition: NOTEBOOK_EDITOR_FOCUSED,

@@ -129,3 +129,3 @@ menu: [

condition: ( (ContextKeyExpr.notEquals('config.notebook.lineNumbers', 'off'))),
title: ( localize(7981, "Notebook Line Numbers")),
title: ( localize(8237, "Notebook Line Numbers")),
}

@@ -142,3 +142,3 @@ });

id: 'notebook.toggleCellToolbarPositionFromEditorTitle',
title: ( localize2(7982, 'Toggle Cell Toolbar Position')),
title: ( localize2(8238, 'Toggle Cell Toolbar Position')),
menu: [{

@@ -161,3 +161,3 @@ id: MenuId.NotebookEditorLayoutConfigure,

id: 'breadcrumbs.toggleFromEditorTitle',
title: ( localize2(7983, 'Toggle Breadcrumbs')),
title: ( localize2(8239, 'Toggle Breadcrumbs')),
menu: [{

@@ -179,3 +179,3 @@ id: MenuId.NotebookEditorLayoutConfigure,

id: 'notebook.saveMimeTypeOrder',
title: ( localize2(7984, "Save Mimetype Display Order")),
title: ( localize2(8240, "Save Mimetype Display Order")),
f1: true,

@@ -190,6 +190,6 @@ category: NOTEBOOK_ACTIONS_CATEGORY,

const qp = disposables.add(accessor.get(IQuickInputService).createQuickPick());
qp.placeholder = ( localize(7985, 'Settings file to save in'));
qp.placeholder = ( localize(8241, 'Settings file to save in'));
qp.items = [
{ target: 2 , label: ( localize(7986, 'User Settings')) },
{ target: 5 , label: ( localize(7987, 'Workspace Settings')) },
{ target: 2 , label: ( localize(8242, 'User Settings')) },
{ target: 5 , label: ( localize(8243, 'Workspace Settings')) },
];

@@ -211,3 +211,3 @@ disposables.add(qp.onDidAccept(() => {

id: 'workbench.notebook.layout.webview.reset',
title: ( localize2(7988, "Reset Notebook Webview")),
title: ( localize2(8244, "Reset Notebook Webview")),
f1: false,

@@ -243,4 +243,4 @@ category: NOTEBOOK_ACTIONS_CATEGORY

title: {
...( localize2(7989, "Toggle Notebook Sticky Scroll")),
mnemonicTitle: ( localize(7990, "&&Toggle Notebook Sticky Scroll")),
...( localize2(8245, "Toggle Notebook Sticky Scroll")),
mnemonicTitle: ( localize(8246, "&&Toggle Notebook Sticky Scroll")),
},

@@ -250,4 +250,4 @@ category: Categories.View,

condition: ( (ContextKeyExpr.equals('config.notebook.stickyScroll.enabled', true))),
title: ( localize(7991, "Toggle Notebook Sticky Scroll")),
mnemonicTitle: ( localize(7990, "&&Toggle Notebook Sticky Scroll")),
title: ( localize(8247, "Toggle Notebook Sticky Scroll")),
mnemonicTitle: ( localize(8246, "&&Toggle Notebook Sticky Scroll")),
},

@@ -254,0 +254,0 @@ menu: [

@@ -20,3 +20,3 @@ import { localize } from 'vscode/vscode/vs/nls';

id: NotebookIndentUsingTabs.ID,
title: ( localize(10826, "Indent Using Tabs")),
title: ( localize(10869, "Indent Using Tabs")),
precondition: undefined,

@@ -34,3 +34,3 @@ });

id: NotebookIndentUsingSpaces.ID,
title: ( localize(10827, "Indent Using Spaces")),
title: ( localize(10870, "Indent Using Spaces")),
precondition: undefined,

@@ -48,3 +48,3 @@ });

id: NotebookChangeTabDisplaySize.ID,
title: ( localize(10828, "Change Tab Display Size")),
title: ( localize(10871, "Change Tab Display Size")),
precondition: undefined,

@@ -62,3 +62,3 @@ });

id: NotebookIndentationToSpacesAction.ID,
title: ( localize(10829, "Convert Indentation to Spaces")),
title: ( localize(10872, "Convert Indentation to Spaces")),
precondition: undefined,

@@ -76,3 +76,3 @@ });

id: NotebookIndentationToTabsAction.ID,
title: ( localize(10830, "Convert Indentation to Tabs")),
title: ( localize(10873, "Convert Indentation to Tabs")),
precondition: undefined,

@@ -109,3 +109,3 @@ });

setTimeout(() => {
quickInputService.pick(picks, { placeHolder: ( localize(10831, "Select Tab Size for Current File")) }).then(pick => {
quickInputService.pick(picks, { placeHolder: ( localize(10874, "Select Tab Size for Current File")) }).then(pick => {
if (pick) {

@@ -160,3 +160,3 @@ const pickedVal = parseInt(pick.label, 10);

const edits = getIndentationEditOperations(textEditorModel, modelOpts.tabSize, tabsToSpaces);
bulkEditService.apply(edits, { label: ( localize(10832, "Convert Indentation")), code: 'undoredo.convertIndentation', });
bulkEditService.apply(edits, { label: ( localize(10875, "Convert Indentation")), code: 'undoredo.convertIndentation', });
})))).then(() => {

@@ -163,0 +163,0 @@ const initialConfig = configurationService.getValue(NotebookSetting.cellEditorOptionsCustomizations);

@@ -14,6 +14,6 @@ import { localize2, localize } from 'vscode/vscode/vs/nls';

title: {
...( localize2(7969, "Run Cell")),
mnemonicTitle: ( localize(7970, "&&Run Cell")),
...( localize2(8225, "Run Cell")),
mnemonicTitle: ( localize(8226, "&&Run Cell")),
},
shortTitle: ( localize(7969, "Run Cell")),
shortTitle: ( localize(8225, "Run Cell")),
icon: executeIcon,

@@ -47,6 +47,6 @@ menu: [

title: {
...( localize2(7971, "Run Cells In Section")),
mnemonicTitle: ( localize(7972, "&&Run Cells In Section")),
...( localize2(8227, "Run Cells In Section")),
mnemonicTitle: ( localize(8228, "&&Run Cells In Section")),
},
shortTitle: ( localize(7971, "Run Cells In Section")),
shortTitle: ( localize(8227, "Run Cells In Section")),
menu: [

@@ -94,6 +94,6 @@ {

title: {
...( localize2(7973, "Fold Section")),
mnemonicTitle: ( localize(7974, "&&Fold Section")),
...( localize2(8229, "Fold Section")),
mnemonicTitle: ( localize(8230, "&&Fold Section")),
},
shortTitle: ( localize(7973, "Fold Section")),
shortTitle: ( localize(8229, "Fold Section")),
menu: [

@@ -134,6 +134,6 @@ {

title: {
...( localize2(7975, "Expand Section")),
mnemonicTitle: ( localize(7976, "&&Expand Section")),
...( localize2(8231, "Expand Section")),
mnemonicTitle: ( localize(8232, "&&Expand Section")),
},
shortTitle: ( localize(7975, "Expand Section")),
shortTitle: ( localize(8231, "Expand Section")),
menu: [

@@ -140,0 +140,0 @@ {

@@ -25,3 +25,3 @@ import { IBulkEditService, ResourceTextEdit } from 'vscode/vscode/vs/editor/browser/services/bulkEditService';

icon: Codicon.goToFile,
title: ( localize2(8113, 'Open File')),
title: ( localize2(8369, 'Open File')),
precondition: ( (ContextKeyExpr.or(

@@ -58,3 +58,3 @@ (ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)),

id: 'notebook.diff.cell.toggleCollapseUnchangedRegions',
title: ( localize2(8114, 'Toggle Collapse Unchanged Regions')),
title: ( localize2(8370, 'Toggle Collapse Unchanged Regions')),
icon: Codicon.map,

@@ -81,3 +81,3 @@ toggled: ( (ContextKeyExpr.has('config.diffEditor.hideUnchangedRegions.enabled'))),

icon: openAsTextIcon,
title: ( localize2(8115, 'Open Text Diff Editor')),
title: ( localize2(8371, 'Open Text Diff Editor')),
precondition: ( (ContextKeyExpr.or(

@@ -121,3 +121,3 @@ (ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)),

id: 'notebook.diffEditor.showUnchangedCells',
title: ( localize2(8116, 'Show Unchanged Cells')),
title: ( localize2(8372, 'Show Unchanged Cells')),
icon: Codicon.unfold,

@@ -154,3 +154,3 @@ precondition: ( (ContextKeyExpr.and(

id: 'notebook.diffEditor.hideUnchangedCells',
title: ( localize2(8117, 'Hide Unchanged Cells')),
title: ( localize2(8373, 'Hide Unchanged Cells')),
icon: Codicon.fold,

@@ -187,3 +187,3 @@ precondition: ( (ContextKeyExpr.and(

id: 'notebook.diffEditor.2.goToCell',
title: ( localize2(8118, 'Go To Cell')),
title: ( localize2(8374, 'Go To Cell')),
icon: Codicon.goToFile,

@@ -221,3 +221,3 @@ menu: {

id: 'notebook.diff.revertMetadata',
title: ( localize(8119, "Revert Notebook Metadata")),
title: ( localize(8375, "Revert Notebook Metadata")),
icon: revertIcon,

@@ -247,3 +247,3 @@ f1: false,

});
const revertInput = ( localize(8120, "Revert Input"));
const revertInput = ( localize(8376, "Revert Input"));
registerAction2(class extends Action2 {

@@ -291,3 +291,3 @@ constructor() {

});
const revertOutputs = ( localize(8121, "Revert Outputs"));
const revertOutputs = ( localize(8377, "Revert Outputs"));
registerAction2(class extends Action2 {

@@ -332,3 +332,3 @@ constructor() {

});
const revertMetadata = ( localize(8122, "Revert Metadata"));
const revertMetadata = ( localize(8378, "Revert Metadata"));
registerAction2(class extends Action2 {

@@ -411,3 +411,3 @@ constructor() {

id: 'notebook.diff.cell.switchOutputRenderingStyleToText',
title: ( localize(8123, "Switch Output Rendering")),
title: ( localize(8379, "Switch Output Rendering")),
icon: renderOutputIcon,

@@ -432,3 +432,3 @@ f1: false,

id: 'notebook.diff.cell.revertOutputs',
title: ( localize(8121, "Revert Outputs")),
title: ( localize(8377, "Revert Outputs")),
icon: revertIcon,

@@ -465,3 +465,3 @@ f1: false,

id: 'notebook.toggle.diff.cell.ignoreTrimWhitespace',
title: ( localize(8124, "Show Leading/Trailing Whitespace Differences")),
title: ( localize(8380, "Show Leading/Trailing Whitespace Differences")),
icon: toggleWhitespace,

@@ -554,3 +554,3 @@ f1: false,

constructor() {
super('notebook.diff.showOutputs', ( localize2(8125, 'Show Outputs Differences')), ( (ContextKeyExpr.or(
super('notebook.diff.showOutputs', ( localize2(8381, 'Show Outputs Differences')), ( (ContextKeyExpr.or(
(ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)),

@@ -563,3 +563,3 @@ (ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID))

constructor() {
super('notebook.diff.showMetadata', ( localize2(8126, 'Show Metadata Differences')), ( (ContextKeyExpr.or(
super('notebook.diff.showMetadata', ( localize2(8382, 'Show Metadata Differences')), ( (ContextKeyExpr.or(
(ActiveEditorContext.isEqualTo(NotebookTextDiffEditor.ID)),

@@ -574,3 +574,3 @@ (ActiveEditorContext.isEqualTo(NotebookMultiTextDiffEditor.ID))

id: 'notebook.diff.action.previous',
title: ( localize(8127, "Show Previous Change")),
title: ( localize(8383, "Show Previous Change")),
icon: previousChangeIcon,

@@ -603,3 +603,3 @@ f1: false,

id: 'notebook.diff.action.next',
title: ( localize(8128, "Show Next Change")),
title: ( localize(8384, "Show Next Change")),
icon: nextChangeIcon,

@@ -636,3 +636,3 @@ f1: false,

default: false,
markdownDescription: ( localize(8129, "Hide Metadata Differences"))
markdownDescription: ( localize(8385, "Hide Metadata Differences"))
},

@@ -642,5 +642,5 @@ 'notebook.diff.ignoreOutputs': {

default: false,
markdownDescription: ( localize(8130, "Hide Outputs Differences"))
markdownDescription: ( localize(8386, "Hide Outputs Differences"))
},
}
});

@@ -728,3 +728,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

description: ( localize(
3300,
3340,
'Settings for code editors used in notebooks. This can be used to customize most editor.* settings.'

@@ -744,7 +744,7 @@ )),

order: 100,
title: ( localize(3301, "Notebook")),
title: ( localize(3341, "Notebook")),
type: 'object',
properties: {
[NotebookSetting.displayOrder]: {
description: ( localize(3302, "Priority list for output mime types")),
description: ( localize(3342, "Priority list for output mime types")),
type: 'array',

@@ -758,3 +758,3 @@ items: {

description: ( localize(
3303,
3343,
"Where the cell toolbar should be shown, or whether it should be hidden."

@@ -764,3 +764,3 @@ )),

additionalProperties: {
markdownDescription: ( localize(3304, "Configure the cell toolbar position for for specific file types")),
markdownDescription: ( localize(3344, "Configure the cell toolbar position for for specific file types")),
type: 'string',

@@ -775,10 +775,10 @@ enum: ['left', 'right', 'hidden']

[NotebookSetting.showCellStatusBar]: {
description: ( localize(3305, "Whether the cell status bar should be shown.")),
description: ( localize(3345, "Whether the cell status bar should be shown.")),
type: 'string',
enum: ['hidden', 'visible', 'visibleAfterExecute'],
enumDescriptions: [
( localize(3306, "The cell Status bar is always hidden.")),
( localize(3307, "The cell Status bar is always visible.")),
( localize(3346, "The cell Status bar is always hidden.")),
( localize(3347, "The cell Status bar is always visible.")),
( localize(
3308,
3348,
"The cell Status bar is hidden until the cell has executed. Then it becomes visible to show the execution status."

@@ -791,3 +791,3 @@ ))

[NotebookSetting.textDiffEditorPreview]: {
description: ( localize(3309, "Whether to use the enhanced text diff editor for notebook.")),
description: ( localize(3349, "Whether to use the enhanced text diff editor for notebook.")),
type: 'boolean',

@@ -799,3 +799,3 @@ default: true,

description: ( localize(
3310,
3350,
"Whether to render the overview ruler in the diff editor for notebook."

@@ -808,3 +808,3 @@ )),

[NotebookSetting.cellToolbarVisibility]: {
markdownDescription: ( localize(3311, "Whether the cell toolbar should appear on hover or click.")),
markdownDescription: ( localize(3351, "Whether the cell toolbar should appear on hover or click.")),
type: 'string',

@@ -816,3 +816,3 @@ enum: ['hover', 'click'],

[NotebookSetting.undoRedoPerCell]: {
description: ( localize(3312, "Whether to use separate undo/redo stack for each cell.")),
description: ( localize(3352, "Whether to use separate undo/redo stack for each cell.")),
type: 'boolean',

@@ -824,3 +824,3 @@ default: true,

description: ( localize(
3313,
3353,
"Control whether the notebook editor should be rendered in a compact form. For example, when turned on, it will decrease the left margin width."

@@ -834,3 +834,3 @@ )),

description: ( localize(
3314,
3354,
"Controls where the focus indicator is rendered, either along the cell borders or on the left gutter."

@@ -844,10 +844,10 @@ )),

[NotebookSetting.insertToolbarLocation]: {
description: ( localize(3315, "Control where the insert cell actions should appear.")),
description: ( localize(3355, "Control where the insert cell actions should appear.")),
type: 'string',
enum: ['betweenCells', 'notebookToolbar', 'both', 'hidden'],
enumDescriptions: [
( localize(3316, "A toolbar that appears on hover between cells.")),
( localize(3317, "The toolbar at the top of the notebook editor.")),
( localize(3318, "Both toolbars.")),
( localize(3319, "The insert actions don't appear anywhere.")),
( localize(3356, "A toolbar that appears on hover between cells.")),
( localize(3357, "The toolbar at the top of the notebook editor.")),
( localize(3358, "Both toolbars.")),
( localize(3359, "The insert actions don't appear anywhere.")),
],

@@ -859,3 +859,3 @@ default: 'both',

description: ( localize(
3320,
3360,
"Control whether to render a global toolbar inside the notebook editor."

@@ -869,3 +869,3 @@ )),

description: ( localize(
3321,
3361,
"Experimental. Control whether to render notebook Sticky Scroll headers in the notebook editor."

@@ -879,3 +879,3 @@ )),

description: ( localize(
3322,
3362,
"Control whether nested sticky lines appear to stack flat or indented."

@@ -886,4 +886,4 @@ )),

enumDescriptions: [
( localize(3323, "Nested sticky lines appear flat.")),
( localize(3324, "Nested sticky lines appear indented.")),
( localize(3363, "Nested sticky lines appear flat.")),
( localize(3364, "Nested sticky lines appear indented.")),
],

@@ -895,3 +895,3 @@ default: 'indented',

description: ( localize(
3325,
3365,
"Control whether outputs action should be rendered in the output toolbar."

@@ -904,9 +904,9 @@ )),

[NotebookSetting.showFoldingControls]: {
description: ( localize(3326, "Controls when the Markdown header folding arrow is shown.")),
description: ( localize(3366, "Controls when the Markdown header folding arrow is shown.")),
type: 'string',
enum: ['always', 'never', 'mouseover'],
enumDescriptions: [
( localize(3327, "The folding controls are always visible.")),
( localize(3328, "Never show the folding controls and reduce the gutter size.")),
( localize(3329, "The folding controls are visible only on mouseover.")),
( localize(3367, "The folding controls are always visible.")),
( localize(3368, "Never show the folding controls and reduce the gutter size.")),
( localize(3369, "The folding controls are visible only on mouseover.")),
],

@@ -918,3 +918,3 @@ default: 'mouseover',

description: ( localize(
3330,
3370,
"Control whether the notebook editor should allow moving cells through drag and drop."

@@ -928,3 +928,3 @@ )),

description: ( localize(
3331,
3371,
"Control whether extra actions are shown in a dropdown next to the run button."

@@ -938,3 +938,3 @@ )),

description: ( localize(
3332,
3372,
"Control whether the actions on the notebook toolbar should render label or not."

@@ -949,3 +949,3 @@ )),

markdownDescription: ( localize(
3333,
3373,
"Controls how many lines of text are displayed in a text output. If {0} is enabled, this setting is used to determine the scroll height of the output.",

@@ -961,3 +961,3 @@ '`#notebook.output.scrolling#`'

description: ( localize(
3334,
3374,
"Control whether to disable filepath links in the output of notebook cells."

@@ -970,3 +970,3 @@ )),

[NotebookSetting.minimalErrorRendering]: {
description: ( localize(3335, "Control whether to render error output in a minimal style.")),
description: ( localize(3375, "Control whether to render error output in a minimal style.")),
type: 'boolean',

@@ -978,3 +978,3 @@ default: false,

markdownDescription: ( localize(
3336,
3376,
"Controls the font size in pixels of rendered markup in notebooks. When set to {0}, 120% of {1} is used.",

@@ -990,3 +990,3 @@ '`0`',

markdownDescription: ( localize(
3337,
3377,
"Controls the line height in pixels of markdown cells in notebooks. When set to {0}, {1} will be used",

@@ -1003,3 +1003,3 @@ '`0`',

markdownDescription: ( localize(
3338,
3378,
"Controls whether code cells in the interactive window are collapsed by default."

@@ -1013,3 +1013,3 @@ )),

markdownDescription: ( localize(
3339,
3379,
"Line height of the output text within notebook cells.\n - When set to 0, editor line height is used.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than or equal to 8 will be used as effective values."

@@ -1023,3 +1023,3 @@ )),

markdownDescription: ( localize(
3340,
3380,
"Font size for the output text within notebook cells. When set to 0, {0} is used.",

@@ -1034,3 +1034,3 @@ '`#editor.fontSize#`'

markdownDescription: ( localize(
3341,
3381,
"The font family of the output text within notebook cells. When set to empty, the {0} is used.",

@@ -1044,3 +1044,3 @@ '`#editor.fontFamily#`'

markdownDescription: ( localize(
3342,
3382,
"Initially render notebook outputs in a scrollable region when longer than the limit."

@@ -1053,3 +1053,3 @@ )),

[NotebookSetting.outputWordWrap]: {
markdownDescription: ( localize(3343, "Controls whether the lines in output should wrap.")),
markdownDescription: ( localize(3383, "Controls whether the lines in output should wrap.")),
type: 'boolean',

@@ -1061,3 +1061,3 @@ tags: ['notebookLayout', 'notebookOutputLayout'],

description: ( localize(
3344,
3384,
"Defines a default notebook formatter which takes precedence over all other formatter settings. Must be the identifier of an extension contributing a formatter."

@@ -1073,3 +1073,3 @@ )),

markdownDescription: ( localize(
3345,
3385,
"Format a notebook on save. A formatter must be available, the file must not be saved after delay, and the editor must not be shutting down."

@@ -1083,3 +1083,3 @@ )),

markdownDescription: ( localize(
3346,
3386,
"When enabled, insert a final new line into the end of code cells when saving a notebook."

@@ -1093,3 +1093,3 @@ )),

markdownDescription: ( localize(
3347,
3387,
"Format a notebook cell upon execution. A formatter must be available."

@@ -1102,3 +1102,3 @@ )),

markdownDescription: ( localize(
3348,
3388,
"Control whether a confirmation prompt is required to delete a running cell."

@@ -1111,3 +1111,3 @@ )),

markdownDescription: ( localize(
3349,
3389,
"Customize the Find Widget behavior for searching within notebook cells. When both markup source and markup preview are enabled, the Find Widget will search either the source code or preview based on the current state of the cell."

@@ -1144,3 +1144,3 @@ )),

markdownDescription: ( localize(
3350,
3390,
"Enables the incremental saving of notebooks between processes and across Remote connections. When enabled, only the changes to the notebook are sent to the extension host, improving performance for large notebooks and slow network connections."

@@ -1154,3 +1154,3 @@ )),

markdownDescription: ( localize(
3351,
3391,
"How far to scroll when revealing the next cell upon running {0}.",

@@ -1162,5 +1162,5 @@ 'notebook.cell.executeAndSelectBelow'

markdownEnumDescriptions: [
( localize(3352, 'Scroll to fully reveal the next cell.')),
( localize(3353, 'Scroll to reveal the first line of the next cell.')),
( localize(3354, 'Do not scroll.')),
( localize(3392, 'Scroll to fully reveal the next cell.')),
( localize(3393, 'Scroll to reveal the first line of the next cell.')),
( localize(3394, 'Do not scroll.')),
],

@@ -1171,3 +1171,3 @@ default: 'fullCell'

markdownDescription: ( localize(
3355,
3395,
"Enable experimental generate action to create code cell with inline chat enabled."

@@ -1181,3 +1181,3 @@ )),

markdownDescription: ( localize(
3356,
3396,
"Enable the experimental notebook variables view within the debug panel."

@@ -1189,3 +1189,3 @@ )),

[NotebookSetting.cellFailureDiagnostics]: {
markdownDescription: ( localize(3357, "Show available diagnostics for cell failures.")),
markdownDescription: ( localize(3397, "Show available diagnostics for cell failures.")),
type: 'boolean',

@@ -1196,3 +1196,3 @@ default: true

markdownDescription: ( localize(
3358,
3398,
"The limit of notebook output size in kilobytes (KB) where notebook files will no longer be backed up for hot reload. Use 0 for unlimited."

@@ -1205,3 +1205,3 @@ )),

markdownDescription: ( localize(
3359,
3399,
"Experimental. Enables a limited set of multi cursor controls across multiple cells in the notebook editor. Currently supported are core editor actions (typing/cut/copy/paste/composition) and a limited subset of editor commands."

@@ -1208,0 +1208,0 @@ )),

@@ -28,7 +28,7 @@ import { NOTEBOOK_EDITOR_FOCUSED, IS_COMPOSITE_NOTEBOOK } from 'vscode/vscode/vs/workbench/contrib/notebook/common/notebookContextKeys';

( localize(
8134,
8390,
'The notebook view is a collection of code and markdown cells. Code cells can be executed and will produce output directly below the cell.'
)),
( localize(
8135,
8391,
'The Edit Cell command{0} will focus on the cell input.',

@@ -38,3 +38,3 @@ '<keybinding:notebook.cell.edit>'

( localize(
8136,
8392,
'The Quit Edit command{0} will set focus on the cell container. The default (Escape) key may need to be pressed twice first exit the virtual cursor if active.',

@@ -44,3 +44,3 @@ '<keybinding:notebook.cell.quitEdit>'

( localize(
8137,
8393,
'The Focus Output command{0} will set focus in the cell\'s output.',

@@ -50,3 +50,3 @@ '<keybinding:notebook.cell.focusInOutput>'

( localize(
8138,
8394,
'The Focus Next Cell Editor command{0} will set focus in the next cell\'s editor.',

@@ -56,3 +56,3 @@ '<keybinding:notebook.focusNextEditor>'

( localize(
8139,
8395,
'The Focus Previous Cell Editor command{0} will set focus in the previous cell\'s editor.',

@@ -62,7 +62,7 @@ '<keybinding:notebook.focusPreviousEditor>'

( localize(
8140,
8396,
'The up and down arrows will also move focus between cells while focused on the outer cell container.'
)),
( localize(
8141,
8397,
'The Execute Cell command{0} executes the cell that currently has focus.',

@@ -72,3 +72,3 @@ '<keybinding:notebook.cell.executeAndFocusContainer>'

( localize(
8142,
8398,
'The Insert Cell Above{0} and Below{1} commands will create new empty code cells.',

@@ -79,3 +79,3 @@ '<keybinding:notebook.cell.insertCodeCellAbove>',

( localize(
8143,
8399,
'The Change Cell to Code/Markdown commands are used to switch between cell types.'

@@ -82,0 +82,0 @@ ))

@@ -30,3 +30,3 @@ import { localize } from 'vscode/vscode/vs/nls';

const notebookProviderContribution = {
description: ( localize(7687, 'Contributes notebook document provider.')),
description: ( localize(7943, 'Contributes notebook document provider.')),
type: 'array',

@@ -44,11 +44,11 @@ defaultSnippets: [{ body: [{ type: '', displayName: '', 'selector': [{ 'filenamePattern': '' }] }] }],

type: 'string',
description: ( localize(7688, 'Type of the notebook.')),
description: ( localize(7944, 'Type of the notebook.')),
},
[NotebookEditorContribution.displayName]: {
type: 'string',
description: ( localize(7689, 'Human readable name of the notebook.')),
description: ( localize(7945, 'Human readable name of the notebook.')),
},
[NotebookEditorContribution.selector]: {
type: 'array',
description: ( localize(7690, 'Set of globs that the notebook is for.')),
description: ( localize(7946, 'Set of globs that the notebook is for.')),
items: {

@@ -59,7 +59,7 @@ type: 'object',

type: 'string',
description: ( localize(7691, 'Glob that the notebook is enabled for.')),
description: ( localize(7947, 'Glob that the notebook is enabled for.')),
},
excludeFileNamePattern: {
type: 'string',
description: ( localize(7692, 'Glob that the notebook is disabled for.'))
description: ( localize(7948, 'Glob that the notebook is disabled for.'))
}

@@ -72,3 +72,3 @@ }

markdownDeprecationMessage: ( localize(
7693,
7949,
'Controls if the custom editor is enabled automatically when the user opens a file. This may be overridden by users using the `workbench.editorAssociations` setting.'

@@ -82,7 +82,7 @@ )),

( localize(
7694,
7950,
'The editor is automatically used when the user opens a resource, provided that no other default custom editors are registered for that resource.'
)),
( localize(
7695,
7951,
'The editor is not automatically used when the user opens a resource, but a user can switch to the editor using the `Reopen With` command.'

@@ -98,3 +98,3 @@ )),

const notebookRendererContribution = {
description: ( localize(7696, 'Contributes notebook output renderer provider.')),
description: ( localize(7952, 'Contributes notebook output renderer provider.')),
type: 'array',

@@ -114,7 +114,7 @@ defaultSnippets: [{ body: [defaultRendererSnippet] }],

type: 'string',
description: ( localize(7697, 'Unique identifier of the notebook output renderer.')),
description: ( localize(7953, 'Unique identifier of the notebook output renderer.')),
},
[NotebookRendererContribution.displayName]: {
type: 'string',
description: ( localize(7698, 'Human readable name of the notebook output renderer.')),
description: ( localize(7954, 'Human readable name of the notebook output renderer.')),
},

@@ -126,3 +126,3 @@ [NotebookRendererContribution.hardDependencies]: {

markdownDescription: ( localize(
7699,
7955,
'List of kernel dependencies the renderer requires. If any of the dependencies are present in the `NotebookKernel.preloads`, the renderer can be used.'

@@ -136,3 +136,3 @@ )),

markdownDescription: ( localize(
7700,
7956,
'List of soft kernel dependencies the renderer can make use of. If any of the dependencies are present in the `NotebookKernel.preloads`, the renderer will be preferred over renderers that don\'t interact with the kernel.'

@@ -150,13 +150,13 @@ )),

( localize(
7701,
7957,
'Messaging is required. The renderer will only be used when it\'s part of an extension that can be run in an extension host.'
)),
( localize(
7702,
7958,
'The renderer is better with messaging available, but it\'s not requried.'
)),
( localize(7703, 'The renderer does not require messaging.')),
( localize(7959, 'The renderer does not require messaging.')),
],
description: ( localize(
7704,
7960,
'Defines how and if the renderer needs to communicate with an extension host, via `createRendererMessaging`. Renderers with stronger messaging requirements may not work in all environments.'

@@ -177,3 +177,3 @@ )),

type: 'array',
description: ( localize(7705, 'Set of globs that the notebook is for.')),
description: ( localize(7961, 'Set of globs that the notebook is for.')),
items: {

@@ -184,3 +184,3 @@ type: 'string'

[NotebookRendererContribution.entrypoint]: {
description: ( localize(7706, 'File to load in the webview to render the extension.')),
description: ( localize(7962, 'File to load in the webview to render the extension.')),
type: 'string',

@@ -196,3 +196,3 @@ },

[NotebookRendererContribution.entrypoint]: {
description: ( localize(7706, 'File to load in the webview to render the extension.')),
description: ( localize(7962, 'File to load in the webview to render the extension.')),
type: 'object',

@@ -203,7 +203,7 @@ required: ['extends', 'path'],

type: 'string',
description: ( localize(7707, 'Existing renderer that this one extends.')),
description: ( localize(7963, 'Existing renderer that this one extends.')),
},
path: {
type: 'string',
description: ( localize(7706, 'File to load in the webview to render the extension.')),
description: ( localize(7962, 'File to load in the webview to render the extension.')),
},

@@ -220,3 +220,3 @@ }

const notebookPreloadContribution = {
description: ( localize(7708, 'Contributes notebook preloads.')),
description: ( localize(7964, 'Contributes notebook preloads.')),
type: 'array',

@@ -233,7 +233,7 @@ defaultSnippets: [{ body: [{ type: '', entrypoint: '' }] }],

type: 'string',
description: ( localize(7709, 'Type of the notebook.')),
description: ( localize(7965, 'Type of the notebook.')),
},
[NotebookPreloadContribution.entrypoint]: {
type: 'string',
description: ( localize(7710, 'Path to file loaded in the webview.')),
description: ( localize(7966, 'Path to file loaded in the webview.')),
},

@@ -244,3 +244,3 @@ [NotebookPreloadContribution.localResourceRoots]: {

description: ( localize(
7711,
7967,
'Paths to additional resources that should be allowed in the webview.'

@@ -292,4 +292,4 @@ )),

const headers = [
( localize(7712, "ID")),
( localize(7713, "Name")),
( localize(7968, "ID")),
( localize(7969, "Name")),
];

@@ -327,4 +327,4 @@ const rows = ( (contrib

const headers = [
( localize(7714, "Name")),
( localize(7715, "Mimetypes")),
( localize(7970, "Name")),
( localize(7971, "Mimetypes")),
];

@@ -350,3 +350,3 @@ const rows = ( (contrib

id: 'notebooks',
label: ( localize(7716, "Notebooks")),
label: ( localize(7972, "Notebooks")),
access: {

@@ -359,3 +359,3 @@ canToggle: false

id: 'notebookRenderer',
label: ( localize(7717, "Notebook Renderers")),
label: ( localize(7973, "Notebook Renderers")),
access: {

@@ -362,0 +362,0 @@ canToggle: false

@@ -29,3 +29,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

this._logService.debug(`Execution`, `${JSON.stringify(( (cellsArr.map(c => c.handle))))}`);
const message = ( localize(3294, "Executing a notebook cell will run code from this workspace."));
const message = ( localize(3334, "Executing a notebook cell will run code from this workspace."));
const trust = await this._workspaceTrustRequestService.requestWorkspaceTrust({ message });

@@ -32,0 +32,0 @@ if (!trust) {

@@ -115,3 +115,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

id: 'notebook.clearNotebookKernelsMRUCache',
title: ( localize2(3298, "Clear Notebook Kernels MRU Cache")),
title: ( localize2(3338, "Clear Notebook Kernels MRU Cache")),
category: Categories.Developer,

@@ -118,0 +118,0 @@ f1: true

@@ -74,10 +74,10 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

this.notificationService.prompt(Severity$1.Info, ( localize(
3295,
3335,
"Disable other keymaps ({0}) to avoid conflicts between keybindings?",
( (distinct(( (oldKeymaps.map(k => k.local.manifest.displayName)))).map(name => `'${name}'`))).join(', ')
)), [{
label: ( localize(3296, "Yes")),
label: ( localize(3336, "Yes")),
run: () => onPrompt(true)
}, {
label: ( localize(3297, "No")),
label: ( localize(3337, "No")),
run: () => onPrompt(false)

@@ -84,0 +84,0 @@ }]);

@@ -11,3 +11,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

super();
this._logger = this._register(loggerService.createLogger(logChannelId, { name: ( localize(3299, "Notebook")) }));
this._logger = this._register(loggerService.createLogger(logChannelId, { name: ( localize(3339, "Notebook")) }));
}

@@ -14,0 +14,0 @@ debug(category, output) {

@@ -549,3 +549,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

toAction({
id: 'workbench.notebook.action.installMissingViewType', label: ( localize(3293, "Install extension for '{0}'", viewType)), run: async () => {
id: 'workbench.notebook.action.installMissingViewType', label: ( localize(3333, "Install extension for '{0}'", viewType)), run: async () => {
await this._instantiationService.createInstance(InstallRecommendedExtensionAction, knownProvider).run();

@@ -552,0 +552,0 @@ }

@@ -48,4 +48,4 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

static { FileWorkingCopyManager_1 = this; }
static { this.FILE_WORKING_COPY_SAVE_CREATE_SOURCE = SaveSourceRegistry.registerSource('fileWorkingCopyCreate.source', ( localize(7900, "File Created"))); }
static { this.FILE_WORKING_COPY_SAVE_REPLACE_SOURCE = SaveSourceRegistry.registerSource('fileWorkingCopyReplace.source', ( localize(7901, "File Replaced"))); }
static { this.FILE_WORKING_COPY_SAVE_CREATE_SOURCE = SaveSourceRegistry.registerSource('fileWorkingCopyCreate.source', ( localize(8156, "File Created"))); }
static { this.FILE_WORKING_COPY_SAVE_REPLACE_SOURCE = SaveSourceRegistry.registerSource('fileWorkingCopyReplace.source', ( localize(8157, "File Replaced"))); }
constructor(workingCopyTypeId, storedWorkingCopyModelFactory, untitledWorkingCopyModelFactory, fileService, lifecycleService, labelService, logService, workingCopyFileService, workingCopyBackupService, uriIdentityService, fileDialogService, filesConfigurationService, workingCopyService, notificationService, workingCopyEditorService, editorService, elevatedFileService, pathService, environmentService, dialogService, decorationsService, progressService) {

@@ -105,3 +105,3 @@ super();

this.stored = stored;
this.label = ( localize(7902, "File Working Copy Decorations"));
this.label = ( localize(8158, "File Working Copy Decorations"));
this._onDidChange = this._register(( (new Emitter())));

@@ -133,3 +133,3 @@ this.onDidChange = this._onDidChange.event;

strikethrough: true,
tooltip: ( localize(7903, "Deleted, Read-only")),
tooltip: ( localize(8159, "Deleted, Read-only")),
};

@@ -140,3 +140,3 @@ }

letter: Codicon.lockSmall,
tooltip: ( localize(7904, "Read-only")),
tooltip: ( localize(8160, "Read-only")),
};

@@ -148,3 +148,3 @@ }

strikethrough: true,
tooltip: ( localize(7905, "Deleted")),
tooltip: ( localize(8161, "Deleted")),
};

@@ -281,3 +281,3 @@ }

message: ( localize(
7906,
8162,
"'{0}' already exists. Do you want to replace it?",

@@ -287,3 +287,3 @@ basename(resource)

detail: ( localize(
7907,
8163,
"A file or folder with the name '{0}' already exists in the folder '{1}'. Replacing it will overwrite its current contents.",

@@ -293,3 +293,3 @@ basename(resource),

)),
primaryButton: ( localize(7908, "&&Replace"))
primaryButton: ( localize(8164, "&&Replace"))
});

@@ -302,8 +302,8 @@ return confirmed;

message: ( localize(
7909,
8165,
"'{0}' is marked as read-only. Do you want to save anyway?",
basename(resource)
)),
detail: ( localize(7910, "Paths can be configured as read-only via settings.")),
primaryButton: ( localize(7911, "&&Save Anyway"))
detail: ( localize(8166, "Paths can be configured as read-only via settings.")),
primaryButton: ( localize(8167, "&&Save Anyway"))
});

@@ -310,0 +310,0 @@ return confirmed;

@@ -78,3 +78,3 @@ import { __decorate, __param } from 'vscode/external/tslib/tslib.es6.js';

else {
this._register(this.lifecycleService.onWillShutdown(event => event.join(this.onWillShutdownDesktop(), { id: 'join.fileWorkingCopyManager', label: ( localize(10808, "Saving working copies")) })));
this._register(this.lifecycleService.onWillShutdown(event => event.join(this.onWillShutdownDesktop(), { id: 'join.fileWorkingCopyManager', label: ( localize(10851, "Saving working copies")) })));
}

@@ -81,0 +81,0 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc