@codingame/monaco-vscode-api 26.2.2 → 28.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/missing-services.js +507 -27
- package/package.json +9 -9
- package/service-override/tools/editor.d.ts +4 -2
- package/service-override/tools/editor.js +1 -0
- package/services.d.ts +16 -1
- package/services.js +21 -4
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/dom.d.ts +0 -15
- package/vscode/src/vs/base/browser/dom.js +3 -42
- package/vscode/src/vs/base/browser/pixelRatio.js +4 -1
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.js +3 -3
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +1 -1
- package/vscode/src/vs/base/browser/ui/animations/animations.d.ts +40 -0
- package/vscode/src/vs/base/browser/ui/animations/animations.js +373 -0
- package/vscode/src/vs/base/browser/ui/button/button.js +11 -4
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.d.ts +3 -42
- package/vscode/src/vs/base/browser/ui/contextview/contextview.js +48 -126
- package/vscode/src/vs/base/browser/ui/dialog/dialog.css +19 -2
- package/vscode/src/vs/base/browser/ui/dialog/dialog.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/dialog/dialog.js +2 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css +5 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +2 -1
- package/vscode/src/vs/base/browser/ui/grid/grid.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/grid/grid.js +2 -2
- package/vscode/src/vs/base/browser/ui/grid/gridview.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/grid/gridview.js +6 -2
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css +1 -0
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +8 -3
- package/vscode/src/vs/base/browser/ui/list/listView.js +9 -2
- package/vscode/src/vs/base/browser/ui/menu/menu.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/menu/menu.js +12 -10
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.js +6 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +2 -2
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.js +2 -1
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css +42 -5
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.js +69 -35
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxNative.js +8 -3
- package/vscode/src/vs/base/browser/ui/splitview/paneview.js +1 -1
- package/vscode/src/vs/base/browser/ui/table/tableWidget.js +1 -1
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -1
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +24 -19
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +3 -1
- package/vscode/src/vs/base/browser/ui/tree/treeDefaults.js +1 -1
- package/vscode/src/vs/base/common/actions.d.ts +4 -0
- package/vscode/src/vs/base/common/actions.js +15 -1
- package/vscode/src/vs/base/common/codicons.d.ts +2 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +2 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +2 -0
- package/vscode/src/vs/base/common/date.js +40 -40
- package/vscode/src/vs/base/common/defaultAccount.d.ts +5 -0
- package/vscode/src/vs/base/common/errorMessage.js +6 -6
- package/vscode/src/vs/base/common/event.d.ts +3 -2
- package/vscode/src/vs/base/common/event.js +40 -1
- package/vscode/src/vs/base/common/jsonErrorMessages.js +9 -9
- package/vscode/src/vs/base/common/keyCodes.js +4 -2
- package/vscode/src/vs/base/common/keybindingLabels.js +20 -20
- package/vscode/src/vs/base/common/layout.d.ts +67 -0
- package/vscode/src/vs/base/common/layout.js +96 -0
- package/vscode/src/vs/base/common/lifecycle.d.ts +32 -0
- package/vscode/src/vs/base/common/lifecycle.js +58 -1
- package/vscode/src/vs/base/common/mime.js +7 -5
- package/vscode/src/vs/base/common/parsers.d.ts +32 -0
- package/vscode/src/vs/base/common/parsers.js +54 -0
- package/vscode/src/vs/base/common/platform.d.ts +1 -0
- package/vscode/src/vs/base/common/product.d.ts +2 -0
- package/vscode/src/vs/base/common/strings.d.ts +0 -30
- package/vscode/src/vs/base/common/strings.js +0 -11
- package/vscode/src/vs/base/common/uri.js +5 -1
- package/vscode/src/vs/base/common/yaml.d.ts +29 -53
- package/vscode/src/vs/base/common/yaml.js +1119 -502
- package/vscode/src/vs/base/parts/ipc/common/ipc.js +3 -2
- package/vscode/src/vs/base/parts/ipc/common/ipc.net.js +2 -2
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +21 -11
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.js +4 -4
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextInput.js +1 -1
- package/vscode/src/vs/editor/browser/coreCommands.js +3 -3
- package/vscode/src/vs/editor/browser/editorExtensions.js +9 -9
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/fullFileRenderStrategy.js +3 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.js +3 -0
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +1 -1
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +4 -4
- package/vscode/src/vs/editor/browser/view/viewController.js +29 -9
- package/vscode/src/vs/editor/browser/view.d.ts +3 -1
- package/vscode/src/vs/editor/browser/view.js +10 -7
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +5 -1
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +0 -3
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +3 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +8 -4
- package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css +1 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.d.ts +2 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.js +4 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -12
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +12 -12
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin.js +4 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditor.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.js +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +7 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +4 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/registrations.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/colors.js +3 -3
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl.js +1 -1
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +50 -50
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +10 -3
- package/vscode/src/vs/editor/common/config/editorOptions.js +428 -385
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +72 -72
- package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +5 -0
- package/vscode/src/vs/editor/common/core/edits/stringEdit.js +19 -21
- package/vscode/src/vs/editor/common/core/ranges/offsetRange.d.ts +4 -0
- package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.d.ts +7 -1
- package/vscode/src/vs/editor/common/cursor/cursorMoveCommands.js +93 -3
- package/vscode/src/vs/editor/common/editorContextKeys.d.ts +1 -0
- package/vscode/src/vs/editor/common/editorContextKeys.js +49 -48
- package/vscode/src/vs/editor/common/languageFeatureRegistry.d.ts +1 -0
- package/vscode/src/vs/editor/common/languageFeatureRegistry.js +8 -1
- package/vscode/src/vs/editor/common/languageSelector.d.ts +1 -0
- package/vscode/src/vs/editor/common/languageSelector.js +15 -1
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +13 -0
- package/vscode/src/vs/editor/common/languages.js +56 -56
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsImpl.js +1 -1
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/bracketPairsTree.js +1 -1
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/colorizedBracketPairsDecorationProvider.js +1 -1
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/prefixSumComputer.js +6 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +9 -4
- package/vscode/src/vs/editor/common/model/textModel.js +99 -34
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.d.ts +3 -2
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +3 -0
- package/vscode/src/vs/editor/common/model/tokens/annotations.js +9 -1
- package/vscode/src/vs/editor/common/model/tokens/tokenizationFontDecorationsProvider.js +2 -2
- package/vscode/src/vs/editor/common/model.d.ts +2 -1
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +2 -1
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +1 -0
- package/vscode/src/vs/editor/common/standaloneStrings.d.ts +1 -0
- package/vscode/src/vs/editor/common/standaloneStrings.js +55 -49
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +25 -5
- package/vscode/src/vs/editor/common/textModelEvents.js +13 -4
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.d.ts +14 -4
- package/vscode/src/vs/editor/common/viewLayout/lineHeights.js +192 -91
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.d.ts +3 -3
- package/vscode/src/vs/editor/common/viewLayout/linesLayout.js +11 -15
- package/vscode/src/vs/editor/common/viewLayout/viewLayout.d.ts +3 -3
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/common/viewModel/inlineDecorations.d.ts +71 -7
- package/vscode/src/vs/editor/common/viewModel/inlineDecorations.js +180 -14
- package/vscode/src/vs/editor/common/viewModel/minimapTokensColorTracker.js +8 -2
- package/vscode/src/vs/editor/common/viewModel/modelLineProjection.d.ts +2 -2
- package/vscode/src/vs/editor/common/viewModel/modelLineProjection.js +31 -82
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.d.ts +2 -23
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.js +19 -114
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +11 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +174 -141
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.js +16 -3
- package/vscode/src/vs/editor/common/viewModel.d.ts +6 -3
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +19 -19
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.d.ts +9 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +56 -13
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionModel.js +23 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +59 -52
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +3 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerModel.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerModel.js +6 -4
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerSaturationBox.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerStrip.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +5 -5
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css +1 -1
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.d.ts +25 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +38 -20
- package/vscode/src/vs/editor/contrib/find/browser/findDecorations.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findModel.d.ts +5 -0
- package/vscode/src/vs/editor/contrib/find/browser/findModel.js +2 -1
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.css +5 -7
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +29 -1
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +101 -33
- package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.css +39 -3
- package/vscode/src/vs/editor/contrib/floatingMenu/browser/floatingMenu.js +11 -7
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/folding/browser/foldingModel.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/folding/browser/foldingModel.js +1 -0
- package/vscode/src/vs/editor/contrib/folding/browser/hiddenRangeModel.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/folding/browser/hiddenRangeModel.js +1 -0
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -13
- package/vscode/src/vs/editor/contrib/gotoError/browser/markerSelectionStatus.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/gotoError/browser/markerSelectionStatus.js +60 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +33 -33
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css +6 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +4 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +22 -22
- package/vscode/src/vs/editor/contrib/hover/browser/hoverContribution.js +6 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverUtils.js +8 -4
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +27 -18
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +18 -18
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/common.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/common.js +11 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +4 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +6 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +41 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +10 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +44 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +18 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +79 -37
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +53 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +5 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/textModelValueReference.d.ts +30 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/textModelValueReference.js +65 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +27 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +9 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +30 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +20 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +4 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +6 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +4 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +17 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.d.ts +7 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.js +74 -39
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistancePreviewEditor.d.ts +6 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistancePreviewEditor.js +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +14 -0
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +31 -31
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +6 -6
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +2 -0
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsModel.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css +4 -0
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +19 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/editorNavigationQuickAccess.js +9 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +20 -10
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css +1 -0
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +8 -8
- package/vscode/src/vs/editor/contrib/semanticTokens/browser/documentSemanticTokens.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/semanticTokens/browser/documentSemanticTokens.js +42 -24
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +1 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +5 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css +3 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -9
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.js +3 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +22 -17
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +4 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css +34 -34
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +3 -3
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.d.ts +3 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneCodeEditor.js +10 -6
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +3 -3
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +71 -65
- package/vscode/src/vs/platform/accessibility/browser/accessibilityService.d.ts +7 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibilityService.js +38 -4
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +7 -1
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.js +6 -0
- package/vscode/src/vs/platform/accessibility/common/accessibility.service.d.ts +2 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.d.ts +104 -4
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +533 -56
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +89 -14
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.d.ts +6 -2
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +133 -10
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.service.d.ts +2 -2
- package/vscode/src/vs/platform/actions/browser/floatingMenu.js +1 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +2 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +15 -4
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +11 -0
- package/vscode/src/vs/platform/actions/browser/toolbar.js +27 -21
- package/vscode/src/vs/platform/actions/common/actions.d.ts +9 -1
- package/vscode/src/vs/platform/actions/common/actions.js +25 -2
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +11 -4
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +24 -12
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +26 -12
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/contextview/browser/contextView.d.ts +2 -0
- package/vscode/src/vs/platform/contextview/browser/contextView.service.d.ts +2 -1
- package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.d.ts +4 -1
- package/vscode/src/vs/platform/defaultAccount/common/defaultAccount.service.d.ts +4 -1
- package/vscode/src/vs/platform/dialogs/common/dialogs.d.ts +11 -0
- package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/editor/common/editor.d.ts +32 -0
- package/vscode/src/vs/platform/environment/common/argv.d.ts +1 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +0 -1
- package/vscode/src/vs/platform/environment/common/environmentService.d.ts +0 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionEnablementService.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +14 -14
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +21 -21
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +1 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +12 -1
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +15 -4
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/hover/browser/hover.css +1 -1
- package/vscode/src/vs/platform/hover/browser/hoverService.js +1 -1
- package/vscode/src/vs/platform/hover/browser/hoverWidget.js +3 -2
- package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +5 -5
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
- package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
- package/vscode/src/vs/platform/list/browser/listService.js +25 -25
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/mcp/common/mcpManagement.d.ts +2 -1
- package/vscode/src/vs/platform/mcp/common/mcpManagementIpc.d.ts +42 -0
- package/vscode/src/vs/platform/mcp/common/mcpManagementIpc.js +105 -0
- package/vscode/src/vs/platform/mcp/common/mcpManagementService.d.ts +130 -0
- package/vscode/src/vs/platform/mcp/common/mcpManagementService.js +666 -0
- package/vscode/src/vs/platform/mcp/common/mcpPlatformTypes.d.ts +12 -0
- package/vscode/src/vs/platform/mcp/common/mcpResourceScannerService.service.d.ts +1 -0
- package/vscode/src/vs/platform/mcp/common/modelContextProtocol.d.ts +2917 -0
- package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.d.ts +1 -0
- package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.config.contribution.js +32 -0
- package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.d.ts +44 -0
- package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.js +62 -0
- package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.service.d.ts +18 -0
- package/vscode/src/vs/platform/meteredConnection/common/meteredConnection.service.js +6 -0
- package/vscode/src/vs/platform/native/common/native.d.ts +43 -5
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +10 -2
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +13 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +5 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +9 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +15 -4
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +77 -15
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +6 -6
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +1 -0
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +5 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +19 -0
- package/vscode/src/vs/platform/remote/common/remoteHosts.d.ts +13 -0
- package/vscode/src/vs/platform/remote/common/remoteHosts.js +11 -1
- package/vscode/src/vs/platform/request/common/request.js +19 -19
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +8 -2
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +13 -2
- package/vscode/src/vs/platform/terminal/common/terminal.js +2 -0
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +1 -1
- package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +31 -31
- package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
- package/vscode/src/vs/platform/terminal/common/xterm/shellIntegrationAddon.d.ts +0 -13
- package/vscode/src/vs/platform/terminal/common/xterm/shellIntegrationAddon.js +2 -2
- package/vscode/src/vs/platform/theme/browser/defaultStyles.js +3 -3
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -18
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +51 -51
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/theme/common/sizeRegistry.d.ts +2 -0
- package/vscode/src/vs/platform/theme/common/sizeUtils.d.ts +90 -0
- package/vscode/src/vs/platform/theme/common/sizeUtils.js +142 -0
- package/vscode/src/vs/platform/theme/common/sizes/baseSizes.d.ts +11 -0
- package/vscode/src/vs/platform/theme/common/sizes/baseSizes.js +18 -0
- package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
- package/vscode/src/vs/platform/tunnel/common/tunnel.js +4 -3
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/update/common/update.d.ts +14 -6
- package/vscode/src/vs/platform/update/common/update.js +4 -3
- package/vscode/src/vs/platform/update/common/update.service.d.ts +5 -2
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
- package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
- package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
- package/vscode/src/vs/platform/userInteraction/browser/userInteractionService.d.ts +25 -0
- package/vscode/src/vs/platform/userInteraction/browser/userInteractionService.service.d.ts +28 -0
- package/vscode/src/vs/platform/userInteraction/browser/userInteractionService.service.js +6 -0
- package/vscode/src/vs/platform/userInteraction/browser/userInteractionServiceImpl.d.ts +13 -0
- package/vscode/src/vs/platform/userInteraction/browser/userInteractionServiceImpl.js +62 -0
- package/vscode/src/vs/platform/window/common/window.d.ts +1 -0
- package/vscode/src/vs/platform/workspace/common/workspace.d.ts +1 -7
- package/vscode/src/vs/platform/workspace/common/workspace.js +3 -16
- package/vscode/src/vs/platform/workspace/common/workspace.service.d.ts +4 -0
- package/vscode/src/vs/sessions/contrib/agentFeedback/browser/agentFeedbackService.service.d.ts +47 -0
- package/vscode/src/vs/{workbench/services/layout/common/workbenchModeService.service.js → sessions/contrib/agentFeedback/browser/agentFeedbackService.service.js} +2 -2
- package/vscode/src/vs/sessions/contrib/chat/browser/sessionTargetPicker.d.ts +73 -0
- package/vscode/src/vs/sessions/contrib/chat/browser/sessionsConfigurationService.service.d.ts +37 -0
- package/vscode/src/vs/sessions/contrib/chat/browser/sessionsConfigurationService.service.js +6 -0
- package/vscode/src/vs/sessions/contrib/sessions/browser/sessionsManagementService.service.d.ts +47 -0
- package/vscode/src/vs/sessions/contrib/sessions/browser/sessionsManagementService.service.js +6 -0
- package/vscode/src/vs/workbench/api/browser/statusBarExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +145 -7
- package/vscode/src/vs/workbench/api/common/extHost.common.services.js +6 -0
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +250 -12
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +17 -3
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +6 -5
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +23 -3
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +68 -5
- package/vscode/src/vs/workbench/api/common/extHostChatContext.js +34 -13
- package/vscode/src/vs/workbench/api/common/extHostChatDebug.d.ts +22 -0
- package/vscode/src/vs/workbench/api/common/extHostChatDebug.js +287 -0
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +4 -12
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +158 -139
- package/vscode/src/vs/workbench/api/common/extHostComments.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDocuments.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDocuments.js +6 -6
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +6 -3
- package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.d.ts +31 -0
- package/vscode/src/vs/workbench/api/common/extHostGitExtensionService.js +167 -0
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +41 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +0 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +7 -4
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +4 -0
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +15 -1
- package/vscode/src/vs/workbench/api/common/extHostMeteredConnection.d.ts +19 -0
- package/vscode/src/vs/workbench/api/common/extHostMeteredConnection.js +28 -0
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +6 -3
- package/vscode/src/vs/workbench/api/common/extHostPower.d.ts +45 -0
- package/vscode/src/vs/workbench/api/common/extHostPower.js +88 -0
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +3 -0
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +46 -12
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostTextEditors.js +7 -7
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +11 -24
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +11 -5
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +173 -16
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +159 -8
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +132 -7
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +0 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -10
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +11 -11
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
- package/vscode/src/vs/workbench/browser/actions/layoutActions.js +130 -130
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
- package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
- package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
- package/vscode/src/vs/workbench/browser/contextkeys.d.ts +2 -8
- package/vscode/src/vs/workbench/browser/contextkeys.js +8 -26
- package/vscode/src/vs/workbench/browser/editor.js +2 -2
- package/vscode/src/vs/workbench/browser/labels.js +4 -4
- package/vscode/src/vs/workbench/browser/media/style.css +14 -1
- package/vscode/src/vs/workbench/browser/panecomposite.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/panecomposite.js +3 -1
- package/vscode/src/vs/workbench/browser/part.d.ts +1 -1
- package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.d.ts +15 -4
- package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +112 -33
- package/vscode/src/vs/workbench/browser/parts/activitybar/media/activityaction.css +26 -6
- package/vscode/src/vs/workbench/browser/parts/activitybar/media/activitybarpart.css +10 -1
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +44 -40
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.d.ts +2 -0
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +39 -6
- package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +13 -13
- package/vscode/src/vs/workbench/browser/parts/compositePart.d.ts +1 -1
- package/vscode/src/vs/workbench/browser/parts/compositePart.js +23 -17
- package/vscode/src/vs/workbench/browser/parts/dialogs/dialog.d.ts +11 -0
- package/vscode/src/vs/{platform/dialogs/browser → workbench/browser/parts/dialogs}/dialog.js +12 -10
- package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +19 -7
- package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +37 -37
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +12 -12
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +8 -10
- package/vscode/src/vs/workbench/browser/parts/editor/editor.d.ts +3 -2
- package/vscode/src/vs/workbench/browser/parts/editor/editor.js +2 -0
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +135 -135
- package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.d.ts +6 -0
- package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +220 -20
- package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.d.ts +3 -1
- package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +14 -6
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +7 -7
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +13 -13
- package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/editor/editorPart.d.ts +5 -5
- package/vscode/src/vs/workbench/browser/parts/editor/editorPart.js +16 -9
- package/vscode/src/vs/workbench/browser/parts/editor/editorParts.d.ts +9 -2
- package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +79 -22
- package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
- package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
- package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
- package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +4 -3
- package/vscode/src/vs/workbench/browser/parts/editor/media/breadcrumbscontrol.css +4 -0
- package/vscode/src/vs/workbench/browser/parts/editor/media/editorgroupview.css +46 -0
- package/vscode/src/vs/workbench/browser/parts/editor/media/modalEditorPart.css +142 -0
- package/vscode/src/vs/workbench/browser/parts/editor/media/multieditortabscontrol.css +8 -0
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.d.ts +64 -0
- package/vscode/src/vs/workbench/browser/parts/editor/modalEditorPart.js +405 -0
- package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +21 -20
- package/vscode/src/vs/workbench/browser/parts/media/paneCompositePart.css +9 -1
- package/vscode/src/vs/workbench/browser/parts/notifications/media/notificationsCenter.css +14 -2
- package/vscode/src/vs/workbench/browser/parts/notifications/media/notificationsToasts.css +19 -5
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.d.ts +12 -1
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +49 -18
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.d.ts +10 -1
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +87 -28
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +92 -11
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.d.ts +5 -1
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +58 -25
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.d.ts +8 -1
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +62 -20
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.d.ts +3 -1
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +24 -8
- package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.d.ts +3 -2
- package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +9 -8
- package/vscode/src/vs/workbench/browser/parts/paneCompositePart.d.ts +13 -7
- package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +89 -68
- package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +38 -50
- package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +6 -4
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.d.ts +2 -0
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +44 -7
- package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +21 -21
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +23 -14
- package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/views/media/paneviewlet.css +1 -1
- package/vscode/src/vs/workbench/browser/parts/views/media/views.css +33 -2
- package/vscode/src/vs/workbench/browser/parts/views/treeView.js +8 -7
- package/vscode/src/vs/workbench/browser/parts/views/viewFilter.d.ts +19 -1
- package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +27 -4
- package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +7 -5
- package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +178 -174
- package/vscode/src/vs/workbench/browser/parts/visibleViewContainersTracker.d.ts +29 -0
- package/vscode/src/vs/workbench/browser/parts/visibleViewContainersTracker.js +104 -0
- package/vscode/src/vs/workbench/browser/quickaccess.js +1 -1
- package/vscode/src/vs/workbench/browser/window.js +14 -14
- package/vscode/src/vs/workbench/browser/workbench.contribution.js +317 -225
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.d.ts +4 -2
- package/vscode/src/vs/workbench/common/contextkeys.js +78 -76
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +4 -1
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +7 -1
- package/vscode/src/vs/workbench/common/editor.js +5 -4
- package/vscode/src/vs/workbench/common/notifications.d.ts +11 -0
- package/vscode/src/vs/workbench/common/notifications.js +19 -1
- package/vscode/src/vs/workbench/common/theme.d.ts +1 -0
- package/vscode/src/vs/workbench/common/theme.js +161 -160
- package/vscode/src/vs/workbench/common/views.d.ts +32 -5
- package/vscode/src/vs/workbench/common/views.js +16 -12
- package/vscode/src/vs/workbench/common/views.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +4 -2
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +170 -152
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.js +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +40 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +524 -102
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +4 -6
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +26 -18
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +9 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +34 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentResolveService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentWidgetRegistry.service.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatAttachmentWidgetRegistry.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatDynamicVariables.d.ts +44 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatDynamicVariables.js +243 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatScreenshotContext.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatVariables.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/attachments/chatVariables.js +76 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +48 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatTipService.service.d.ts +73 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileRewriter.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/widgetHosts/editor/chatEditorInput.js +30 -17
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.d.ts +24 -1
- package/vscode/src/vs/workbench/contrib/chat/common/actions/chatContextKeys.js +137 -66
- package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.d.ts +71 -0
- package/vscode/src/vs/workbench/contrib/chat/common/aiCustomizationWorkspaceService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.d.ts +40 -4
- package/vscode/src/vs/workbench/contrib/chat/common/attachments/chatVariableEntries.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.service.d.ts +91 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatDebugService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +10 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +41 -13
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.d.ts +123 -5
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.js +4 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.d.ts +27 -13
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +11 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +36 -13
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +34 -9
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +29 -11
- package/vscode/src/vs/workbench/contrib/chat/common/contextContrib/chatContext.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/editing/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +52 -6
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +253 -32
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.service.d.ts +33 -3
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.d.ts +21 -6
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatModel.js +104 -12
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.d.ts +22 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatQuestionCarouselData.js +26 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.d.ts +71 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatProgressTypes/chatToolInvocation.js +298 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatUri.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatUri.js +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.d.ts +17 -33
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.js +10 -73
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatAgents.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/participants/chatSlashCommands.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.d.ts +23 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.service.d.ts +64 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginRepositoryService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/agentPluginService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginInstallService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.d.ts +21 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginMarketplaceService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/plugins/pluginSource.d.ts +53 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +7 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +35 -20
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +10 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +20 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.d.ts +54 -76
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookSchema.js +221 -158
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/hookTypes.js +94 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.d.ts +67 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/languageProviders/promptFileAttributes.js +565 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.d.ts +21 -36
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptFileParser.js +148 -111
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/promptTypes.js +8 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +60 -18
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.js +3 -9
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +30 -7
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptEditHelper.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptEditHelper.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptsServiceUtils.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/utils/promptsServiceUtils.js +12 -1
- package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.d.ts +5 -1
- package/vscode/src/vs/workbench/contrib/chat/common/requestParser/chatRequestParser.js +15 -3
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.d.ts +57 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/askQuestionsTool.js +544 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/confirmationTool.js +40 -2
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/manageTodoListTool.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/resolveDebugEventDetailsTool.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/resolveDebugEventDetailsTool.js +205 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.d.ts +3 -6
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/runSubagentTool.js +40 -29
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/taskCompleteTool.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/taskCompleteTool.js +53 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/builtinTools/tools.js +17 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/chatTodoListService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsConfirmationService.service.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsContribution.js +45 -25
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.d.ts +9 -11
- package/vscode/src/vs/workbench/contrib/chat/common/tools/languageModelToolsService.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.js +12 -1
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatResponseResourceFileSystemProvider.service.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatResponseResourceFileSystemProvider.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +11 -11
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css +1 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.css +1 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.d.ts +19 -1
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +35 -11
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.d.ts +1 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +9 -11
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/suggestEnabledInput/suggestEnabledInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +6 -6
- package/vscode/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.js +65 -65
- package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +5 -4
- package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +4 -4
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +4 -4
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +7 -4
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +30 -28
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
- package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.js +4 -1
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +12 -12
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +29 -29
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +75 -75
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +14 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +38 -38
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +5 -8
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +4 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/media/repl.css +7 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +19 -19
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +3 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +68 -68
- package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +7 -9
- package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
- package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +49 -47
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +14 -14
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +159 -147
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +181 -181
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +29 -25
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsList.js +4 -3
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.d.ts +10 -2
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +93 -13
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +92 -91
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +24 -6
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +58 -31
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +134 -82
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extension.css +24 -3
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionsViewlet.css +34 -9
- package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionQuery.js +2 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +3 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +3 -3
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +3 -3
- package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
- package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +84 -84
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +27 -27
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +50 -50
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +18 -17
- package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/common/explorerModel.js +1 -0
- package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/git/browser/gitService.d.ts +25 -0
- package/vscode/src/vs/workbench/contrib/git/browser/gitService.js +61 -0
- package/vscode/src/vs/workbench/contrib/git/common/gitService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/git/common/gitService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +71 -69
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.d.ts +259 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerActions.js +1225 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.d.ts +72 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditor.js +996 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerEditorInput.js +49 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerIcons.js +12 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.d.ts +88 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpServerWidgets.js +464 -0
- package/vscode/src/vs/workbench/contrib/mcp/browser/media/mcpServerEditor.css +94 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +118 -31
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.d.ts +11 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.service.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpGatewayService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSandboxService.service.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpSandboxService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.d.ts +15 -3
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpServer.js +155 -19
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTaskManager.js +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +19 -3
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +15 -12
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypesUtils.js +1 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +1 -2917
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +23 -23
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnection.contribution.js +55 -0
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/meteredConnection/browser/meteredConnectionStatus.js +62 -0
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/findModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.css +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +19 -18
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOperations.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/insertCellActions.js +24 -24
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffComponents.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/diffElementOutputs.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookCellDiffDecorator.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditor.js +2 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffEditorBrowser.js +5 -5
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/notebookDiffList.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/media/notebook.css +13 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -5
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewModel/notebookViewModelImpl.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +14 -14
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +4 -5
- package/vscode/src/vs/workbench/contrib/preferences/browser/media/keybindings.css +3 -0
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +11 -11
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +151 -57
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsTreeModels.js +16 -4
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +5 -6
- package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +18 -17
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
- package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +84 -84
- package/vscode/src/vs/workbench/contrib/remote/browser/urlFinder.d.ts +15 -2
- package/vscode/src/vs/workbench/contrib/remote/browser/urlFinder.js +28 -5
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +11 -11
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +6 -6
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +9 -9
- package/vscode/src/vs/workbench/contrib/search/browser/media/searchview.css +3 -3
- package/vscode/src/vs/workbench/contrib/search/browser/notebookSearch/notebookSearchModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
- package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +6 -6
- package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
- package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
- package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/searchTreeModel/fileMatch.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +55 -55
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +33 -10
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.d.ts +433 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/problemMatcher.js +1637 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.d.ts +514 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/taskConfiguration.js +1796 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +18 -14
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +30 -27
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +6 -7
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +195 -87
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.d.ts +5 -3
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +17 -9
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +17 -17
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +2 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +71 -61
- package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/inlineHint/common/terminalInitialHintConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.d.ts +6 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/notification/common/terminalNotificationConfiguration.js +21 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +30 -30
- package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +5 -5
- package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +6 -6
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +6 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/webview/browser/webviewFindAccessibilityHelp.js +118 -0
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +10 -4
- package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.d.ts +6 -2
- package/vscode/src/vs/workbench/services/accounts/browser/defaultAccount.js +193 -100
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +11 -11
- package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
- package/vscode/src/vs/workbench/services/banner/browser/bannerService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/browserElements/browser/browserElementsService.service.d.ts +2 -0
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.d.ts +9 -0
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +34 -17
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorGroupColumn.js +2 -2
- package/vscode/src/vs/workbench/services/editor/common/editorGroupFinder.d.ts +7 -7
- package/vscode/src/vs/workbench/services/editor/common/editorGroupFinder.js +39 -20
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +59 -3
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.js +6 -1
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.service.d.ts +14 -1
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +6 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.js +2 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/environment/browser/environmentService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/environment/browser/environmentService.js +16 -9
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
- package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
- package/vscode/src/vs/workbench/services/extensions/common/extensionHostProtocol.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +90 -90
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
- package/vscode/src/vs/workbench/services/host/browser/host.d.ts +11 -0
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +11 -0
- package/vscode/src/vs/workbench/services/language/common/languageService.js +24 -24
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.d.ts +3 -0
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +3 -0
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.d.ts +87 -0
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.js +702 -0
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/panecomposite/browser/panecomposite.service.d.ts +3 -0
- package/vscode/src/vs/workbench/services/power/common/powerService.d.ts +12 -0
- package/vscode/src/vs/workbench/services/power/common/powerService.service.d.ts +25 -0
- package/vscode/src/vs/workbench/services/power/common/powerService.service.js +6 -0
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
- package/vscode/src/vs/workbench/services/preferences/common/preferences.d.ts +1 -0
- package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.d.ts +1 -1
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +13 -13
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/search/common/textSearchManager.js +16 -14
- package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
- package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +3 -3
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +18 -18
- package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +8 -8
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/themes/common/tokenClassificationExtensionPoint.js +24 -24
- package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.d.ts +9 -9
- package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.js +10 -8
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +16 -16
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.d.ts +12 -0
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +7 -0
- package/vscode-dts/vscode.d.ts +26 -1
- package/vscode-dts/vscode.proposed.chatContextProvider.d.ts +47 -11
- package/vscode-dts/vscode.proposed.chatDebug.d.ts +657 -0
- package/vscode-dts/vscode.proposed.chatHooks.d.ts +1 -1
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +98 -12
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +36 -6
- package/vscode-dts/vscode.proposed.chatPromptFiles.d.ts +33 -0
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +16 -1
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +90 -15
- package/vscode-dts/vscode.proposed.d.ts +4 -1
- package/vscode-dts/{vscode.proposed.envIsAppPortable.d.ts → vscode.proposed.envIsConnectionMetered.d.ts} +7 -7
- package/vscode-dts/vscode.proposed.environmentPower.d.ts +166 -0
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +17 -0
- package/vscode-dts/vscode.proposed.languageModelToolSupportsModel.d.ts +1 -1
- package/vscode-dts/vscode.proposed.mcpServerDefinitions.d.ts +28 -0
- package/vscode-dts/vscode.proposed.terminalTitle.d.ts +37 -0
- package/vscode/src/vs/platform/assignment/common/assignment.d.ts +0 -85
- package/vscode/src/vs/platform/dialogs/browser/dialog.d.ts +0 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatContentParts.d.ts +0 -44
- package/vscode/src/vs/workbench/services/layout/common/workbenchModeService.d.ts +0 -16
- package/vscode/src/vs/workbench/services/layout/common/workbenchModeService.js +0 -20
- package/vscode/src/vs/workbench/services/layout/common/workbenchModeService.service.d.ts +0 -27
- package/vscode/src/vs/workbench/services/views/browser/viewsService.d.ts +0 -77
- package/vscode/src/vs/workbench/services/views/browser/viewsService.js +0 -733
- /package/vscode/src/vs/{workbench/contrib → platform}/mcp/common/modelContextProtocol.js +0 -0
- /package/vscode/src/vs/workbench/contrib/url/{browser → common}/trustedDomainService.service.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/url/{browser → common}/trustedDomainService.service.js +0 -0
|
@@ -7,6 +7,7 @@ import product from '../../platform/product/common/product.js';
|
|
|
7
7
|
import { Registry } from '../../platform/registry/common/platform.js';
|
|
8
8
|
import { ConfigurationMigrationWorkbenchContribution, DynamicWorkbenchSecurityConfiguration, workbenchConfigurationNodeBase, windowConfigurationNodeBase, DynamicWindowConfiguration, problemsConfigurationNodeBase, Extensions as Extensions$1 } from '../common/configuration.js';
|
|
9
9
|
import { registerWorkbenchContribution2, WorkbenchPhase } from '../common/contributions.js';
|
|
10
|
+
import { NotificationsSettings, NotificationsPosition } from '../common/notifications.js';
|
|
10
11
|
import { CustomEditorLabelService } from '../services/editor/common/customEditorLabelService.js';
|
|
11
12
|
import { LayoutSettings, EditorActionsLocation, EditorTabsMode, ActivityBarPosition } from '../services/layout/browser/layoutService.js';
|
|
12
13
|
import { defaultWindowTitleSeparator, defaultWindowTitle } from './parts/titlebar/windowTitle.js';
|
|
@@ -29,7 +30,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
29
30
|
"workbench.externalBrowser": {
|
|
30
31
|
type: "string",
|
|
31
32
|
markdownDescription: ( localize(
|
|
32
|
-
|
|
33
|
+
3804,
|
|
33
34
|
"Configure the browser to use for opening http or https links externally. This can either be the name of the browser (`edge`, `chrome`, `firefox`) or an absolute path to the browser's executable. Will use the system default if not set."
|
|
34
35
|
)),
|
|
35
36
|
included: isNative,
|
|
@@ -38,12 +39,12 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
38
39
|
"workbench.editor.titleScrollbarSizing": {
|
|
39
40
|
type: "string",
|
|
40
41
|
enum: ["default", "large"],
|
|
41
|
-
enumDescriptions: [( localize(
|
|
42
|
-
|
|
42
|
+
enumDescriptions: [( localize(3805, "The default size.")), ( localize(
|
|
43
|
+
3806,
|
|
43
44
|
"Increases the size, so it can be grabbed more easily with the mouse."
|
|
44
45
|
))],
|
|
45
46
|
description: ( localize(
|
|
46
|
-
|
|
47
|
+
3807,
|
|
47
48
|
"Controls the height of the scrollbars used for tabs and breadcrumbs in the editor title area."
|
|
48
49
|
)),
|
|
49
50
|
default: "default"
|
|
@@ -51,9 +52,9 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
51
52
|
"workbench.editor.titleScrollbarVisibility": {
|
|
52
53
|
type: "string",
|
|
53
54
|
enum: ["auto", "visible", "hidden"],
|
|
54
|
-
enumDescriptions: [( localize(
|
|
55
|
+
enumDescriptions: [( localize(3808, "The horizontal scrollbar will be visible only when necessary.")), ( localize(3809, "The horizontal scrollbar will always be visible.")), ( localize(3810, "The horizontal scrollbar will always be hidden."))],
|
|
55
56
|
description: ( localize(
|
|
56
|
-
|
|
57
|
+
3811,
|
|
57
58
|
"Controls the visibility of the scrollbars used for tabs and breadcrumbs in the editor title area."
|
|
58
59
|
)),
|
|
59
60
|
default: "auto"
|
|
@@ -61,12 +62,12 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
61
62
|
[LayoutSettings.EDITOR_TABS_MODE]: {
|
|
62
63
|
"type": "string",
|
|
63
64
|
"enum": [EditorTabsMode.MULTIPLE, EditorTabsMode.SINGLE, EditorTabsMode.NONE],
|
|
64
|
-
"enumDescriptions": [( localize(
|
|
65
|
-
|
|
65
|
+
"enumDescriptions": [( localize(3812, "Each editor is displayed as a tab in the editor title area.")), ( localize(
|
|
66
|
+
3813,
|
|
66
67
|
"The active editor is displayed as a single large tab in the editor title area."
|
|
67
|
-
)), ( localize(
|
|
68
|
+
)), ( localize(3814, "The editor title area is not displayed."))],
|
|
68
69
|
"description": ( localize(
|
|
69
|
-
|
|
70
|
+
3815,
|
|
70
71
|
"Controls whether opened editors should show as individual tabs, one single large tab or if the title area should not be shown."
|
|
71
72
|
)),
|
|
72
73
|
"default": "multiple"
|
|
@@ -79,23 +80,23 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
79
80
|
EditorActionsLocation.HIDDEN
|
|
80
81
|
],
|
|
81
82
|
"markdownEnumDescriptions": [( localize(
|
|
82
|
-
|
|
83
|
+
3816,
|
|
83
84
|
"Show editor actions in the window title bar when {0} is set to {1}. Otherwise, editor actions are shown in the editor tab bar.",
|
|
84
85
|
"`#workbench.editor.showTabs#`",
|
|
85
86
|
"`none`"
|
|
86
87
|
)), ( localize(
|
|
87
|
-
|
|
88
|
+
3817,
|
|
88
89
|
"Show editor actions in the window title bar. If {0} is set to {1}, editor actions are hidden.",
|
|
89
90
|
"`#window.customTitleBarVisibility#`",
|
|
90
91
|
"`never`"
|
|
91
|
-
)), ( localize(
|
|
92
|
-
"markdownDescription": ( localize(
|
|
92
|
+
)), ( localize(3818, "Editor actions are not shown."))],
|
|
93
|
+
"markdownDescription": ( localize(3819, "Controls where the editor actions are shown.")),
|
|
93
94
|
"default": "default"
|
|
94
95
|
},
|
|
95
96
|
"workbench.editor.alwaysShowEditorActions": {
|
|
96
97
|
"type": "boolean",
|
|
97
98
|
"markdownDescription": ( localize(
|
|
98
|
-
|
|
99
|
+
3820,
|
|
99
100
|
"Controls whether to always show the editor actions, even when the editor group is not active."
|
|
100
101
|
)),
|
|
101
102
|
"default": false
|
|
@@ -103,7 +104,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
103
104
|
"workbench.editor.wrapTabs": {
|
|
104
105
|
"type": "boolean",
|
|
105
106
|
"markdownDescription": ( localize(
|
|
106
|
-
|
|
107
|
+
3821,
|
|
107
108
|
"Controls whether tabs should be wrapped over multiple lines when exceeding available space or whether a scrollbar should appear instead. This value is ignored when {0} is not set to '{1}'.",
|
|
108
109
|
"`#workbench.editor.showTabs#`",
|
|
109
110
|
"`multiple`"
|
|
@@ -113,7 +114,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
113
114
|
"workbench.editor.scrollToSwitchTabs": {
|
|
114
115
|
"type": "boolean",
|
|
115
116
|
"markdownDescription": ( localize(
|
|
116
|
-
|
|
117
|
+
3822,
|
|
117
118
|
"Controls whether scrolling over tabs will open them or not. By default tabs will only reveal upon scrolling, but not open. You can press and hold the Shift-key while scrolling to change this behavior for that duration. This value is ignored when {0} is not set to {1}.",
|
|
118
119
|
"`#workbench.editor.showTabs#`",
|
|
119
120
|
"`multiple`"
|
|
@@ -123,7 +124,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
123
124
|
"workbench.editor.highlightModifiedTabs": {
|
|
124
125
|
"type": "boolean",
|
|
125
126
|
"markdownDescription": ( localize(
|
|
126
|
-
|
|
127
|
+
3823,
|
|
127
128
|
"Controls whether a top border is drawn on tabs for editors that have unsaved changes. This value is ignored when {0} is not set to {1}.",
|
|
128
129
|
"`#workbench.editor.showTabs#`",
|
|
129
130
|
`multiple`
|
|
@@ -132,18 +133,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
132
133
|
},
|
|
133
134
|
"workbench.editor.decorations.badges": {
|
|
134
135
|
"type": "boolean",
|
|
135
|
-
"markdownDescription": ( localize(
|
|
136
|
+
"markdownDescription": ( localize(3824, "Controls whether editor file decorations should use badges.")),
|
|
136
137
|
"default": true
|
|
137
138
|
},
|
|
138
139
|
"workbench.editor.decorations.colors": {
|
|
139
140
|
"type": "boolean",
|
|
140
|
-
"markdownDescription": ( localize(
|
|
141
|
+
"markdownDescription": ( localize(3825, "Controls whether editor file decorations should use colors.")),
|
|
141
142
|
"default": true
|
|
142
143
|
},
|
|
143
144
|
[CustomEditorLabelService.SETTING_ID_ENABLED]: {
|
|
144
145
|
"type": "boolean",
|
|
145
146
|
"markdownDescription": ( localize(
|
|
146
|
-
|
|
147
|
+
3826,
|
|
147
148
|
"Controls whether the custom workbench editor labels should be applied."
|
|
148
149
|
)),
|
|
149
150
|
"default": true
|
|
@@ -152,27 +153,27 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
152
153
|
"type": "object",
|
|
153
154
|
"markdownDescription": (() => {
|
|
154
155
|
let customEditorLabelDescription = ( localize(
|
|
155
|
-
|
|
156
|
+
3827,
|
|
156
157
|
"Controls the rendering of the editor label. Each __Item__ is a pattern that matches a file path. Both relative and absolute file paths are supported. The relative path must include the WORKSPACE_FOLDER (e.g `WORKSPACE_FOLDER/src/**.tsx` or `*/src/**.tsx`). Absolute patterns must start with a `/`. In case multiple patterns match, the longest matching path will be picked. Each __Value__ is the template for the rendered editor when the __Item__ matches. Variables are substituted based on the context:"
|
|
157
158
|
));
|
|
158
159
|
customEditorLabelDescription += "\n- " + [( localize(
|
|
159
|
-
|
|
160
|
+
3828,
|
|
160
161
|
"`${dirname}`: name of the folder in which the file is located (e.g. `WORKSPACE_FOLDER/folder/file.txt -> folder`)."
|
|
161
162
|
)), ( localize(
|
|
162
|
-
|
|
163
|
+
3829,
|
|
163
164
|
"`${dirname(N)}`: name of the nth parent folder in which the file is located (e.g. `N=2: WORKSPACE_FOLDER/static/folder/file.txt -> WORKSPACE_FOLDER`). Folders can be picked from the start of the path by using negative numbers (e.g. `N=-1: WORKSPACE_FOLDER/folder/file.txt -> WORKSPACE_FOLDER`). If the __Item__ is an absolute pattern path, the first folder (`N=-1`) refers to the first folder in the absolute path, otherwise it corresponds to the workspace folder."
|
|
164
165
|
)), ( localize(
|
|
165
|
-
|
|
166
|
+
3830,
|
|
166
167
|
"`${filename}`: name of the file without the file extension (e.g. `WORKSPACE_FOLDER/folder/file.txt -> file`)."
|
|
167
168
|
)), ( localize(
|
|
168
|
-
|
|
169
|
+
3831,
|
|
169
170
|
"`${extname}`: the file extension (e.g. `WORKSPACE_FOLDER/folder/file.txt -> txt`)."
|
|
170
171
|
)), ( localize(
|
|
171
|
-
|
|
172
|
+
3832,
|
|
172
173
|
"`${extname(N)}`: the nth extension of the file separated by '.' (e.g. `N=2: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext1`). Extension can be picked from the start of the extension by using negative numbers (e.g. `N=-1: WORKSPACE_FOLDER/folder/file.ext1.ext2.ext3 -> ext2`)."
|
|
173
174
|
))].join("\n- ");
|
|
174
175
|
customEditorLabelDescription += "\n\n" + ( localize(
|
|
175
|
-
|
|
176
|
+
3833,
|
|
176
177
|
"Example: `\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"` will render a file `WORKSPACE_FOLDER/static/folder/file.html` as `file - folder (html)`."
|
|
177
178
|
));
|
|
178
179
|
return customEditorLabelDescription;
|
|
@@ -180,7 +181,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
180
181
|
additionalProperties: {
|
|
181
182
|
type: ["string", "null"],
|
|
182
183
|
markdownDescription: ( localize(
|
|
183
|
-
|
|
184
|
+
3834,
|
|
184
185
|
"The template which should be rendered when the pattern matches. May include the variables ${dirname}, ${filename} and ${extname}."
|
|
185
186
|
)),
|
|
186
187
|
minLength: 1,
|
|
@@ -192,34 +193,34 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
192
193
|
"type": "string",
|
|
193
194
|
"enum": ["default", "short", "medium", "long"],
|
|
194
195
|
"enumDescriptions": [( localize(
|
|
195
|
-
|
|
196
|
+
3835,
|
|
196
197
|
"Show the name of the file. When tabs are enabled and two files have the same name in one group the distinguishing sections of each file's path are added. When tabs are disabled, the path relative to the workspace folder is shown if the editor is active."
|
|
197
|
-
)), ( localize(
|
|
198
|
-
|
|
198
|
+
)), ( localize(3836, "Show the name of the file followed by its directory name.")), ( localize(
|
|
199
|
+
3837,
|
|
199
200
|
"Show the name of the file followed by its path relative to the workspace folder."
|
|
200
|
-
)), ( localize(
|
|
201
|
+
)), ( localize(3838, "Show the name of the file followed by its absolute path."))],
|
|
201
202
|
"default": "default",
|
|
202
|
-
"description": ( localize(
|
|
203
|
+
"description": ( localize(3839, "Controls the format of the label for an editor."))
|
|
203
204
|
},
|
|
204
205
|
"workbench.editor.untitled.labelFormat": {
|
|
205
206
|
"type": "string",
|
|
206
207
|
"enum": ["content", "name"],
|
|
207
208
|
"enumDescriptions": [( localize(
|
|
208
|
-
|
|
209
|
+
3840,
|
|
209
210
|
"The name of the untitled file is derived from the contents of its first line unless it has an associated file path. It will fallback to the name in case the line is empty or contains no word characters."
|
|
210
211
|
)), ( localize(
|
|
211
|
-
|
|
212
|
+
3841,
|
|
212
213
|
"The name of the untitled file is not derived from the contents of the file."
|
|
213
214
|
))],
|
|
214
215
|
"default": "content",
|
|
215
|
-
"description": ( localize(
|
|
216
|
+
"description": ( localize(3842, "Controls the format of the label for an untitled editor."))
|
|
216
217
|
},
|
|
217
218
|
"workbench.editor.empty.hint": {
|
|
218
219
|
"type": "string",
|
|
219
220
|
"enum": ["text", "hidden"],
|
|
220
221
|
"default": "text",
|
|
221
222
|
"markdownDescription": ( localize(
|
|
222
|
-
|
|
223
|
+
3843,
|
|
223
224
|
"Controls if the empty editor text hint should be visible in the editor."
|
|
224
225
|
))
|
|
225
226
|
},
|
|
@@ -227,7 +228,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
227
228
|
type: "boolean",
|
|
228
229
|
default: true,
|
|
229
230
|
description: ( localize(
|
|
230
|
-
|
|
231
|
+
3844,
|
|
231
232
|
"Controls whether the language in a text editor is automatically detected unless the language has been explicitly set by the language picker. This can also be scoped by language so you can specify which languages you do not want to be switched off of. This is useful for languages like Markdown that often contain other languages that might trick language detection into thinking it's the embedded language and not Markdown."
|
|
232
233
|
)),
|
|
233
234
|
scope: ConfigurationScope.LANGUAGE_OVERRIDABLE
|
|
@@ -236,7 +237,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
236
237
|
type: "boolean",
|
|
237
238
|
default: true,
|
|
238
239
|
description: ( localize(
|
|
239
|
-
|
|
240
|
+
3845,
|
|
240
241
|
"Enables use of editor history in language detection. This causes automatic language detection to favor languages that have been recently opened and allows for automatic language detection to operate with smaller inputs."
|
|
241
242
|
))
|
|
242
243
|
},
|
|
@@ -244,7 +245,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
244
245
|
type: "boolean",
|
|
245
246
|
default: false,
|
|
246
247
|
description: ( localize(
|
|
247
|
-
|
|
248
|
+
3846,
|
|
248
249
|
"When enabled, a language detection model that takes into account editor history will be given higher precedence."
|
|
249
250
|
))
|
|
250
251
|
},
|
|
@@ -255,18 +256,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
255
256
|
"notebookEditors": true
|
|
256
257
|
},
|
|
257
258
|
description: ( localize(
|
|
258
|
-
|
|
259
|
+
3847,
|
|
259
260
|
"When enabled, shows a status bar Quick Fix when the editor language doesn't match detected content language."
|
|
260
261
|
)),
|
|
261
262
|
additionalProperties: false,
|
|
262
263
|
properties: {
|
|
263
264
|
untitledEditors: {
|
|
264
265
|
type: "boolean",
|
|
265
|
-
description: ( localize(
|
|
266
|
+
description: ( localize(3848, "Show in untitled text editors"))
|
|
266
267
|
},
|
|
267
268
|
notebookEditors: {
|
|
268
269
|
type: "boolean",
|
|
269
|
-
description: ( localize(
|
|
270
|
+
description: ( localize(3849, "Show in notebook editors"))
|
|
270
271
|
}
|
|
271
272
|
}
|
|
272
273
|
},
|
|
@@ -275,7 +276,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
275
276
|
enum: ["left", "right"],
|
|
276
277
|
default: "right",
|
|
277
278
|
markdownDescription: ( localize(
|
|
278
|
-
|
|
279
|
+
3850,
|
|
279
280
|
"Controls the position of the editor's tabs action buttons (close, unpin). This value is ignored when {0} is not set to {1}.",
|
|
280
281
|
"`#workbench.editor.showTabs#`",
|
|
281
282
|
"`multiple`"
|
|
@@ -284,18 +285,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
284
285
|
"workbench.editor.tabActionCloseVisibility": {
|
|
285
286
|
type: "boolean",
|
|
286
287
|
default: true,
|
|
287
|
-
description: ( localize(
|
|
288
|
+
description: ( localize(3851, "Controls the visibility of the tab close action button."))
|
|
288
289
|
},
|
|
289
290
|
"workbench.editor.tabActionUnpinVisibility": {
|
|
290
291
|
type: "boolean",
|
|
291
292
|
default: true,
|
|
292
|
-
description: ( localize(
|
|
293
|
+
description: ( localize(3852, "Controls the visibility of the tab unpin action button."))
|
|
293
294
|
},
|
|
294
295
|
"workbench.editor.showTabIndex": {
|
|
295
296
|
"type": "boolean",
|
|
296
297
|
"default": false,
|
|
297
298
|
"markdownDescription": ( localize(
|
|
298
|
-
|
|
299
|
+
3853,
|
|
299
300
|
"When enabled, will show the tab index. This value is ignored when {0} is not set to {1}.",
|
|
300
301
|
"`#workbench.editor.showTabs#`",
|
|
301
302
|
"`multiple`"
|
|
@@ -305,15 +306,15 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
305
306
|
"type": "string",
|
|
306
307
|
"enum": ["fit", "shrink", "fixed"],
|
|
307
308
|
"default": "fit",
|
|
308
|
-
"enumDescriptions": [( localize(
|
|
309
|
-
|
|
309
|
+
"enumDescriptions": [( localize(3854, "Always keep tabs large enough to show the full editor label.")), ( localize(
|
|
310
|
+
3855,
|
|
310
311
|
"Allow tabs to get smaller when the available space is not enough to show all tabs at once."
|
|
311
312
|
)), ( localize(
|
|
312
|
-
|
|
313
|
+
3856,
|
|
313
314
|
"Make all tabs the same size, while allowing them to get smaller when the available space is not enough to show all tabs at once."
|
|
314
315
|
))],
|
|
315
316
|
"markdownDescription": ( localize(
|
|
316
|
-
|
|
317
|
+
3857,
|
|
317
318
|
"Controls the size of editor tabs. This value is ignored when {0} is not set to {1}.",
|
|
318
319
|
"`#workbench.editor.showTabs#`",
|
|
319
320
|
"`multiple`"
|
|
@@ -324,7 +325,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
324
325
|
"default": 50,
|
|
325
326
|
"minimum": 38,
|
|
326
327
|
"markdownDescription": ( localize(
|
|
327
|
-
|
|
328
|
+
3858,
|
|
328
329
|
"Controls the minimum width of tabs when {0} size is set to {1}.",
|
|
329
330
|
"`#workbench.editor.tabSizing#`",
|
|
330
331
|
"`fixed`"
|
|
@@ -335,7 +336,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
335
336
|
"default": 160,
|
|
336
337
|
"minimum": 38,
|
|
337
338
|
"markdownDescription": ( localize(
|
|
338
|
-
|
|
339
|
+
3859,
|
|
339
340
|
"Controls the maximum width of tabs when {0} size is set to {1}.",
|
|
340
341
|
"`#workbench.editor.tabSizing#`",
|
|
341
342
|
"`fixed`"
|
|
@@ -346,7 +347,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
346
347
|
"enum": ["default", "compact"],
|
|
347
348
|
"default": "default",
|
|
348
349
|
"markdownDescription": ( localize(
|
|
349
|
-
|
|
350
|
+
3860,
|
|
350
351
|
"Controls the height of editor tabs. Also applies to the title control bar when {0} is not set to {1}.",
|
|
351
352
|
"`#workbench.editor.showTabs#`",
|
|
352
353
|
"`multiple`"
|
|
@@ -356,15 +357,15 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
356
357
|
"type": "string",
|
|
357
358
|
"enum": ["normal", "compact", "shrink"],
|
|
358
359
|
"default": "normal",
|
|
359
|
-
"enumDescriptions": [( localize(
|
|
360
|
-
|
|
360
|
+
"enumDescriptions": [( localize(3861, "A pinned tab inherits the look of non pinned tabs.")), ( localize(
|
|
361
|
+
3862,
|
|
361
362
|
"A pinned tab will show in a compact form with only icon or first letter of the editor name."
|
|
362
363
|
)), ( localize(
|
|
363
|
-
|
|
364
|
+
3863,
|
|
364
365
|
"A pinned tab shrinks to a compact fixed size showing parts of the editor name."
|
|
365
366
|
))],
|
|
366
367
|
"markdownDescription": ( localize(
|
|
367
|
-
|
|
368
|
+
3864,
|
|
368
369
|
"Controls the size of pinned editor tabs. Pinned tabs are sorted to the beginning of all opened tabs and typically do not close until unpinned. This value is ignored when {0} is not set to {1}.",
|
|
369
370
|
"`#workbench.editor.showTabs#`",
|
|
370
371
|
"`multiple`"
|
|
@@ -374,7 +375,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
374
375
|
"type": "boolean",
|
|
375
376
|
"default": false,
|
|
376
377
|
"markdownDescription": ( localize(
|
|
377
|
-
|
|
378
|
+
3865,
|
|
378
379
|
"When enabled, displays pinned tabs in a separate row above all other tabs. This value is ignored when {0} is not set to {1}.",
|
|
379
380
|
"`#workbench.editor.showTabs#`",
|
|
380
381
|
"`multiple`"
|
|
@@ -385,11 +386,11 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
385
386
|
"enum": ["keyboardAndMouse", "keyboard", "mouse", "never"],
|
|
386
387
|
"default": "keyboardAndMouse",
|
|
387
388
|
"enumDescriptions": [( localize(
|
|
388
|
-
|
|
389
|
+
3866,
|
|
389
390
|
"Always prevent closing the pinned editor when using mouse middle click or keyboard."
|
|
390
|
-
)), ( localize(
|
|
391
|
+
)), ( localize(3867, "Prevent closing the pinned editor when using the keyboard.")), ( localize(3868, "Prevent closing the pinned editor when using mouse middle click.")), ( localize(3869, "Never prevent closing a pinned editor."))],
|
|
391
392
|
description: ( localize(
|
|
392
|
-
|
|
393
|
+
3870,
|
|
393
394
|
"Controls whether pinned editors should close when keyboard or middle mouse click is used for closing."
|
|
394
395
|
))
|
|
395
396
|
},
|
|
@@ -398,16 +399,16 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
398
399
|
"enum": ["auto", "distribute", "split"],
|
|
399
400
|
"default": "auto",
|
|
400
401
|
"enumDescriptions": [( localize(
|
|
401
|
-
|
|
402
|
+
3871,
|
|
402
403
|
"Splits the active editor group to equal parts, unless all editor groups are already in equal parts. In that case, splits all the editor groups to equal parts."
|
|
403
|
-
)), ( localize(
|
|
404
|
-
"description": ( localize(
|
|
404
|
+
)), ( localize(3872, "Splits all the editor groups to equal parts.")), ( localize(3873, "Splits the active editor group to equal parts."))],
|
|
405
|
+
"description": ( localize(3874, "Controls the size of editor groups when splitting them."))
|
|
405
406
|
},
|
|
406
407
|
"workbench.editor.splitOnDragAndDrop": {
|
|
407
408
|
"type": "boolean",
|
|
408
409
|
"default": true,
|
|
409
410
|
"description": ( localize(
|
|
410
|
-
|
|
411
|
+
3875,
|
|
411
412
|
"Controls if editor groups can be split from drag and drop operations by dropping an editor or file on the edges of the editor area."
|
|
412
413
|
))
|
|
413
414
|
},
|
|
@@ -415,14 +416,14 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
415
416
|
"type": "boolean",
|
|
416
417
|
"default": true,
|
|
417
418
|
"markdownDescription": ( localize(
|
|
418
|
-
|
|
419
|
+
3876,
|
|
419
420
|
"Controls if editors can be dragged out of the window to open them in a new window. Press and hold the `Alt` key while dragging to toggle this dynamically."
|
|
420
421
|
))
|
|
421
422
|
},
|
|
422
423
|
"workbench.editor.focusRecentEditorAfterClose": {
|
|
423
424
|
"type": "boolean",
|
|
424
425
|
"description": ( localize(
|
|
425
|
-
|
|
426
|
+
3877,
|
|
426
427
|
"Controls whether editors are closed in most recently used order or from left to right."
|
|
427
428
|
)),
|
|
428
429
|
"default": true
|
|
@@ -430,7 +431,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
430
431
|
"workbench.editor.showIcons": {
|
|
431
432
|
"type": "boolean",
|
|
432
433
|
"description": ( localize(
|
|
433
|
-
|
|
434
|
+
3878,
|
|
434
435
|
"Controls whether opened editors should show with an icon or not. This requires a file icon theme to be enabled as well."
|
|
435
436
|
)),
|
|
436
437
|
"default": true
|
|
@@ -438,7 +439,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
438
439
|
"workbench.editor.enablePreview": {
|
|
439
440
|
"type": "boolean",
|
|
440
441
|
"description": ( localize(
|
|
441
|
-
|
|
442
|
+
3879,
|
|
442
443
|
"Controls whether preview mode is used when editors open. There is a maximum of one preview mode editor per editor group. This editor displays its filename in italics on its tab or title label and in the Open Editors view. Its contents will be replaced by the next editor opened in preview mode. Making a change in a preview mode editor will persist it, as will a double-click on its label, or the 'Keep Open' option in its label context menu. Opening a file from Explorer with a double-click persists its editor immediately."
|
|
443
444
|
)),
|
|
444
445
|
"default": true
|
|
@@ -446,7 +447,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
446
447
|
"workbench.editor.enablePreviewFromQuickOpen": {
|
|
447
448
|
"type": "boolean",
|
|
448
449
|
"markdownDescription": ( localize(
|
|
449
|
-
|
|
450
|
+
3880,
|
|
450
451
|
"Controls whether editors opened from Quick Open show as preview editors. Preview editors do not stay open, and are reused until explicitly set to be kept open (via double-click or editing). When enabled, hold Ctrl before selection to open an editor as a non-preview. This value is ignored when {0} is not set to {1}.",
|
|
451
452
|
"`#workbench.editor.showTabs#`",
|
|
452
453
|
"`multiple`"
|
|
@@ -456,7 +457,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
456
457
|
"workbench.editor.enablePreviewFromCodeNavigation": {
|
|
457
458
|
"type": "boolean",
|
|
458
459
|
"markdownDescription": ( localize(
|
|
459
|
-
|
|
460
|
+
3881,
|
|
460
461
|
"Controls whether editors remain in preview when a code navigation is started from them. Preview editors do not stay open, and are reused until explicitly set to be kept open (via double-click or editing). This value is ignored when {0} is not set to {1}.",
|
|
461
462
|
"`#workbench.editor.showTabs#`",
|
|
462
463
|
"`multiple`"
|
|
@@ -466,7 +467,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
466
467
|
"workbench.editor.closeOnFileDelete": {
|
|
467
468
|
"type": "boolean",
|
|
468
469
|
"description": ( localize(
|
|
469
|
-
|
|
470
|
+
3882,
|
|
470
471
|
"Controls whether editors showing a file that was opened during the session should close automatically when getting deleted or renamed by some other process. Disabling this will keep the editor open on such an event. Note that deleting from within the application will always close the editor and that editors with unsaved changes will never close to preserve your data."
|
|
471
472
|
)),
|
|
472
473
|
"default": false
|
|
@@ -476,7 +477,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
476
477
|
"enum": ["left", "right", "first", "last"],
|
|
477
478
|
"default": "right",
|
|
478
479
|
"markdownDescription": ( localize(
|
|
479
|
-
|
|
480
|
+
3883,
|
|
480
481
|
"Controls where editors open. Select {0} or {1} to open editors to the left or right of the currently active one. Select {2} or {3} to open editors independently from the currently active one.",
|
|
481
482
|
"`left`",
|
|
482
483
|
"`right`",
|
|
@@ -489,14 +490,14 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
489
490
|
"enum": ["right", "down"],
|
|
490
491
|
"default": "right",
|
|
491
492
|
"markdownDescription": ( localize(
|
|
492
|
-
|
|
493
|
+
3884,
|
|
493
494
|
"Controls the default direction of editors that are opened side by side (for example, from the Explorer). By default, editors will open on the right hand side of the currently active one. If changed to `down`, the editors will open below the currently active one. This also impacts the split editor action in the editor toolbar."
|
|
494
495
|
))
|
|
495
496
|
},
|
|
496
497
|
"workbench.editor.closeEmptyGroups": {
|
|
497
498
|
"type": "boolean",
|
|
498
499
|
"description": ( localize(
|
|
499
|
-
|
|
500
|
+
3885,
|
|
500
501
|
"Controls the behavior of empty editor groups when the last tab in the group is closed. When enabled, empty groups will automatically close. When disabled, empty groups will remain part of the grid."
|
|
501
502
|
)),
|
|
502
503
|
"default": true
|
|
@@ -504,15 +505,29 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
504
505
|
"workbench.editor.revealIfOpen": {
|
|
505
506
|
"type": "boolean",
|
|
506
507
|
"description": ( localize(
|
|
507
|
-
|
|
508
|
+
3886,
|
|
508
509
|
"Controls whether an editor is revealed in any of the visible groups if opened. If disabled, an editor will prefer to open in the currently active editor group. If enabled, an already opened editor will be revealed instead of opened again in the currently active editor group. Note that there are some cases where this setting is ignored, such as when forcing an editor to open in a specific group or to the side of the currently active group."
|
|
509
510
|
)),
|
|
510
511
|
"default": false
|
|
511
512
|
},
|
|
513
|
+
"workbench.editor.useModal": {
|
|
514
|
+
"type": "string",
|
|
515
|
+
"enum": ["off", "some", "all"],
|
|
516
|
+
"enumDescriptions": [( localize(3887, "Editors never open in a modal overlay.")), ( localize(
|
|
517
|
+
3888,
|
|
518
|
+
"Certain editors such as Settings and Keyboard Shortcuts may open in a centered modal overlay."
|
|
519
|
+
)), ( localize(3889, "All editors open in a centered modal overlay."))],
|
|
520
|
+
"description": ( localize(3890, "Controls whether editors open in a modal overlay.")),
|
|
521
|
+
"default": product.quality !== "stable" ? "some" : "off",
|
|
522
|
+
tags: ["experimental"],
|
|
523
|
+
experiment: {
|
|
524
|
+
mode: "auto"
|
|
525
|
+
}
|
|
526
|
+
},
|
|
512
527
|
"workbench.editor.swipeToNavigate": {
|
|
513
528
|
"type": "boolean",
|
|
514
529
|
"description": ( localize(
|
|
515
|
-
|
|
530
|
+
3891,
|
|
516
531
|
"Navigate between open files using three-finger swipe horizontally. Note that System Preferences > Trackpad > More Gestures > 'Swipe between pages' must be set to 'Swipe with two or three fingers'."
|
|
517
532
|
)),
|
|
518
533
|
"default": false,
|
|
@@ -521,7 +536,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
521
536
|
"workbench.editor.mouseBackForwardToNavigate": {
|
|
522
537
|
"type": "boolean",
|
|
523
538
|
"description": ( localize(
|
|
524
|
-
|
|
539
|
+
3892,
|
|
525
540
|
"Enables the use of mouse buttons four and five for commands 'Go Back' and 'Go Forward'."
|
|
526
541
|
)),
|
|
527
542
|
"default": true
|
|
@@ -531,15 +546,15 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
531
546
|
"enum": ["default", "editorGroup", "editor"],
|
|
532
547
|
"default": "default",
|
|
533
548
|
"markdownDescription": ( localize(
|
|
534
|
-
|
|
549
|
+
3893,
|
|
535
550
|
"Controls the scope of history navigation in editors for commands such as 'Go Back' and 'Go Forward'."
|
|
536
551
|
)),
|
|
537
|
-
"enumDescriptions": [( localize(
|
|
552
|
+
"enumDescriptions": [( localize(3894, "Navigate across all opened editors and editor groups.")), ( localize(3895, "Navigate only in editors of the active editor group.")), ( localize(3896, "Navigate only in the active editor."))]
|
|
538
553
|
},
|
|
539
554
|
"workbench.editor.restoreViewState": {
|
|
540
555
|
"type": "boolean",
|
|
541
556
|
"markdownDescription": ( localize(
|
|
542
|
-
|
|
557
|
+
3897,
|
|
543
558
|
"Restores the last editor view state (such as scroll position) when re-opening editors after they have been closed. Editor view state is stored per editor group and discarded when a group closes. Use the {0} setting to use the last known view state across all editor groups in case no previous view state was found for a editor group.",
|
|
544
559
|
"`#workbench.editor.sharedViewState#`"
|
|
545
560
|
)),
|
|
@@ -549,7 +564,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
549
564
|
"workbench.editor.sharedViewState": {
|
|
550
565
|
"type": "boolean",
|
|
551
566
|
"description": ( localize(
|
|
552
|
-
|
|
567
|
+
3898,
|
|
553
568
|
"Preserves the most recent editor view state (such as scroll position) across all editor groups and restores that if no specific editor view state is found for the editor group."
|
|
554
569
|
)),
|
|
555
570
|
"default": false
|
|
@@ -557,7 +572,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
557
572
|
"workbench.editor.restoreEditors": {
|
|
558
573
|
"type": "boolean",
|
|
559
574
|
"description": ( localize(
|
|
560
|
-
|
|
575
|
+
3899,
|
|
561
576
|
"Controls whether editors are restored on startup. When disabled, only dirty editors will be restored from the previous session."
|
|
562
577
|
)),
|
|
563
578
|
"default": true
|
|
@@ -567,16 +582,16 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
567
582
|
"enum": ["vertical", "horizontal"],
|
|
568
583
|
"default": "horizontal",
|
|
569
584
|
"markdownDescription": ( localize(
|
|
570
|
-
|
|
585
|
+
3900,
|
|
571
586
|
"Controls the layout for when an editor is split in an editor group to be either vertical or horizontal."
|
|
572
587
|
)),
|
|
573
|
-
"enumDescriptions": [( localize(
|
|
588
|
+
"enumDescriptions": [( localize(3901, "Editors are positioned from top to bottom.")), ( localize(3902, "Editors are positioned from left to right."))]
|
|
574
589
|
},
|
|
575
590
|
"workbench.editor.centeredLayoutAutoResize": {
|
|
576
591
|
"type": "boolean",
|
|
577
592
|
"default": true,
|
|
578
593
|
"description": ( localize(
|
|
579
|
-
|
|
594
|
+
3903,
|
|
580
595
|
"Controls if the centered layout should automatically resize to maximum width when more than one group is open. Once only one group is open it will resize back to the original centered width."
|
|
581
596
|
))
|
|
582
597
|
},
|
|
@@ -584,7 +599,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
584
599
|
"type": "boolean",
|
|
585
600
|
"default": false,
|
|
586
601
|
"description": ( localize(
|
|
587
|
-
|
|
602
|
+
3904,
|
|
588
603
|
"Controls whether the centered layout tries to maintain constant width when the window is resized."
|
|
589
604
|
))
|
|
590
605
|
},
|
|
@@ -593,24 +608,24 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
593
608
|
"enum": ["maximize", "expand", "off"],
|
|
594
609
|
"default": "expand",
|
|
595
610
|
"markdownDescription": ( localize(
|
|
596
|
-
|
|
611
|
+
3905,
|
|
597
612
|
"Controls how the editor group is resized when double clicking on a tab. This value is ignored when {0} is not set to {1}.",
|
|
598
613
|
"`#workbench.editor.showTabs#`",
|
|
599
614
|
"`multiple`"
|
|
600
615
|
)),
|
|
601
616
|
"enumDescriptions": [( localize(
|
|
602
|
-
|
|
617
|
+
3906,
|
|
603
618
|
"All other editor groups are hidden and the current editor group is maximized to take up the entire editor area."
|
|
604
619
|
)), ( localize(
|
|
605
|
-
|
|
620
|
+
3907,
|
|
606
621
|
"The editor group takes as much space as possible by making all other editor groups as small as possible."
|
|
607
|
-
)), ( localize(
|
|
622
|
+
)), ( localize(3908, "No editor group is resized when double clicking on a tab."))]
|
|
608
623
|
},
|
|
609
624
|
"workbench.editor.limit.enabled": {
|
|
610
625
|
"type": "boolean",
|
|
611
626
|
"default": false,
|
|
612
627
|
"description": ( localize(
|
|
613
|
-
|
|
628
|
+
3909,
|
|
614
629
|
"Controls if the number of opened editors should be limited or not. When enabled, less recently used editors will close to make space for newly opening editors."
|
|
615
630
|
))
|
|
616
631
|
},
|
|
@@ -619,7 +634,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
619
634
|
"default": 10,
|
|
620
635
|
"exclusiveMinimum": 0,
|
|
621
636
|
"markdownDescription": ( localize(
|
|
622
|
-
|
|
637
|
+
3910,
|
|
623
638
|
"Controls the maximum number of opened editors. Use the {0} setting to control this limit per editor group or across all groups.",
|
|
624
639
|
"`#workbench.editor.limit.perEditorGroup#`"
|
|
625
640
|
))
|
|
@@ -628,7 +643,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
628
643
|
"type": "boolean",
|
|
629
644
|
"default": false,
|
|
630
645
|
"description": ( localize(
|
|
631
|
-
|
|
646
|
+
3911,
|
|
632
647
|
"Controls if the maximum number of opened editors should exclude dirty editors for counting towards the configured limit."
|
|
633
648
|
))
|
|
634
649
|
},
|
|
@@ -636,7 +651,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
636
651
|
"type": "boolean",
|
|
637
652
|
"default": false,
|
|
638
653
|
"description": ( localize(
|
|
639
|
-
|
|
654
|
+
3912,
|
|
640
655
|
"Controls if the limit of maximum opened editors should apply per editor group or across all editor groups."
|
|
641
656
|
))
|
|
642
657
|
},
|
|
@@ -644,7 +659,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
644
659
|
"type": "boolean",
|
|
645
660
|
"default": true,
|
|
646
661
|
"description": ( localize(
|
|
647
|
-
|
|
662
|
+
3913,
|
|
648
663
|
"Controls whether local file history is enabled. When enabled, the file contents of an editor that is saved will be stored to a backup location to be able to restore or review the contents later. Changing this setting has no effect on existing local file history entries."
|
|
649
664
|
)),
|
|
650
665
|
"scope": ConfigurationScope.RESOURCE
|
|
@@ -654,7 +669,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
654
669
|
"default": 256,
|
|
655
670
|
"minimum": 1,
|
|
656
671
|
"description": ( localize(
|
|
657
|
-
|
|
672
|
+
3914,
|
|
658
673
|
"Controls the maximum size of a file (in KB) to be considered for local file history. Files that are larger will not be added to the local file history. Changing this setting has no effect on existing local file history entries."
|
|
659
674
|
)),
|
|
660
675
|
"scope": ConfigurationScope.RESOURCE
|
|
@@ -664,7 +679,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
664
679
|
"default": 50,
|
|
665
680
|
"minimum": 0,
|
|
666
681
|
"description": ( localize(
|
|
667
|
-
|
|
682
|
+
3915,
|
|
668
683
|
"Controls the maximum number of local file history entries per file. When the number of local file history entries exceeds this number for a file, the oldest entries will be discarded."
|
|
669
684
|
)),
|
|
670
685
|
"scope": ConfigurationScope.RESOURCE
|
|
@@ -677,7 +692,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
677
692
|
}
|
|
678
693
|
},
|
|
679
694
|
"markdownDescription": ( localize(
|
|
680
|
-
|
|
695
|
+
3916,
|
|
681
696
|
"Configure paths or [glob patterns](https://aka.ms/vscode-glob-patterns) for excluding files from the local file history. Glob patterns are always evaluated relative to the path of the workspace folder unless they are absolute paths. Changing this setting has no effect on existing local file history entries."
|
|
682
697
|
)),
|
|
683
698
|
"scope": ConfigurationScope.RESOURCE
|
|
@@ -687,7 +702,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
687
702
|
"default": 10,
|
|
688
703
|
"minimum": 1,
|
|
689
704
|
"markdownDescription": ( localize(
|
|
690
|
-
|
|
705
|
+
3917,
|
|
691
706
|
"Configure an interval in seconds during which the last entry in local file history is replaced with the entry that is being added. This helps reduce the overall number of entries that are added, for example when auto save is enabled. This setting is only applied to entries that have the same source of origin. Changing this setting has no effect on existing local file history entries."
|
|
692
707
|
)),
|
|
693
708
|
"scope": ConfigurationScope.RESOURCE
|
|
@@ -695,7 +710,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
695
710
|
"workbench.commandPalette.history": {
|
|
696
711
|
"type": "number",
|
|
697
712
|
"description": ( localize(
|
|
698
|
-
|
|
713
|
+
3918,
|
|
699
714
|
"Controls the number of recently used commands to keep in history for the command palette. Set to 0 to disable command history."
|
|
700
715
|
)),
|
|
701
716
|
"default": 50,
|
|
@@ -704,7 +719,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
704
719
|
"workbench.commandPalette.preserveInput": {
|
|
705
720
|
"type": "boolean",
|
|
706
721
|
"description": ( localize(
|
|
707
|
-
|
|
722
|
+
3919,
|
|
708
723
|
"Controls whether the last typed input to the command palette should be restored when opening it the next time."
|
|
709
724
|
)),
|
|
710
725
|
"default": false
|
|
@@ -713,7 +728,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
713
728
|
"type": "boolean",
|
|
714
729
|
tags: ["experimental"],
|
|
715
730
|
"description": ( localize(
|
|
716
|
-
|
|
731
|
+
3920,
|
|
717
732
|
"Controls whether the command palette should have a list of commonly used commands."
|
|
718
733
|
)),
|
|
719
734
|
"default": false
|
|
@@ -721,16 +736,16 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
721
736
|
"workbench.commandPalette.experimental.askChatLocation": {
|
|
722
737
|
"type": "string",
|
|
723
738
|
tags: ["experimental"],
|
|
724
|
-
"description": ( localize(
|
|
739
|
+
"description": ( localize(3921, "Controls where the command palette should ask chat questions.")),
|
|
725
740
|
"default": "chatView",
|
|
726
741
|
enum: ["chatView", "quickChat"],
|
|
727
|
-
enumDescriptions: [( localize(
|
|
742
|
+
enumDescriptions: [( localize(3922, "Ask chat questions in the Chat view.")), ( localize(3923, "Ask chat questions in Quick Chat."))]
|
|
728
743
|
},
|
|
729
744
|
"workbench.commandPalette.showAskInChat": {
|
|
730
745
|
"type": "boolean",
|
|
731
746
|
tags: ["experimental"],
|
|
732
747
|
"description": ( localize(
|
|
733
|
-
|
|
748
|
+
3924,
|
|
734
749
|
"Controls whether the command palette shows 'Ask in Chat' option at the bottom."
|
|
735
750
|
)),
|
|
736
751
|
"default": true
|
|
@@ -739,7 +754,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
739
754
|
"type": "boolean",
|
|
740
755
|
tags: ["experimental"],
|
|
741
756
|
"description": ( localize(
|
|
742
|
-
|
|
757
|
+
3925,
|
|
743
758
|
"Controls whether the command palette should include similar commands. You must have an extension installed that provides Natural Language support."
|
|
744
759
|
)),
|
|
745
760
|
"default": true
|
|
@@ -747,7 +762,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
747
762
|
"workbench.quickOpen.closeOnFocusLost": {
|
|
748
763
|
"type": "boolean",
|
|
749
764
|
"description": ( localize(
|
|
750
|
-
|
|
765
|
+
3926,
|
|
751
766
|
"Controls whether Quick Open should close automatically once it loses focus."
|
|
752
767
|
)),
|
|
753
768
|
"default": true
|
|
@@ -755,7 +770,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
755
770
|
"workbench.quickOpen.preserveInput": {
|
|
756
771
|
"type": "boolean",
|
|
757
772
|
"description": ( localize(
|
|
758
|
-
|
|
773
|
+
3927,
|
|
759
774
|
"Controls whether the last typed input to Quick Open should be restored when opening it the next time."
|
|
760
775
|
)),
|
|
761
776
|
"default": false
|
|
@@ -763,7 +778,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
763
778
|
"workbench.settings.openDefaultSettings": {
|
|
764
779
|
"type": "boolean",
|
|
765
780
|
"description": ( localize(
|
|
766
|
-
|
|
781
|
+
3928,
|
|
767
782
|
"Controls whether opening settings also opens an editor showing all default settings."
|
|
768
783
|
)),
|
|
769
784
|
"default": false
|
|
@@ -771,7 +786,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
771
786
|
"workbench.settings.useSplitJSON": {
|
|
772
787
|
"type": "boolean",
|
|
773
788
|
"markdownDescription": ( localize(
|
|
774
|
-
|
|
789
|
+
3929,
|
|
775
790
|
"Controls whether to use the split JSON editor when editing settings as JSON."
|
|
776
791
|
)),
|
|
777
792
|
"default": false
|
|
@@ -779,7 +794,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
779
794
|
"workbench.settings.openDefaultKeybindings": {
|
|
780
795
|
"type": "boolean",
|
|
781
796
|
"description": ( localize(
|
|
782
|
-
|
|
797
|
+
3930,
|
|
783
798
|
"Controls whether opening keybinding settings also opens an editor showing all default keybindings."
|
|
784
799
|
)),
|
|
785
800
|
"default": false
|
|
@@ -787,7 +802,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
787
802
|
"workbench.settings.alwaysShowAdvancedSettings": {
|
|
788
803
|
"type": "boolean",
|
|
789
804
|
"description": ( localize(
|
|
790
|
-
|
|
805
|
+
3931,
|
|
791
806
|
"Controls whether advanced settings are always shown in the settings editor without requiring the `@tag:advanced` filter."
|
|
792
807
|
)),
|
|
793
808
|
"default": product.quality !== "stable"
|
|
@@ -797,7 +812,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
797
812
|
"enum": ["left", "right"],
|
|
798
813
|
"default": "left",
|
|
799
814
|
"description": ( localize(
|
|
800
|
-
|
|
815
|
+
3932,
|
|
801
816
|
"Controls the location of the primary side bar and activity bar. They can either show on the left or right of the workbench. The secondary side bar will show on the opposite side of the workbench."
|
|
802
817
|
))
|
|
803
818
|
},
|
|
@@ -805,7 +820,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
805
820
|
"type": "boolean",
|
|
806
821
|
"default": true,
|
|
807
822
|
"description": ( localize(
|
|
808
|
-
|
|
823
|
+
3933,
|
|
809
824
|
"Controls whether activity items in the panel title are shown as label or icon."
|
|
810
825
|
))
|
|
811
826
|
},
|
|
@@ -814,7 +829,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
814
829
|
"enum": ["left", "bottom", "top", "right"],
|
|
815
830
|
"default": "bottom",
|
|
816
831
|
"description": ( localize(
|
|
817
|
-
|
|
832
|
+
3934,
|
|
818
833
|
"Controls the default location of the panel (Terminal, Debug Console, Output, Problems) in a new workspace. It can either show at the bottom, top, right, or left of the editor area."
|
|
819
834
|
))
|
|
820
835
|
},
|
|
@@ -823,10 +838,10 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
823
838
|
"enum": ["always", "never", "preserve"],
|
|
824
839
|
"default": "preserve",
|
|
825
840
|
"description": ( localize(
|
|
826
|
-
|
|
841
|
+
3935,
|
|
827
842
|
"Controls whether the panel opens maximized. It can either always open maximized, never open maximized, or open to the last state it was in before being closed."
|
|
828
843
|
)),
|
|
829
|
-
"enumDescriptions": [( localize(
|
|
844
|
+
"enumDescriptions": [( localize(3936, "Always maximize the panel when opening it.")), ( localize(3937, "Never maximize the panel when opening it.")), ( localize(3938, "Open the panel to the state that it was in, before it was closed."))]
|
|
830
845
|
},
|
|
831
846
|
"workbench.secondarySideBar.defaultVisibility": {
|
|
832
847
|
"type": "string",
|
|
@@ -839,23 +854,23 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
839
854
|
],
|
|
840
855
|
"default": "visibleInWorkspace",
|
|
841
856
|
"description": ( localize(
|
|
842
|
-
|
|
843
|
-
"Controls the default visibility of the secondary side bar in workspaces or empty windows that are opened for the first time."
|
|
857
|
+
3939,
|
|
858
|
+
"Controls the default visibility of the secondary side bar in workspaces or empty windows that are opened for the first time. Can be overridden by the agent sessions startup editor setting."
|
|
844
859
|
)),
|
|
845
|
-
"enumDescriptions": [( localize(
|
|
846
|
-
|
|
860
|
+
"enumDescriptions": [( localize(3940, "The secondary side bar is hidden by default.")), ( localize(
|
|
861
|
+
3941,
|
|
847
862
|
"The secondary side bar is visible by default if a workspace is opened."
|
|
848
|
-
)), ( localize(
|
|
849
|
-
|
|
863
|
+
)), ( localize(3942, "The secondary side bar is visible by default.")), ( localize(
|
|
864
|
+
3943,
|
|
850
865
|
"The secondary side bar is visible and maximized by default if a workspace is opened."
|
|
851
|
-
)), ( localize(
|
|
866
|
+
)), ( localize(3944, "The secondary side bar is visible and maximized by default."))]
|
|
852
867
|
},
|
|
853
868
|
"workbench.secondarySideBar.forceMaximized": {
|
|
854
869
|
"type": "boolean",
|
|
855
870
|
"default": false,
|
|
856
871
|
tags: ["experimental"],
|
|
857
872
|
"description": ( localize(
|
|
858
|
-
|
|
873
|
+
3945,
|
|
859
874
|
"Controls whether the secondary side bar is enforced to always show maximized on startup and when there are no open editors, in layouts that support a maximized secondary side bar."
|
|
860
875
|
))
|
|
861
876
|
},
|
|
@@ -863,7 +878,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
863
878
|
"type": "boolean",
|
|
864
879
|
"default": true,
|
|
865
880
|
"markdownDescription": ( localize(
|
|
866
|
-
|
|
881
|
+
3946,
|
|
867
882
|
"Controls whether activity items in the secondary side bar title are shown as label or icon. This setting only has an effect when {0} is not set to {1}.",
|
|
868
883
|
"`#workbench.activityBar.location#`",
|
|
869
884
|
"`top`"
|
|
@@ -873,60 +888,110 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
873
888
|
"type": "boolean",
|
|
874
889
|
"default": true,
|
|
875
890
|
"description": ( localize(
|
|
876
|
-
|
|
891
|
+
3947,
|
|
877
892
|
"Controls the visibility of the status bar at the bottom of the workbench."
|
|
878
893
|
))
|
|
879
894
|
},
|
|
895
|
+
[NotificationsSettings.NOTIFICATIONS_POSITION]: {
|
|
896
|
+
"type": "string",
|
|
897
|
+
"enum": [
|
|
898
|
+
NotificationsPosition.BOTTOM_RIGHT,
|
|
899
|
+
NotificationsPosition.BOTTOM_LEFT,
|
|
900
|
+
NotificationsPosition.TOP_RIGHT
|
|
901
|
+
],
|
|
902
|
+
"default": NotificationsPosition.BOTTOM_RIGHT,
|
|
903
|
+
"description": ( localize(
|
|
904
|
+
3948,
|
|
905
|
+
"Controls the position of the notification toasts and notification center."
|
|
906
|
+
)),
|
|
907
|
+
"enumDescriptions": [( localize(3949, "Show notifications in the bottom right corner.")), ( localize(3950, "Show notifications in the bottom left corner.")), ( localize(
|
|
908
|
+
3951,
|
|
909
|
+
"Show notifications in the top right corner, similar to OS-level notifications."
|
|
910
|
+
))],
|
|
911
|
+
"tags": ["experimental"],
|
|
912
|
+
"experiment": {
|
|
913
|
+
"mode": "auto"
|
|
914
|
+
}
|
|
915
|
+
},
|
|
916
|
+
[NotificationsSettings.NOTIFICATIONS_BUTTON]: {
|
|
917
|
+
"type": "boolean",
|
|
918
|
+
"default": true,
|
|
919
|
+
"description": ( localize(
|
|
920
|
+
3952,
|
|
921
|
+
"Controls the visibility of the Notifications button in the title bar. Only applies when notifications are positioned at the top right."
|
|
922
|
+
))
|
|
923
|
+
},
|
|
880
924
|
[LayoutSettings.ACTIVITY_BAR_LOCATION]: {
|
|
881
925
|
"type": "string",
|
|
882
926
|
"enum": ["default", "top", "bottom", "hidden"],
|
|
883
927
|
"default": "default",
|
|
884
928
|
"markdownDescription": ( localize(
|
|
885
|
-
|
|
929
|
+
3953,
|
|
886
930
|
"Controls the location of the Activity Bar relative to the Primary and Secondary Side Bars."
|
|
887
931
|
)),
|
|
888
932
|
"enumDescriptions": [( localize(
|
|
889
|
-
|
|
933
|
+
3954,
|
|
890
934
|
"Show the Activity Bar on the side of the Primary Side Bar and on top of the Secondary Side Bar."
|
|
891
935
|
)), ( localize(
|
|
892
|
-
|
|
936
|
+
3955,
|
|
893
937
|
"Show the Activity Bar on top of the Primary and Secondary Side Bars."
|
|
894
938
|
)), ( localize(
|
|
895
|
-
|
|
939
|
+
3956,
|
|
896
940
|
"Show the Activity Bar at the bottom of the Primary and Secondary Side Bars."
|
|
897
|
-
)), ( localize(
|
|
941
|
+
)), ( localize(3957, "Hide the Activity Bar in the Primary and Secondary Side Bars."))]
|
|
942
|
+
},
|
|
943
|
+
[LayoutSettings.ACTIVITY_BAR_AUTO_HIDE]: {
|
|
944
|
+
"type": "boolean",
|
|
945
|
+
"default": false,
|
|
946
|
+
"markdownDescription": ( localize(
|
|
947
|
+
3958,
|
|
948
|
+
"Controls whether the Activity Bar is automatically hidden when there is only one view container to show. This applies to the Primary and Secondary Side Bars when {0} is set to {1} or {2}.",
|
|
949
|
+
"`#workbench.activityBar.location#`",
|
|
950
|
+
"`top`",
|
|
951
|
+
"`bottom`"
|
|
952
|
+
))
|
|
953
|
+
},
|
|
954
|
+
[LayoutSettings.ACTIVITY_BAR_COMPACT]: {
|
|
955
|
+
"type": "boolean",
|
|
956
|
+
"default": false,
|
|
957
|
+
"markdownDescription": ( localize(
|
|
958
|
+
3959,
|
|
959
|
+
"Controls whether the Activity Bar uses a compact layout with smaller icons and reduced width. This setting only applies when {0} is set to {1}.",
|
|
960
|
+
"`#workbench.activityBar.location#`",
|
|
961
|
+
"`default`"
|
|
962
|
+
))
|
|
898
963
|
},
|
|
899
964
|
"workbench.activityBar.iconClickBehavior": {
|
|
900
965
|
"type": "string",
|
|
901
966
|
"enum": ["toggle", "focus"],
|
|
902
967
|
"default": "toggle",
|
|
903
968
|
"markdownDescription": ( localize(
|
|
904
|
-
|
|
969
|
+
3960,
|
|
905
970
|
"Controls the behavior of clicking an Activity Bar icon in the workbench. This value is ignored when {0} is not set to {1}.",
|
|
906
971
|
"`#workbench.activityBar.location#`",
|
|
907
972
|
"`default`"
|
|
908
973
|
)),
|
|
909
|
-
"enumDescriptions": [( localize(
|
|
974
|
+
"enumDescriptions": [( localize(3961, "Hide the Primary Side Bar if the clicked item is already visible.")), ( localize(3962, "Focus the Primary Side Bar if the clicked item is already visible."))]
|
|
910
975
|
},
|
|
911
976
|
"workbench.view.alwaysShowHeaderActions": {
|
|
912
977
|
"type": "boolean",
|
|
913
978
|
"default": false,
|
|
914
979
|
"description": ( localize(
|
|
915
|
-
|
|
980
|
+
3963,
|
|
916
981
|
"Controls the visibility of view header actions. View header actions may either be always visible, or only visible when that view is focused or hovered over."
|
|
917
982
|
))
|
|
918
983
|
},
|
|
919
984
|
"workbench.view.showQuietly": {
|
|
920
985
|
"type": "object",
|
|
921
986
|
"description": ( localize(
|
|
922
|
-
|
|
987
|
+
3964,
|
|
923
988
|
"If an extension requests a hidden view to be shown, display a clickable status bar indicator instead."
|
|
924
989
|
)),
|
|
925
990
|
"scope": ConfigurationScope.WINDOW,
|
|
926
991
|
"properties": {
|
|
927
992
|
"workbench.panel.output": {
|
|
928
993
|
"type": "boolean",
|
|
929
|
-
"description": ( localize(
|
|
994
|
+
"description": ( localize(3965, "Output view"))
|
|
930
995
|
}
|
|
931
996
|
},
|
|
932
997
|
"additionalProperties": false
|
|
@@ -935,15 +1000,15 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
935
1000
|
"type": "string",
|
|
936
1001
|
"enum": ["default", "antialiased", "none", "auto"],
|
|
937
1002
|
"default": "default",
|
|
938
|
-
"description": ( localize(
|
|
1003
|
+
"description": ( localize(3966, "Controls font aliasing method in the workbench.")),
|
|
939
1004
|
"enumDescriptions": [( localize(
|
|
940
|
-
|
|
1005
|
+
3967,
|
|
941
1006
|
"Sub-pixel font smoothing. On most non-retina displays this will give the sharpest text."
|
|
942
1007
|
)), ( localize(
|
|
943
|
-
|
|
1008
|
+
3968,
|
|
944
1009
|
"Smooth the font on the level of the pixel, as opposed to the subpixel. Can make the font appear lighter overall."
|
|
945
|
-
)), ( localize(
|
|
946
|
-
|
|
1010
|
+
)), ( localize(3969, "Disables font smoothing. Text will show with jagged sharp edges.")), ( localize(
|
|
1011
|
+
3970,
|
|
947
1012
|
"Applies `default` or `antialiased` automatically based on the DPI of displays."
|
|
948
1013
|
))],
|
|
949
1014
|
"included": isMacintosh
|
|
@@ -951,8 +1016,8 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
951
1016
|
"workbench.settings.editor": {
|
|
952
1017
|
"type": "string",
|
|
953
1018
|
"enum": ["ui", "json"],
|
|
954
|
-
"enumDescriptions": [( localize(
|
|
955
|
-
"description": ( localize(
|
|
1019
|
+
"enumDescriptions": [( localize(3971, "Use the settings UI editor.")), ( localize(3972, "Use the JSON file editor."))],
|
|
1020
|
+
"description": ( localize(3973, "Determines which Settings editor to use by default.")),
|
|
956
1021
|
"default": "ui",
|
|
957
1022
|
"scope": ConfigurationScope.WINDOW
|
|
958
1023
|
},
|
|
@@ -960,14 +1025,14 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
960
1025
|
"type": "boolean",
|
|
961
1026
|
"default": true,
|
|
962
1027
|
"description": ( localize(
|
|
963
|
-
|
|
1028
|
+
3974,
|
|
964
1029
|
"Controls whether the AI search results toggle is shown in the search bar in the Settings editor after doing a search and once AI search results are available."
|
|
965
1030
|
))
|
|
966
1031
|
},
|
|
967
1032
|
"workbench.hover.delay": {
|
|
968
1033
|
"type": "number",
|
|
969
1034
|
"description": ( localize(
|
|
970
|
-
|
|
1035
|
+
3975,
|
|
971
1036
|
"Controls the delay in milliseconds after which the hover is shown for workbench items (ex. some extension provided tree view items). Already visible items may require a refresh before reflecting this setting change."
|
|
972
1037
|
)),
|
|
973
1038
|
"default": isMacintosh ? 1500 : 500,
|
|
@@ -976,7 +1041,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
976
1041
|
"workbench.hover.reducedDelay": {
|
|
977
1042
|
"type": "number",
|
|
978
1043
|
"description": ( localize(
|
|
979
|
-
|
|
1044
|
+
3976,
|
|
980
1045
|
"Controls the reduced delay in milliseconds used for showing hovers in specific contexts where faster feedback is beneficial."
|
|
981
1046
|
)),
|
|
982
1047
|
"default": 500,
|
|
@@ -985,19 +1050,30 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
985
1050
|
"workbench.reduceMotion": {
|
|
986
1051
|
type: "string",
|
|
987
1052
|
description: ( localize(
|
|
988
|
-
|
|
1053
|
+
3977,
|
|
989
1054
|
"Controls whether the workbench should render with fewer animations."
|
|
990
1055
|
)),
|
|
991
|
-
"enumDescriptions": [( localize(
|
|
1056
|
+
"enumDescriptions": [( localize(3978, "Always render with reduced motion.")), ( localize(3979, "Do not render with reduced motion")), ( localize(3980, "Render with reduced motion based on OS configuration."))],
|
|
992
1057
|
default: "auto",
|
|
993
1058
|
tags: ["accessibility"],
|
|
994
1059
|
enum: ["on", "off", "auto"]
|
|
995
1060
|
},
|
|
1061
|
+
"workbench.reduceTransparency": {
|
|
1062
|
+
type: "string",
|
|
1063
|
+
description: ( localize(
|
|
1064
|
+
3981,
|
|
1065
|
+
"Controls whether the workbench should render with fewer transparency and blur effects for improved performance."
|
|
1066
|
+
)),
|
|
1067
|
+
"enumDescriptions": [( localize(3982, "Always render without transparency and blur effects.")), ( localize(3983, "Do not reduce transparency and blur effects.")), ( localize(3984, "Reduce transparency and blur effects based on OS configuration."))],
|
|
1068
|
+
default: "off",
|
|
1069
|
+
tags: ["accessibility"],
|
|
1070
|
+
enum: ["on", "off", "auto"]
|
|
1071
|
+
},
|
|
996
1072
|
"workbench.navigationControl.enabled": {
|
|
997
1073
|
"type": "boolean",
|
|
998
1074
|
"default": true,
|
|
999
|
-
"markdownDescription": isWeb ? ( localize(
|
|
1000
|
-
|
|
1075
|
+
"markdownDescription": isWeb ? ( localize(3985, "Controls whether the navigation control in the title bar is shown.")) : ( localize(
|
|
1076
|
+
3986,
|
|
1001
1077
|
"Controls whether the navigation control is shown in the custom title bar. This setting only has an effect when {0} is not set to {1}.",
|
|
1002
1078
|
"`#window.customTitleBarVisibility#`",
|
|
1003
1079
|
"`never`"
|
|
@@ -1006,8 +1082,8 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1006
1082
|
[LayoutSettings.LAYOUT_ACTIONS]: {
|
|
1007
1083
|
"type": "boolean",
|
|
1008
1084
|
"default": true,
|
|
1009
|
-
"markdownDescription": isWeb ? ( localize(
|
|
1010
|
-
|
|
1085
|
+
"markdownDescription": isWeb ? ( localize(3987, "Controls whether the layout control in the title bar is shown.")) : ( localize(
|
|
1086
|
+
3988,
|
|
1011
1087
|
"Controls whether the layout control is shown in the custom title bar. This setting only has an effect when {0} is not set to {1}.",
|
|
1012
1088
|
"`#window.customTitleBarVisibility#`",
|
|
1013
1089
|
"`never`"
|
|
@@ -1016,78 +1092,78 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1016
1092
|
"workbench.layoutControl.type": {
|
|
1017
1093
|
"type": "string",
|
|
1018
1094
|
"enum": ["menu", "toggles", "both"],
|
|
1019
|
-
"enumDescriptions": [( localize(
|
|
1020
|
-
|
|
1095
|
+
"enumDescriptions": [( localize(3989, "Shows a single button with a dropdown of layout options.")), ( localize(
|
|
1096
|
+
3990,
|
|
1021
1097
|
"Shows several buttons for toggling the visibility of the panels and side bar."
|
|
1022
|
-
)), ( localize(
|
|
1098
|
+
)), ( localize(3991, "Shows both the dropdown and toggle buttons."))],
|
|
1023
1099
|
"default": "both",
|
|
1024
1100
|
"description": ( localize(
|
|
1025
|
-
|
|
1101
|
+
3992,
|
|
1026
1102
|
"Controls whether the layout control in the custom title bar is displayed as a single menu button or with multiple UI toggles."
|
|
1027
1103
|
))
|
|
1028
1104
|
},
|
|
1029
1105
|
"workbench.tips.enabled": {
|
|
1030
1106
|
"type": "boolean",
|
|
1031
1107
|
"default": true,
|
|
1032
|
-
"description": ( localize(
|
|
1108
|
+
"description": ( localize(3993, "When enabled, will show the watermark tips when no editor is open."))
|
|
1033
1109
|
}
|
|
1034
1110
|
}
|
|
1035
1111
|
});
|
|
1036
1112
|
let windowTitleDescription = ( localize(
|
|
1037
|
-
|
|
1113
|
+
3994,
|
|
1038
1114
|
"Controls the window title based on the current context such as the opened workspace or active editor. Variables are substituted based on the context:"
|
|
1039
1115
|
));
|
|
1040
|
-
windowTitleDescription += "\n- " + [( localize(
|
|
1041
|
-
|
|
1116
|
+
windowTitleDescription += "\n- " + [( localize(3995, "`${activeEditorShort}`: the file name (e.g. myFile.txt).")), ( localize(
|
|
1117
|
+
3996,
|
|
1042
1118
|
"`${activeEditorMedium}`: the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)."
|
|
1043
1119
|
)), ( localize(
|
|
1044
|
-
|
|
1120
|
+
3997,
|
|
1045
1121
|
"`${activeEditorLong}`: the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)."
|
|
1046
1122
|
)), ( localize(
|
|
1047
|
-
|
|
1123
|
+
3998,
|
|
1048
1124
|
"`${activeEditorLanguageId}`: the language identifier of the active editor (e.g. typescript)."
|
|
1049
1125
|
)), ( localize(
|
|
1050
|
-
|
|
1126
|
+
3999,
|
|
1051
1127
|
"`${activeFolderShort}`: the name of the folder the file is contained in (e.g. myFileFolder)."
|
|
1052
1128
|
)), ( localize(
|
|
1053
|
-
|
|
1129
|
+
4000,
|
|
1054
1130
|
"`${activeFolderMedium}`: the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)."
|
|
1055
1131
|
)), ( localize(
|
|
1056
|
-
|
|
1132
|
+
4001,
|
|
1057
1133
|
"`${activeFolderLong}`: the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)."
|
|
1058
1134
|
)), ( localize(
|
|
1059
|
-
|
|
1135
|
+
4002,
|
|
1060
1136
|
"`${folderName}`: name of the workspace folder the file is contained in (e.g. myFolder)."
|
|
1061
1137
|
)), ( localize(
|
|
1062
|
-
|
|
1138
|
+
4003,
|
|
1063
1139
|
"`${folderPath}`: file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)."
|
|
1064
1140
|
)), ( localize(
|
|
1065
|
-
|
|
1141
|
+
4004,
|
|
1066
1142
|
"`${rootName}`: name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))."
|
|
1067
1143
|
)), ( localize(
|
|
1068
|
-
|
|
1144
|
+
4005,
|
|
1069
1145
|
"`${rootNameShort}`: shortened name of the workspace without suffixes (e.g. myFolder, myRemoteFolder or myWorkspace)."
|
|
1070
1146
|
)), ( localize(
|
|
1071
|
-
|
|
1147
|
+
4006,
|
|
1072
1148
|
"`${rootPath}`: file path of the opened workspace or folder (e.g. /Users/Development/myWorkspace)."
|
|
1073
1149
|
)), ( localize(
|
|
1074
|
-
|
|
1150
|
+
4007,
|
|
1075
1151
|
"`${profileName}`: name of the profile in which the workspace is opened (e.g. Data Science (Profile)). Ignored if default profile is used."
|
|
1076
|
-
)), ( localize(
|
|
1077
|
-
|
|
1152
|
+
)), ( localize(4008, "`${appName}`: e.g. VS Code.")), ( localize(4009, "`${remoteName}`: e.g. SSH")), ( localize(
|
|
1153
|
+
4010,
|
|
1078
1154
|
"`${dirty}`: an indicator for when the active editor has unsaved changes."
|
|
1079
|
-
)), ( localize(
|
|
1080
|
-
|
|
1155
|
+
)), ( localize(4011, "`${focusedView}`: the name of the view that is currently focused.")), ( localize(
|
|
1156
|
+
4012,
|
|
1081
1157
|
"`${activeRepositoryName}`: the name of the active repository (e.g. vscode)."
|
|
1082
1158
|
)), ( localize(
|
|
1083
|
-
|
|
1159
|
+
4013,
|
|
1084
1160
|
"`${activeRepositoryBranchName}`: the name of the active branch in the active repository (e.g. main)."
|
|
1085
1161
|
)), ( localize(
|
|
1086
|
-
|
|
1162
|
+
4014,
|
|
1087
1163
|
"`${activeEditorState}`: provides information about the state of the active editor (e.g. modified). This will be appended by default when in screen reader mode with {0} enabled.",
|
|
1088
1164
|
"`accessibility.windowTitleOptimized`"
|
|
1089
1165
|
)), ( localize(
|
|
1090
|
-
|
|
1166
|
+
4015,
|
|
1091
1167
|
"`${separator}`: a conditional separator (\" - \") that only shows when surrounded by variables with values or static text."
|
|
1092
1168
|
))].join("\n- ");
|
|
1093
1169
|
registry.registerConfiguration({
|
|
@@ -1101,13 +1177,13 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1101
1177
|
"window.titleSeparator": {
|
|
1102
1178
|
"type": "string",
|
|
1103
1179
|
"default": defaultWindowTitleSeparator,
|
|
1104
|
-
"markdownDescription": ( localize(
|
|
1180
|
+
"markdownDescription": ( localize(4016, "Separator used by {0}.", "`#window.title#`"))
|
|
1105
1181
|
},
|
|
1106
1182
|
[LayoutSettings.COMMAND_CENTER]: {
|
|
1107
1183
|
type: "boolean",
|
|
1108
1184
|
default: true,
|
|
1109
|
-
markdownDescription: isWeb ? ( localize(
|
|
1110
|
-
|
|
1185
|
+
markdownDescription: isWeb ? ( localize(4017, "Show command launcher together with the window title.")) : ( localize(
|
|
1186
|
+
4018,
|
|
1111
1187
|
"Show command launcher together with the window title. This setting only has an effect when {0} is not set to {1}.",
|
|
1112
1188
|
"`#window.customTitleBarVisibility#`",
|
|
1113
1189
|
"`never`"
|
|
@@ -1117,19 +1193,19 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1117
1193
|
"type": "string",
|
|
1118
1194
|
"enum": ["classic", "visible", "toggle", "hidden", "compact"],
|
|
1119
1195
|
"markdownEnumDescriptions": [( localize(
|
|
1120
|
-
|
|
1196
|
+
4019,
|
|
1121
1197
|
"Menu is displayed at the top of the window and only hidden in full screen mode."
|
|
1122
1198
|
)), ( localize(
|
|
1123
|
-
|
|
1199
|
+
4020,
|
|
1124
1200
|
"Menu is always visible at the top of the window even in full screen mode."
|
|
1125
1201
|
)), isMacintosh ? ( localize(
|
|
1126
|
-
|
|
1202
|
+
4021,
|
|
1127
1203
|
"Menu is hidden but can be displayed at the top of the window by executing the `Focus Application Menu` command."
|
|
1128
1204
|
)) : ( localize(
|
|
1129
|
-
|
|
1205
|
+
4022,
|
|
1130
1206
|
"Menu is hidden but can be displayed at the top of the window via the Alt key."
|
|
1131
|
-
)), ( localize(
|
|
1132
|
-
|
|
1207
|
+
)), ( localize(4023, "Menu is always hidden.")), isWeb ? ( localize(4024, "Menu is displayed as a compact button in the side bar.")) : ( localize(
|
|
1208
|
+
4025,
|
|
1133
1209
|
"Menu is displayed as a compact button in the side bar. This value is ignored when {0} is {1} and {2} is either {3} or {4}.",
|
|
1134
1210
|
"`#window.titleBarStyle#`",
|
|
1135
1211
|
"`native`",
|
|
@@ -1140,10 +1216,10 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1140
1216
|
"default": isWeb ? "compact" : "classic",
|
|
1141
1217
|
"scope": ConfigurationScope.APPLICATION,
|
|
1142
1218
|
"markdownDescription": isMacintosh ? ( localize(
|
|
1143
|
-
|
|
1219
|
+
4026,
|
|
1144
1220
|
"Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and executing `Focus Application Menu` will show it. A setting of 'compact' will move the menu into the side bar."
|
|
1145
1221
|
)) : ( localize(
|
|
1146
|
-
|
|
1222
|
+
4027,
|
|
1147
1223
|
"Control the visibility of the menu bar. A setting of 'toggle' means that the menu bar is hidden and a single press of the Alt key will show it. A setting of 'compact' will move the menu into the side bar."
|
|
1148
1224
|
)),
|
|
1149
1225
|
"included": isWindows || isLinux || isWeb
|
|
@@ -1153,7 +1229,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1153
1229
|
"default": true,
|
|
1154
1230
|
"scope": ConfigurationScope.APPLICATION,
|
|
1155
1231
|
"description": ( localize(
|
|
1156
|
-
|
|
1232
|
+
4028,
|
|
1157
1233
|
"Controls whether the main menus can be opened via Alt-key shortcuts. Disabling mnemonics allows to bind these Alt-key shortcuts to editor commands instead."
|
|
1158
1234
|
)),
|
|
1159
1235
|
"included": isWindows || isLinux
|
|
@@ -1163,7 +1239,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1163
1239
|
"default": true,
|
|
1164
1240
|
"scope": ConfigurationScope.APPLICATION,
|
|
1165
1241
|
"markdownDescription": ( localize(
|
|
1166
|
-
|
|
1242
|
+
4029,
|
|
1167
1243
|
"Controls whether the menu bar will be focused by pressing the Alt-key. This setting has no effect on toggling the menu bar with the Alt-key."
|
|
1168
1244
|
)),
|
|
1169
1245
|
"included": isWindows || isLinux
|
|
@@ -1171,37 +1247,37 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1171
1247
|
"window.openFilesInNewWindow": {
|
|
1172
1248
|
"type": "string",
|
|
1173
1249
|
"enum": ["on", "off", "default"],
|
|
1174
|
-
"enumDescriptions": [( localize(
|
|
1175
|
-
|
|
1250
|
+
"enumDescriptions": [( localize(4030, "Files will open in a new window.")), ( localize(
|
|
1251
|
+
4031,
|
|
1176
1252
|
"Files will open in the window with the files' folder open or the last active window."
|
|
1177
1253
|
)), isMacintosh ? ( localize(
|
|
1178
|
-
|
|
1254
|
+
4032,
|
|
1179
1255
|
"Files will open in the window with the files' folder open or the last active window unless opened via the Dock or from Finder."
|
|
1180
1256
|
)) : ( localize(
|
|
1181
|
-
|
|
1257
|
+
4033,
|
|
1182
1258
|
"Files will open in a new window unless picked from within the application (e.g. via the File menu)."
|
|
1183
1259
|
))],
|
|
1184
1260
|
"default": "off",
|
|
1185
1261
|
"scope": ConfigurationScope.APPLICATION,
|
|
1186
1262
|
"markdownDescription": isMacintosh ? ( localize(
|
|
1187
|
-
|
|
1263
|
+
4034,
|
|
1188
1264
|
"Controls whether files should open in a new window when using a command line or file dialog.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
|
|
1189
1265
|
)) : ( localize(
|
|
1190
|
-
|
|
1266
|
+
4035,
|
|
1191
1267
|
"Controls whether files should open in a new window when using a command line or file dialog.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
|
|
1192
1268
|
))
|
|
1193
1269
|
},
|
|
1194
1270
|
"window.openFoldersInNewWindow": {
|
|
1195
1271
|
"type": "string",
|
|
1196
1272
|
"enum": ["on", "off", "default"],
|
|
1197
|
-
"enumDescriptions": [( localize(
|
|
1198
|
-
|
|
1273
|
+
"enumDescriptions": [( localize(4036, "Folders will open in a new window.")), ( localize(4037, "Folders will replace the last active window.")), ( localize(
|
|
1274
|
+
4038,
|
|
1199
1275
|
"Folders will open in a new window unless a folder is picked from within the application (e.g. via the File menu)."
|
|
1200
1276
|
))],
|
|
1201
1277
|
"default": "default",
|
|
1202
1278
|
"scope": ConfigurationScope.APPLICATION,
|
|
1203
1279
|
"markdownDescription": ( localize(
|
|
1204
|
-
|
|
1280
|
+
4039,
|
|
1205
1281
|
"Controls whether folders should open in a new window or replace the last active window.\nNote that there can still be cases where this setting is ignored (e.g. when using the `--new-window` or `--reuse-window` command line option)."
|
|
1206
1282
|
))
|
|
1207
1283
|
},
|
|
@@ -1209,21 +1285,21 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1209
1285
|
"type": "string",
|
|
1210
1286
|
"enum": ["always", "keyboardOnly", "never"],
|
|
1211
1287
|
"enumDescriptions": [isWeb ? ( localize(
|
|
1212
|
-
|
|
1288
|
+
4040,
|
|
1213
1289
|
"Always try to ask for confirmation. Note that browsers may still decide to close a tab or window without confirmation."
|
|
1214
|
-
)) : ( localize(
|
|
1215
|
-
|
|
1290
|
+
)) : ( localize(4041, "Always ask for confirmation.")), isWeb ? ( localize(
|
|
1291
|
+
4042,
|
|
1216
1292
|
"Only ask for confirmation if a keybinding was used to close the window. Note that detection may not be possible in some cases."
|
|
1217
|
-
)) : ( localize(
|
|
1218
|
-
|
|
1293
|
+
)) : ( localize(4043, "Only ask for confirmation if a keybinding was used.")), isWeb ? ( localize(
|
|
1294
|
+
4044,
|
|
1219
1295
|
"Never explicitly ask for confirmation unless data loss is imminent."
|
|
1220
|
-
)) : ( localize(
|
|
1296
|
+
)) : ( localize(4045, "Never explicitly ask for confirmation."))],
|
|
1221
1297
|
"default": (isWeb && !isStandalone()) ? "keyboardOnly" : "never",
|
|
1222
1298
|
"markdownDescription": isWeb ? ( localize(
|
|
1223
|
-
|
|
1299
|
+
4046,
|
|
1224
1300
|
"Controls whether to show a confirmation dialog before closing the browser tab or window. Note that even if enabled, browsers may still decide to close a tab or window without confirmation and that this setting is only a hint that may not work in all cases."
|
|
1225
1301
|
)) : ( localize(
|
|
1226
|
-
|
|
1302
|
+
4047,
|
|
1227
1303
|
"Controls whether to show a confirmation dialog before closing a window or quitting the application."
|
|
1228
1304
|
)),
|
|
1229
1305
|
"scope": ConfigurationScope.APPLICATION
|
|
@@ -1242,7 +1318,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1242
1318
|
"type": "boolean",
|
|
1243
1319
|
"default": true,
|
|
1244
1320
|
"description": ( localize(
|
|
1245
|
-
|
|
1321
|
+
4048,
|
|
1246
1322
|
"Controls whether the problems are visible throughout the editor and workbench."
|
|
1247
1323
|
))
|
|
1248
1324
|
}
|
|
@@ -1251,40 +1327,40 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1251
1327
|
registry.registerConfiguration({
|
|
1252
1328
|
"id": "zenMode",
|
|
1253
1329
|
"order": 9,
|
|
1254
|
-
"title": ( localize(
|
|
1330
|
+
"title": ( localize(4049, "Zen Mode")),
|
|
1255
1331
|
"type": "object",
|
|
1256
1332
|
"properties": {
|
|
1257
1333
|
"zenMode.fullScreen": {
|
|
1258
1334
|
"type": "boolean",
|
|
1259
1335
|
"default": true,
|
|
1260
1336
|
"description": ( localize(
|
|
1261
|
-
|
|
1337
|
+
4050,
|
|
1262
1338
|
"Controls whether turning on Zen Mode also puts the workbench into full screen mode."
|
|
1263
1339
|
))
|
|
1264
1340
|
},
|
|
1265
1341
|
"zenMode.centerLayout": {
|
|
1266
1342
|
"type": "boolean",
|
|
1267
1343
|
"default": true,
|
|
1268
|
-
"description": ( localize(
|
|
1344
|
+
"description": ( localize(4051, "Controls whether turning on Zen Mode also centers the layout."))
|
|
1269
1345
|
},
|
|
1270
1346
|
"zenMode.showTabs": {
|
|
1271
1347
|
"type": "string",
|
|
1272
1348
|
"enum": ["multiple", "single", "none"],
|
|
1273
1349
|
"description": ( localize(
|
|
1274
|
-
|
|
1350
|
+
4052,
|
|
1275
1351
|
"Controls whether turning on Zen Mode should show multiple editor tabs, a single editor tab, or hide the editor title area completely."
|
|
1276
1352
|
)),
|
|
1277
|
-
"enumDescriptions": [( localize(
|
|
1278
|
-
|
|
1353
|
+
"enumDescriptions": [( localize(4053, "Each editor is displayed as a tab in the editor title area.")), ( localize(
|
|
1354
|
+
4054,
|
|
1279
1355
|
"The active editor is displayed as a single large tab in the editor title area."
|
|
1280
|
-
)), ( localize(
|
|
1356
|
+
)), ( localize(4055, "The editor title area is not displayed."))],
|
|
1281
1357
|
"default": "multiple"
|
|
1282
1358
|
},
|
|
1283
1359
|
"zenMode.hideStatusBar": {
|
|
1284
1360
|
"type": "boolean",
|
|
1285
1361
|
"default": true,
|
|
1286
1362
|
"description": ( localize(
|
|
1287
|
-
|
|
1363
|
+
4056,
|
|
1288
1364
|
"Controls whether turning on Zen Mode also hides the status bar at the bottom of the workbench."
|
|
1289
1365
|
))
|
|
1290
1366
|
},
|
|
@@ -1292,7 +1368,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1292
1368
|
"type": "boolean",
|
|
1293
1369
|
"default": true,
|
|
1294
1370
|
"description": ( localize(
|
|
1295
|
-
|
|
1371
|
+
4057,
|
|
1296
1372
|
"Controls whether turning on Zen Mode also hides the activity bar either at the left or right of the workbench."
|
|
1297
1373
|
))
|
|
1298
1374
|
},
|
|
@@ -1300,7 +1376,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1300
1376
|
"type": "boolean",
|
|
1301
1377
|
"default": true,
|
|
1302
1378
|
"description": ( localize(
|
|
1303
|
-
|
|
1379
|
+
4058,
|
|
1304
1380
|
"Controls whether turning on Zen Mode also hides the editor line numbers."
|
|
1305
1381
|
))
|
|
1306
1382
|
},
|
|
@@ -1308,7 +1384,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1308
1384
|
"type": "boolean",
|
|
1309
1385
|
"default": true,
|
|
1310
1386
|
"description": ( localize(
|
|
1311
|
-
|
|
1387
|
+
4059,
|
|
1312
1388
|
"Controls whether a window should restore to Zen Mode if it was exited in Zen Mode."
|
|
1313
1389
|
))
|
|
1314
1390
|
},
|
|
@@ -1316,7 +1392,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1316
1392
|
"type": "boolean",
|
|
1317
1393
|
"default": true,
|
|
1318
1394
|
"description": ( localize(
|
|
1319
|
-
|
|
1395
|
+
4060,
|
|
1320
1396
|
"Controls whether notifications do not disturb mode should be enabled while in Zen Mode. If true, only error notifications will pop out."
|
|
1321
1397
|
))
|
|
1322
1398
|
}
|
|
@@ -1405,3 +1481,19 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1405
1481
|
return result;
|
|
1406
1482
|
}
|
|
1407
1483
|
}]);
|
|
1484
|
+
( Registry.as(Extensions$1.ConfigurationMigration)).registerConfigurationMigrations([{
|
|
1485
|
+
key: "workbench.editor.useModal",
|
|
1486
|
+
migrateFn: value => {
|
|
1487
|
+
const result = [];
|
|
1488
|
+
if (value === "default") {
|
|
1489
|
+
result.push(["workbench.editor.useModal", {
|
|
1490
|
+
value: "some"
|
|
1491
|
+
}]);
|
|
1492
|
+
} else if (value === "on") {
|
|
1493
|
+
result.push(["workbench.editor.useModal", {
|
|
1494
|
+
value: "all"
|
|
1495
|
+
}]);
|
|
1496
|
+
}
|
|
1497
|
+
return result;
|
|
1498
|
+
}
|
|
1499
|
+
}]);
|