@codingame/monaco-vscode-api 24.3.0 → 25.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/debugProtocol.d.ts +1 -1
- package/missing-services.js +30 -34
- package/package.json +8 -8
- package/services.d.ts +16 -16
- package/services.js +19 -19
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/dom.js +14 -2
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +3 -1
- package/vscode/src/vs/base/browser/ui/button/button.js +16 -8
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +3 -8
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.d.ts +5 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.js +6 -1
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +17 -1
- package/vscode/src/vs/base/browser/ui/list/list.css +1 -0
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +12 -2
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +15 -4
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +1 -0
- package/vscode/src/vs/base/common/actions.d.ts +1 -1
- package/vscode/src/vs/base/common/actions.js +1 -1
- package/vscode/src/vs/base/common/codicons.d.ts +5 -2
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +5 -2
- package/vscode/src/vs/base/common/codiconsLibrary.js +5 -2
- package/vscode/src/vs/base/common/date.js +14 -22
- package/vscode/src/vs/base/common/equals.d.ts +46 -15
- package/vscode/src/vs/base/common/equals.js +51 -24
- package/vscode/src/vs/base/common/errorMessage.js +6 -6
- package/vscode/src/vs/base/common/event.d.ts +12 -2
- package/vscode/src/vs/base/common/event.js +4 -4
- package/vscode/src/vs/base/common/fuzzyScorer.d.ts +1 -1
- package/vscode/src/vs/base/common/fuzzyScorer.js +2 -2
- package/vscode/src/vs/base/common/jsonErrorMessages.js +9 -9
- package/vscode/src/vs/base/common/keybindingLabels.js +20 -20
- package/vscode/src/vs/base/common/marshallingIds.d.ts +1 -1
- package/vscode/src/vs/base/common/marshallingIds.js +1 -1
- package/vscode/src/vs/base/common/oauth.d.ts +12 -4
- package/vscode/src/vs/base/common/oauth.js +63 -60
- package/vscode/src/vs/base/common/observableInternal/base.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/changeTracker.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/experimental/utils.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/index.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +2 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.js +17 -1
- package/vscode/src/vs/base/common/observableInternal/utils/runOnChange.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/utils/utils.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/utils/utilsCancellation.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/utils/valueWithChangeEvent.js +1 -1
- package/vscode/src/vs/base/common/strings.js +2 -1
- package/vscode/src/vs/base/parts/ipc/common/ipc.js +1 -0
- package/vscode/src/vs/editor/browser/controller/dragScrolling.js +2 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.d.ts +1 -2
- 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/textAreaEditContextState.js +16 -2
- package/vscode/src/vs/editor/browser/controller/mouseHandler.js +5 -2
- package/vscode/src/vs/editor/browser/coreCommands.js +5 -4
- package/vscode/src/vs/editor/browser/editorExtensions.js +9 -9
- package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.d.ts +4 -0
- package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.js +7 -1
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +13 -1
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.js +7 -4
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.js +13 -3
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/fullFileRenderStrategy.js +36 -1
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.js +36 -1
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +29 -3
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +8 -0
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +24 -15
- package/vscode/src/vs/editor/browser/services/editorWorkerService.js +7 -2
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +4 -4
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -12
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +14 -14
- 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 +7 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditor.contribution.js +5 -5
- 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 +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/registrations.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils/editorGutter.js +7 -6
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/colors.js +3 -3
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl.js +2 -2
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +61 -56
- package/vscode/src/vs/editor/common/config/editorOptions.js +410 -410
- package/vscode/src/vs/editor/common/config/fontInfo.d.ts +1 -1
- package/vscode/src/vs/editor/common/config/fontInfo.js +1 -1
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +72 -72
- package/vscode/src/vs/editor/common/core/range.d.ts +3 -0
- package/vscode/src/vs/editor/common/cursor/cursorTypeEditOperations.js +3 -3
- package/vscode/src/vs/editor/common/cursor/cursorWordOperations.d.ts +1 -1
- package/vscode/src/vs/editor/common/cursor/cursorWordOperations.js +6 -3
- package/vscode/src/vs/editor/common/editorContextKeys.js +47 -47
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +5 -5
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages/nullTokenize.js +1 -1
- package/vscode/src/vs/editor/common/languages/supports/tokenization.d.ts +3 -0
- package/vscode/src/vs/editor/common/languages/supports/tokenization.js +29 -1
- package/vscode/src/vs/editor/common/languages.d.ts +17 -3
- package/vscode/src/vs/editor/common/languages.js +58 -57
- package/vscode/src/vs/editor/common/model/decorationProvider.d.ts +15 -2
- package/vscode/src/vs/editor/common/model/decorationProvider.js +25 -0
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/indentationGuesser.js +2 -2
- package/vscode/src/vs/editor/common/model/textModel.d.ts +10 -7
- package/vscode/src/vs/editor/common/model/textModel.js +44 -30
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.d.ts +4 -1
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +5 -3
- package/vscode/src/vs/editor/common/model/tokens/annotations.d.ts +85 -0
- package/vscode/src/vs/editor/common/model/tokens/annotations.js +180 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizationFontDecorationsProvider.d.ts +24 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizationFontDecorationsProvider.js +126 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.d.ts +3 -1
- package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.js +9 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.d.ts +1 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.js +9 -0
- package/vscode/src/vs/editor/common/standaloneStrings.d.ts +1 -0
- package/vscode/src/vs/editor/common/standaloneStrings.js +53 -48
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +37 -0
- package/vscode/src/vs/editor/common/textModelEvents.js +19 -1
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +4 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +21 -14
- package/vscode/src/vs/editor/common/viewModel.d.ts +1 -0
- 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 -27
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- 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/defaultDocumentColorProvider.js +4 -5
- 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 +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- 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.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +26 -26
- 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/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 +15 -15
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- 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 +3 -3
- 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 +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +11 -11
- 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 +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +1 -0
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +24 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +4 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +57 -32
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/telemetry.d.ts +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +24 -22
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +44 -23
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +17 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +6 -17
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +7 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +7 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +13 -11
- 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 +15 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +25 -18
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.js +62 -91
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistnaceWidgetPlacement.d.ts +54 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistnaceWidgetPlacement.js +105 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.js +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +42 -22
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +13 -5
- 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 +35 -35
- package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.js +29 -78
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- 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.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +31 -36
- 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.js +6 -6
- package/vscode/src/vs/editor/contrib/sectionHeaders/browser/sectionHeaders.js +3 -2
- 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/snippetParser.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.js +33 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- 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 +13 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +4 -3
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +120 -125
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +56 -28
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +24 -19
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +21 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetStatus.d.ts +8 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetStatus.js +11 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- 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 +6 -9
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +20 -3
- package/vscode/src/vs/editor/standalone/browser/standaloneThemeService.js +3 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +63 -64
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +4 -4
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +11 -8
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +1 -6
- package/vscode/src/vs/platform/actions/common/actions.js +1 -3
- 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.js +10 -10
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- 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/dialogs/browser/dialog.js +1 -1
- package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +22 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +15 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +19 -19
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +10 -8
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +0 -6
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +0 -6
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.d.ts +12 -1
- package/vscode/src/vs/platform/files/common/files.js +7 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/hover/browser/hoverWidget.js +1 -1
- package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- 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 +27 -27
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/markers/common/markerService.js +6 -6
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +1 -1
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +46 -8
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +13 -13
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +81 -78
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +14 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +13 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +3 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +59 -27
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.d.ts +3 -2
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +44 -47
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +3 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +65 -9
- 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.d.ts +3 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +8 -8
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +7 -4
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +20 -14
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +4 -5
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +29 -28
- package/vscode/src/vs/platform/request/common/request.js +20 -20
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +9 -1
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +11 -6
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +2 -1
- package/vscode/src/vs/platform/terminal/common/terminal.js +1 -0
- package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +32 -32
- package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +0 -5
- package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.d.ts +1 -0
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -17
- 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 +47 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +12 -12
- 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/themeService.d.ts +9 -0
- package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +21 -21
- package/vscode/src/vs/{workbench/contrib → platform}/url/common/trustedDomains.d.ts +1 -1
- package/vscode/src/vs/{workbench/contrib → platform}/url/common/trustedDomains.js +3 -2
- package/vscode/src/vs/{workbench/contrib → platform}/url/common/urlGlob.d.ts +1 -1
- package/vscode/src/vs/{workbench/contrib → platform}/url/common/urlGlob.js +1 -1
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/abstractJsonSynchronizer.js +3 -0
- 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/webContentExtractor/common/webContentExtractor.d.ts +4 -0
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +32 -18
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +13 -1
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +4 -4
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +9 -6
- package/vscode/src/vs/workbench/api/common/extHostChatContext.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +1 -5
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +8 -29
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +5 -2
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +47 -21
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +4 -4
- package/vscode/src/vs/workbench/api/common/extHostOutput.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostOutput.js +40 -25
- package/vscode/src/vs/workbench/api/common/extHostQuickOpen.js +2 -20
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +7 -3
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +2 -3
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +16 -3
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +6 -6
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +3 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +2 -7
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.js +6 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
- package/vscode/src/vs/workbench/browser/actions/layoutActions.js +139 -136
- 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/dnd.js +9 -0
- 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/parts/activitybar/activitybarPart.js +20 -20
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +25 -25
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
- package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
- 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.d.ts +3 -0
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +48 -41
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +57 -10
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsModel.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +7 -7
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.d.ts +6 -0
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +158 -138
- package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +35 -22
- package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +8 -8
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +12 -12
- package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +1 -1
- 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 +2 -2
- 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 +19 -19
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +17 -17
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +9 -9
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +13 -13
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +33 -33
- package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +18 -18
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +14 -14
- package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +4 -2
- package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/views/media/views.css +7 -6
- package/vscode/src/vs/workbench/browser/parts/views/treeView.js +18 -18
- package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +6 -6
- package/vscode/src/vs/workbench/browser/quickaccess.d.ts +1 -1
- package/vscode/src/vs/workbench/browser/quickaccess.js +9 -9
- package/vscode/src/vs/workbench/browser/window.js +16 -16
- package/vscode/src/vs/workbench/browser/workbench.contribution.js +251 -238
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.js +73 -73
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +7 -0
- package/vscode/src/vs/workbench/common/editor/editorInput.js +3 -0
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +160 -160
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +160 -160
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.js +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +68 -652
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +14 -27
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +33 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +39 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatAttachmentResolveService.service.d.ts → attachments/chatAttachmentResolveService.service.d.ts} +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatAttachmentResolveService.service.js → attachments/chatAttachmentResolveService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.d.ts → attachments/chatContextPickService.d.ts} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.js → attachments/chatContextPickService.js} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.service.d.ts → attachments/chatContextPickService.service.d.ts} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.service.js → attachments/chatContextPickService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → attachments}/chatDynamicVariables.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → attachments}/chatDynamicVariables.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{contrib/screenshot.d.ts → attachments/chatScreenshotContext.d.ts} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{contrib/screenshot.js → attachments/chatScreenshotContext.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +15 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +11 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/contextContrib/chatContextService.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextService.service.js → contextContrib/chatContextService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileRewriter.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileRewriter.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatContentParts.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatMarkdownAnchorService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatMarkdownAnchorService.service.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatEditorInput.d.ts → widgetHosts/editor/chatEditorInput.d.ts} +17 -24
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatEditorInput.js → widgetHosts/editor/chatEditorInput.js} +44 -105
- package/vscode/src/vs/workbench/contrib/chat/common/{chatActions.d.ts → actions/chatActions.d.ts} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{chatActions.js → actions/chatActions.js} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{chatContextKeys.d.ts → actions/chatContextKeys.d.ts} +11 -10
- package/vscode/src/vs/workbench/contrib/chat/common/{chatContextKeys.js → actions/chatContextKeys.js} +81 -73
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariableEntries.d.ts → attachments/chatVariableEntries.d.ts} +9 -9
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariableEntries.js → attachments/chatVariableEntries.js} +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.d.ts → attachments/chatVariables.d.ts} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.service.d.ts → attachments/chatVariables.service.d.ts} +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.service.js → attachments/chatVariables.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chat.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chat.js +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{chatService.d.ts → chatService/chatService.d.ts} +31 -41
- package/vscode/src/vs/workbench/contrib/chat/common/{chatService.js → chatService/chatService.js} +16 -8
- package/vscode/src/vs/workbench/contrib/chat/common/{chatService.service.d.ts → chatService/chatService.service.d.ts} +14 -15
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +6 -10
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +4 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +5 -10
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +0 -4
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +1 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{chatContext.d.ts → contextContrib/chatContext.d.ts} +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/{chatCodeMapperService.service.d.ts → editing/chatCodeMapperService.service.d.ts} +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{chatCodeMapperService.service.js → editing/chatCodeMapperService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.d.ts → editing/chatEditingService.d.ts} +15 -15
- package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.js → editing/chatEditingService.js} +11 -11
- package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.service.d.ts → editing/chatEditingService.service.d.ts} +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.service.js → editing/chatEditingService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/common/{chatModel.d.ts → model/chatModel.d.ts} +36 -26
- package/vscode/src/vs/workbench/contrib/chat/common/{chatModel.js → model/chatModel.js} +82 -64
- package/vscode/src/vs/workbench/contrib/chat/{browser → common/model/chatProgressTypes}/chatElicitationRequestPart.d.ts +7 -7
- package/vscode/src/vs/workbench/contrib/chat/{browser → common/model/chatProgressTypes}/chatElicitationRequestPart.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatTransferService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/common/{chatTransferService.service.js → model/chatTransferService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatUri.d.ts → model/chatUri.d.ts} +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatUri.js → model/chatUri.js} +8 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{chatViewModel.d.ts → model/chatViewModel.d.ts} +15 -14
- package/vscode/src/vs/workbench/contrib/chat/common/{chatViewModel.js → model/chatViewModel.js} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/{chatWordCounter.js → model/chatWordCounter.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.d.ts → participants/chatAgents.d.ts} +19 -19
- package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.js → participants/chatAgents.js} +27 -24
- package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.service.d.ts → participants/chatAgents.service.d.ts} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.service.js → participants/chatAgents.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatParticipantContribTypes.d.ts → participants/chatParticipantContribTypes.d.ts} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatSlashCommands.service.d.ts → participants/chatSlashCommands.service.d.ts} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/{chatSlashCommands.service.js → participants/chatSlashCommands.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +48 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +376 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +9 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{chatParserTypes.d.ts → requestParser/chatParserTypes.d.ts} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/{chatParserTypes.js → requestParser/chatParserTypes.js} +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/{chatRequestParser.d.ts → requestParser/chatRequestParser.d.ts} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/{chatRequestParser.js → requestParser/chatRequestParser.js} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{confirmationTool.d.ts → builtinTools/confirmationTool.d.ts} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{confirmationTool.js → builtinTools/confirmationTool.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{editFileTool.d.ts → builtinTools/editFileTool.d.ts} +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{editFileTool.js → builtinTools/editFileTool.js} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{manageTodoListTool.d.ts → builtinTools/manageTodoListTool.d.ts} +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{manageTodoListTool.js → builtinTools/manageTodoListTool.js} +20 -20
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{runSubagentTool.d.ts → builtinTools/runSubagentTool.d.ts} +14 -11
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{runSubagentTool.js → builtinTools/runSubagentTool.js} +41 -20
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{tools.d.ts → builtinTools/tools.d.ts} +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{tools.js → builtinTools/tools.js} +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/chatTodoListService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/common/{chatTodoListService.service.js → tools/chatTodoListService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.d.ts → tools/languageModelToolsConfirmationService.d.ts} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.service.d.ts → tools/languageModelToolsConfirmationService.service.d.ts} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.service.js → tools/languageModelToolsConfirmationService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.d.ts → tools/languageModelToolsService.d.ts} +20 -16
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.js → tools/languageModelToolsService.js} +13 -13
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.service.d.ts → tools/languageModelToolsService.service.d.ts} +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.service.js → tools/languageModelToolsService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{annotations.d.ts → widget/annotations.d.ts} +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{annotations.js → widget/annotations.js} +9 -8
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatLayoutService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/common/{chatLayoutService.service.js → widget/chatLayoutService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatWidgetHistoryService.service.d.ts → widget/chatWidgetHistoryService.service.d.ts} +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/{chatWidgetHistoryService.service.js → widget/chatWidgetHistoryService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +6 -0
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- 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.js +10 -10
- 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.js +6 -6
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- 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 +5 -5
- 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 +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +4 -4
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
- 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/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.d.ts +2 -2
- 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 +30 -30
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.d.ts +20 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +524 -146
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +39 -39
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -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 +12 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
- package/vscode/src/vs/workbench/contrib/debug/common/debug.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugModel.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +30 -13
- 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 +1 -1
- 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 +93 -81
- 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 +15 -15
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +154 -153
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +182 -183
- 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.js +24 -24
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +53 -50
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +11 -18
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +36 -31
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +76 -76
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionActions.css +31 -12
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +32 -31
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionsWidgets.css +15 -0
- 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 +9 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- 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.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +4 -4
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +5 -5
- 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 +90 -90
- 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 +32 -32
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +56 -53
- 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.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +22 -10
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +26 -24
- 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/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/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/interactive/browser/replInputHintContentWidget.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 +48 -48
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +31 -31
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypesUtils.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +31 -40
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/conflictActions.js +21 -21
- package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
- 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/cellStatusBar/executionStatusBarItemController.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindWidget.js +3 -3
- 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/diff/inlineDiff/notebookOriginalModelRefFactory.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/media/notebookCellChat.css +1 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookCellLayoutManager.js +3 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +8 -8
- 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 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +8 -8
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +57 -12
- 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 +2 -2
- 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/view/renderers/webviewPreloads.js +5 -9
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookEditorStickyScroll.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookEditorToolbar.js +1 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +15 -15
- 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 +3 -3
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +14 -14
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +50 -50
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +5 -5
- package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
- package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +60 -60
- package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditorInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +15 -15
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +9 -9
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +2 -1
- package/vscode/src/vs/workbench/contrib/scm/common/scm.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +10 -10
- 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.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +7 -7
- 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/searchView.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +69 -59
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +8 -8
- 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/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/detachedTerminal.js +3 -1
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +10 -2
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +7 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +51 -45
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +9 -9
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +19 -18
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +7 -2
- 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.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +93 -48
- 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/{chat → inlineHint}/common/terminalInitialHintConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminal.suggest.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminal.suggest.js +5 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.d.ts +13 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +79 -73
- package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +7 -7
- 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 +1 -0
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.js +4 -1
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +46 -13
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInput.d.ts +7 -6
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInput.js +4 -0
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +1 -1
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +29 -28
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +15 -15
- package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +13 -12
- 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/editorResolverService.js +1 -1
- 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 +7 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +86 -86
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/{contrib/logs → services/log}/common/defaultLogLevels.service.d.ts +4 -7
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/outline/browser/outline.d.ts +5 -1
- package/vscode/src/vs/workbench/services/output/common/output.d.ts +2 -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/preferences.js +2 -1
- 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.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
- package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +8 -5
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/colorThemeData.d.ts +13 -1
- package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +63 -10
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.d.ts +3 -0
- 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/views/browser/viewsService.js +9 -9
- package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +22 -19
- package/vscode-dts/vscode.d.ts +33 -14
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +13 -20
- package/vscode-dts/vscode.proposed.d.ts +0 -2
- package/vscode-dts/vscode.proposed.interactive.d.ts +1 -1
- package/vscode-dts/vscode.proposed.scmProviderOptions.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.d.ts +0 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.js +0 -25
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCloseNotification.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCloseNotification.js +0 -38
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextService.service.d.ts +0 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.service.d.ts +0 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.d.ts +0 -10
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +0 -7
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +0 -6
- package/vscode/src/vs/workbench/contrib/localHistory/browser/localHistory.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/localHistory/browser/localHistory.js +0 -25
- package/vscode-dts/vscode.proposed.quickPickItemResource.d.ts +0 -22
- package/vscode-dts/vscode.proposed.quickPickPrompt.d.ts +0 -27
- /package/vscode/src/vs/workbench/contrib/chat/browser/{imageUtils.d.ts → chatImageUtils.d.ts} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/browser/{imageUtils.js → chatImageUtils.js} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → widget/input/editor}/chatDynamicVariablesConstant.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → widget/input/editor}/chatDynamicVariablesConstant.js +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/{chatWordCounter.d.ts → model/chatWordCounter.d.ts} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/{chatParticipantContribTypes.js → participants/chatParticipantContribTypes.js} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/tools/{toolHelpers.d.ts → builtinTools/toolHelpers.d.ts} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/tools/{toolHelpers.js → builtinTools/toolHelpers.js} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/{modelPicker → widget/input}/modelPickerWidget.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/terminalContrib/{chat → inlineHint}/common/terminalInitialHintConfiguration.d.ts +0 -0
- /package/vscode/src/vs/workbench/{contrib/logs → services/log}/common/defaultLogLevels.service.js +0 -0
|
@@ -3,6 +3,7 @@ import { isStandalone } from '../../base/browser/browser.js';
|
|
|
3
3
|
import { isWeb, isMacintosh, isNative, isWindows, isLinux } from '../../base/common/platform.js';
|
|
4
4
|
import { localize } from '../../nls.js';
|
|
5
5
|
import { Extensions, ConfigurationScope } from '../../platform/configuration/common/configurationRegistry.js';
|
|
6
|
+
import product from '../../platform/product/common/product.js';
|
|
6
7
|
import { Registry } from '../../platform/registry/common/platform.js';
|
|
7
8
|
import { ConfigurationMigrationWorkbenchContribution, DynamicWorkbenchSecurityConfiguration, workbenchConfigurationNodeBase, windowConfigurationNodeBase, DynamicWindowConfiguration, problemsConfigurationNodeBase, Extensions as Extensions$1 } from '../common/configuration.js';
|
|
8
9
|
import { registerWorkbenchContribution2, WorkbenchPhase } from '../common/contributions.js';
|
|
@@ -20,7 +21,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
20
21
|
'workbench.externalBrowser': {
|
|
21
22
|
type: 'string',
|
|
22
23
|
markdownDescription: ( localize(
|
|
23
|
-
|
|
24
|
+
3727,
|
|
24
25
|
"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."
|
|
25
26
|
)),
|
|
26
27
|
included: isNative,
|
|
@@ -30,14 +31,14 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
30
31
|
type: 'string',
|
|
31
32
|
enum: ['default', 'large'],
|
|
32
33
|
enumDescriptions: [
|
|
33
|
-
( localize(
|
|
34
|
+
( localize(3728, "The default size.")),
|
|
34
35
|
( localize(
|
|
35
|
-
|
|
36
|
+
3729,
|
|
36
37
|
"Increases the size, so it can be grabbed more easily with the mouse."
|
|
37
38
|
))
|
|
38
39
|
],
|
|
39
40
|
description: ( localize(
|
|
40
|
-
|
|
41
|
+
3730,
|
|
41
42
|
"Controls the height of the scrollbars used for tabs and breadcrumbs in the editor title area."
|
|
42
43
|
)),
|
|
43
44
|
default: 'default',
|
|
@@ -46,12 +47,12 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
46
47
|
type: 'string',
|
|
47
48
|
enum: ['auto', 'visible', 'hidden'],
|
|
48
49
|
enumDescriptions: [
|
|
49
|
-
( localize(
|
|
50
|
-
( localize(
|
|
51
|
-
( localize(
|
|
50
|
+
( localize(3731, "The horizontal scrollbar will be visible only when necessary.")),
|
|
51
|
+
( localize(3732, "The horizontal scrollbar will always be visible.")),
|
|
52
|
+
( localize(3733, "The horizontal scrollbar will always be hidden."))
|
|
52
53
|
],
|
|
53
54
|
description: ( localize(
|
|
54
|
-
|
|
55
|
+
3734,
|
|
55
56
|
"Controls the visibility of the scrollbars used for tabs and breadcrumbs in the editor title area."
|
|
56
57
|
)),
|
|
57
58
|
default: 'auto',
|
|
@@ -60,15 +61,15 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
60
61
|
'type': 'string',
|
|
61
62
|
'enum': [EditorTabsMode.MULTIPLE, EditorTabsMode.SINGLE, EditorTabsMode.NONE],
|
|
62
63
|
'enumDescriptions': [
|
|
63
|
-
( localize(
|
|
64
|
+
( localize(3735, "Each editor is displayed as a tab in the editor title area.")),
|
|
64
65
|
( localize(
|
|
65
|
-
|
|
66
|
+
3736,
|
|
66
67
|
"The active editor is displayed as a single large tab in the editor title area."
|
|
67
68
|
)),
|
|
68
|
-
( localize(
|
|
69
|
+
( localize(3737, "The editor title area is not displayed.")),
|
|
69
70
|
],
|
|
70
71
|
'description': ( localize(
|
|
71
|
-
|
|
72
|
+
3738,
|
|
72
73
|
"Controls whether opened editors should show as individual tabs, one single large tab or if the title area should not be shown."
|
|
73
74
|
)),
|
|
74
75
|
'default': 'multiple'
|
|
@@ -78,26 +79,26 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
78
79
|
'enum': [EditorActionsLocation.DEFAULT, EditorActionsLocation.TITLEBAR, EditorActionsLocation.HIDDEN],
|
|
79
80
|
'markdownEnumDescriptions': [
|
|
80
81
|
( localize(
|
|
81
|
-
|
|
82
|
+
3739,
|
|
82
83
|
"Show editor actions in the window title bar when {0} is set to {1}. Otherwise, editor actions are shown in the editor tab bar.",
|
|
83
84
|
'`#workbench.editor.showTabs#`',
|
|
84
85
|
'`none`'
|
|
85
86
|
)),
|
|
86
87
|
( localize(
|
|
87
|
-
|
|
88
|
+
3740,
|
|
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
92
|
)),
|
|
92
|
-
( localize(
|
|
93
|
+
( localize(3741, "Editor actions are not shown.")),
|
|
93
94
|
],
|
|
94
|
-
'markdownDescription': ( localize(
|
|
95
|
+
'markdownDescription': ( localize(3742, "Controls where the editor actions are shown.")),
|
|
95
96
|
'default': 'default'
|
|
96
97
|
},
|
|
97
98
|
'workbench.editor.alwaysShowEditorActions': {
|
|
98
99
|
'type': 'boolean',
|
|
99
100
|
'markdownDescription': ( localize(
|
|
100
|
-
|
|
101
|
+
3743,
|
|
101
102
|
"Controls whether to always show the editor actions, even when the editor group is not active."
|
|
102
103
|
)),
|
|
103
104
|
'default': false
|
|
@@ -105,7 +106,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
105
106
|
'workbench.editor.wrapTabs': {
|
|
106
107
|
'type': 'boolean',
|
|
107
108
|
'markdownDescription': ( localize(
|
|
108
|
-
|
|
109
|
+
3744,
|
|
109
110
|
"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}'.",
|
|
110
111
|
'`#workbench.editor.showTabs#`',
|
|
111
112
|
'`multiple`'
|
|
@@ -115,7 +116,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
115
116
|
'workbench.editor.scrollToSwitchTabs': {
|
|
116
117
|
'type': 'boolean',
|
|
117
118
|
'markdownDescription': ( localize(
|
|
118
|
-
|
|
119
|
+
3745,
|
|
119
120
|
"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}.",
|
|
120
121
|
'`#workbench.editor.showTabs#`',
|
|
121
122
|
'`multiple`'
|
|
@@ -125,7 +126,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
125
126
|
'workbench.editor.highlightModifiedTabs': {
|
|
126
127
|
'type': 'boolean',
|
|
127
128
|
'markdownDescription': ( localize(
|
|
128
|
-
|
|
129
|
+
3746,
|
|
129
130
|
"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}.",
|
|
130
131
|
'`#workbench.editor.showTabs#`',
|
|
131
132
|
`multiple`
|
|
@@ -134,18 +135,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
134
135
|
},
|
|
135
136
|
'workbench.editor.decorations.badges': {
|
|
136
137
|
'type': 'boolean',
|
|
137
|
-
'markdownDescription': ( localize(
|
|
138
|
+
'markdownDescription': ( localize(3747, "Controls whether editor file decorations should use badges.")),
|
|
138
139
|
'default': true
|
|
139
140
|
},
|
|
140
141
|
'workbench.editor.decorations.colors': {
|
|
141
142
|
'type': 'boolean',
|
|
142
|
-
'markdownDescription': ( localize(
|
|
143
|
+
'markdownDescription': ( localize(3748, "Controls whether editor file decorations should use colors.")),
|
|
143
144
|
'default': true
|
|
144
145
|
},
|
|
145
146
|
[CustomEditorLabelService.SETTING_ID_ENABLED]: {
|
|
146
147
|
'type': 'boolean',
|
|
147
148
|
'markdownDescription': ( localize(
|
|
148
|
-
|
|
149
|
+
3749,
|
|
149
150
|
"Controls whether the custom workbench editor labels should be applied."
|
|
150
151
|
)),
|
|
151
152
|
'default': true,
|
|
@@ -154,33 +155,33 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
154
155
|
'type': 'object',
|
|
155
156
|
'markdownDescription': (() => {
|
|
156
157
|
let customEditorLabelDescription = ( localize(
|
|
157
|
-
|
|
158
|
+
3750,
|
|
158
159
|
"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:"
|
|
159
160
|
));
|
|
160
161
|
customEditorLabelDescription += '\n- ' + [
|
|
161
162
|
( localize(
|
|
162
|
-
|
|
163
|
+
3751,
|
|
163
164
|
"`${dirname}`: name of the folder in which the file is located (e.g. `WORKSPACE_FOLDER/folder/file.txt -> folder`)."
|
|
164
165
|
)),
|
|
165
166
|
( localize(
|
|
166
|
-
|
|
167
|
+
3752,
|
|
167
168
|
"`${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."
|
|
168
169
|
)),
|
|
169
170
|
( localize(
|
|
170
|
-
|
|
171
|
+
3753,
|
|
171
172
|
"`${filename}`: name of the file without the file extension (e.g. `WORKSPACE_FOLDER/folder/file.txt -> file`)."
|
|
172
173
|
)),
|
|
173
174
|
( localize(
|
|
174
|
-
|
|
175
|
+
3754,
|
|
175
176
|
"`${extname}`: the file extension (e.g. `WORKSPACE_FOLDER/folder/file.txt -> txt`)."
|
|
176
177
|
)),
|
|
177
178
|
( localize(
|
|
178
|
-
|
|
179
|
+
3755,
|
|
179
180
|
"`${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`)."
|
|
180
181
|
)),
|
|
181
182
|
].join('\n- ');
|
|
182
183
|
customEditorLabelDescription += '\n\n' + ( localize(
|
|
183
|
-
|
|
184
|
+
3756,
|
|
184
185
|
"Example: `\"**/static/**/*.html\": \"${filename} - ${dirname} (${extname})\"` will render a file `WORKSPACE_FOLDER/static/folder/file.html` as `file - folder (html)`."
|
|
185
186
|
));
|
|
186
187
|
return customEditorLabelDescription;
|
|
@@ -188,7 +189,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
188
189
|
additionalProperties: {
|
|
189
190
|
type: ['string', 'null'],
|
|
190
191
|
markdownDescription: ( localize(
|
|
191
|
-
|
|
192
|
+
3757,
|
|
192
193
|
"The template which should be rendered when the pattern matches. May include the variables ${dirname}, ${filename} and ${extname}."
|
|
193
194
|
)),
|
|
194
195
|
minLength: 1,
|
|
@@ -201,41 +202,41 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
201
202
|
'enum': ['default', 'short', 'medium', 'long'],
|
|
202
203
|
'enumDescriptions': [
|
|
203
204
|
( localize(
|
|
204
|
-
|
|
205
|
+
3758,
|
|
205
206
|
"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."
|
|
206
207
|
)),
|
|
207
|
-
( localize(
|
|
208
|
+
( localize(3759, "Show the name of the file followed by its directory name.")),
|
|
208
209
|
( localize(
|
|
209
|
-
|
|
210
|
+
3760,
|
|
210
211
|
"Show the name of the file followed by its path relative to the workspace folder."
|
|
211
212
|
)),
|
|
212
|
-
( localize(
|
|
213
|
+
( localize(3761, "Show the name of the file followed by its absolute path."))
|
|
213
214
|
],
|
|
214
215
|
'default': 'default',
|
|
215
|
-
'description': ( localize(
|
|
216
|
+
'description': ( localize(3762, "Controls the format of the label for an editor.")),
|
|
216
217
|
},
|
|
217
218
|
'workbench.editor.untitled.labelFormat': {
|
|
218
219
|
'type': 'string',
|
|
219
220
|
'enum': ['content', 'name'],
|
|
220
221
|
'enumDescriptions': [
|
|
221
222
|
( localize(
|
|
222
|
-
|
|
223
|
+
3763,
|
|
223
224
|
"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."
|
|
224
225
|
)),
|
|
225
226
|
( localize(
|
|
226
|
-
|
|
227
|
+
3764,
|
|
227
228
|
"The name of the untitled file is not derived from the contents of the file."
|
|
228
229
|
)),
|
|
229
230
|
],
|
|
230
231
|
'default': 'content',
|
|
231
|
-
'description': ( localize(
|
|
232
|
+
'description': ( localize(3765, "Controls the format of the label for an untitled editor.")),
|
|
232
233
|
},
|
|
233
234
|
'workbench.editor.empty.hint': {
|
|
234
235
|
'type': 'string',
|
|
235
236
|
'enum': ['text', 'hidden'],
|
|
236
237
|
'default': 'text',
|
|
237
238
|
'markdownDescription': ( localize(
|
|
238
|
-
|
|
239
|
+
3766,
|
|
239
240
|
"Controls if the empty editor text hint should be visible in the editor."
|
|
240
241
|
))
|
|
241
242
|
},
|
|
@@ -243,7 +244,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
243
244
|
type: 'boolean',
|
|
244
245
|
default: true,
|
|
245
246
|
description: ( localize(
|
|
246
|
-
|
|
247
|
+
3767,
|
|
247
248
|
"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."
|
|
248
249
|
)),
|
|
249
250
|
scope: ConfigurationScope.LANGUAGE_OVERRIDABLE
|
|
@@ -252,7 +253,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
252
253
|
type: 'boolean',
|
|
253
254
|
default: true,
|
|
254
255
|
description: ( localize(
|
|
255
|
-
|
|
256
|
+
3768,
|
|
256
257
|
"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."
|
|
257
258
|
)),
|
|
258
259
|
},
|
|
@@ -260,7 +261,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
260
261
|
type: 'boolean',
|
|
261
262
|
default: false,
|
|
262
263
|
description: ( localize(
|
|
263
|
-
|
|
264
|
+
3769,
|
|
264
265
|
"When enabled, a language detection model that takes into account editor history will be given higher precedence."
|
|
265
266
|
)),
|
|
266
267
|
},
|
|
@@ -268,18 +269,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
268
269
|
type: 'object',
|
|
269
270
|
default: { 'untitledEditors': true, 'notebookEditors': true },
|
|
270
271
|
description: ( localize(
|
|
271
|
-
|
|
272
|
+
3770,
|
|
272
273
|
"When enabled, shows a status bar Quick Fix when the editor language doesn't match detected content language."
|
|
273
274
|
)),
|
|
274
275
|
additionalProperties: false,
|
|
275
276
|
properties: {
|
|
276
277
|
untitledEditors: {
|
|
277
278
|
type: 'boolean',
|
|
278
|
-
description: ( localize(
|
|
279
|
+
description: ( localize(3771, "Show in untitled text editors")),
|
|
279
280
|
},
|
|
280
281
|
notebookEditors: {
|
|
281
282
|
type: 'boolean',
|
|
282
|
-
description: ( localize(
|
|
283
|
+
description: ( localize(3772, "Show in notebook editors")),
|
|
283
284
|
}
|
|
284
285
|
}
|
|
285
286
|
},
|
|
@@ -288,7 +289,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
288
289
|
enum: ['left', 'right'],
|
|
289
290
|
default: 'right',
|
|
290
291
|
markdownDescription: ( localize(
|
|
291
|
-
|
|
292
|
+
3773,
|
|
292
293
|
"Controls the position of the editor's tabs action buttons (close, unpin). This value is ignored when {0} is not set to {1}.",
|
|
293
294
|
'`#workbench.editor.showTabs#`',
|
|
294
295
|
'`multiple`'
|
|
@@ -297,18 +298,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
297
298
|
'workbench.editor.tabActionCloseVisibility': {
|
|
298
299
|
type: 'boolean',
|
|
299
300
|
default: true,
|
|
300
|
-
description: ( localize(
|
|
301
|
+
description: ( localize(3774, "Controls the visibility of the tab close action button."))
|
|
301
302
|
},
|
|
302
303
|
'workbench.editor.tabActionUnpinVisibility': {
|
|
303
304
|
type: 'boolean',
|
|
304
305
|
default: true,
|
|
305
|
-
description: ( localize(
|
|
306
|
+
description: ( localize(3775, "Controls the visibility of the tab unpin action button."))
|
|
306
307
|
},
|
|
307
308
|
'workbench.editor.showTabIndex': {
|
|
308
309
|
'type': 'boolean',
|
|
309
310
|
'default': false,
|
|
310
311
|
'markdownDescription': ( localize(
|
|
311
|
-
|
|
312
|
+
3776,
|
|
312
313
|
"When enabled, will show the tab index. This value is ignored when {0} is not set to {1}.",
|
|
313
314
|
'`#workbench.editor.showTabs#`',
|
|
314
315
|
'`multiple`'
|
|
@@ -319,18 +320,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
319
320
|
'enum': ['fit', 'shrink', 'fixed'],
|
|
320
321
|
'default': 'fit',
|
|
321
322
|
'enumDescriptions': [
|
|
322
|
-
( localize(
|
|
323
|
+
( localize(3777, "Always keep tabs large enough to show the full editor label.")),
|
|
323
324
|
( localize(
|
|
324
|
-
|
|
325
|
+
3778,
|
|
325
326
|
"Allow tabs to get smaller when the available space is not enough to show all tabs at once."
|
|
326
327
|
)),
|
|
327
328
|
( localize(
|
|
328
|
-
|
|
329
|
+
3779,
|
|
329
330
|
"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."
|
|
330
331
|
))
|
|
331
332
|
],
|
|
332
333
|
'markdownDescription': ( localize(
|
|
333
|
-
|
|
334
|
+
3780,
|
|
334
335
|
"Controls the size of editor tabs. This value is ignored when {0} is not set to {1}.",
|
|
335
336
|
'`#workbench.editor.showTabs#`',
|
|
336
337
|
'`multiple`'
|
|
@@ -341,7 +342,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
341
342
|
'default': 50,
|
|
342
343
|
'minimum': 38,
|
|
343
344
|
'markdownDescription': ( localize(
|
|
344
|
-
|
|
345
|
+
3781,
|
|
345
346
|
"Controls the minimum width of tabs when {0} size is set to {1}.",
|
|
346
347
|
'`#workbench.editor.tabSizing#`',
|
|
347
348
|
'`fixed`'
|
|
@@ -352,7 +353,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
352
353
|
'default': 160,
|
|
353
354
|
'minimum': 38,
|
|
354
355
|
'markdownDescription': ( localize(
|
|
355
|
-
|
|
356
|
+
3782,
|
|
356
357
|
"Controls the maximum width of tabs when {0} size is set to {1}.",
|
|
357
358
|
'`#workbench.editor.tabSizing#`',
|
|
358
359
|
'`fixed`'
|
|
@@ -363,7 +364,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
363
364
|
'enum': ['default', 'compact'],
|
|
364
365
|
'default': 'default',
|
|
365
366
|
'markdownDescription': ( localize(
|
|
366
|
-
|
|
367
|
+
3783,
|
|
367
368
|
"Controls the height of editor tabs. Also applies to the title control bar when {0} is not set to {1}.",
|
|
368
369
|
'`#workbench.editor.showTabs#`',
|
|
369
370
|
'`multiple`'
|
|
@@ -374,18 +375,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
374
375
|
'enum': ['normal', 'compact', 'shrink'],
|
|
375
376
|
'default': 'normal',
|
|
376
377
|
'enumDescriptions': [
|
|
377
|
-
( localize(
|
|
378
|
+
( localize(3784, "A pinned tab inherits the look of non pinned tabs.")),
|
|
378
379
|
( localize(
|
|
379
|
-
|
|
380
|
+
3785,
|
|
380
381
|
"A pinned tab will show in a compact form with only icon or first letter of the editor name."
|
|
381
382
|
)),
|
|
382
383
|
( localize(
|
|
383
|
-
|
|
384
|
+
3786,
|
|
384
385
|
"A pinned tab shrinks to a compact fixed size showing parts of the editor name."
|
|
385
386
|
))
|
|
386
387
|
],
|
|
387
388
|
'markdownDescription': ( localize(
|
|
388
|
-
|
|
389
|
+
3787,
|
|
389
390
|
"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}.",
|
|
390
391
|
'`#workbench.editor.showTabs#`',
|
|
391
392
|
'`multiple`'
|
|
@@ -395,7 +396,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
395
396
|
'type': 'boolean',
|
|
396
397
|
'default': false,
|
|
397
398
|
'markdownDescription': ( localize(
|
|
398
|
-
|
|
399
|
+
3788,
|
|
399
400
|
"When enabled, displays pinned tabs in a separate row above all other tabs. This value is ignored when {0} is not set to {1}.",
|
|
400
401
|
'`#workbench.editor.showTabs#`',
|
|
401
402
|
'`multiple`'
|
|
@@ -407,15 +408,15 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
407
408
|
'default': 'keyboardAndMouse',
|
|
408
409
|
'enumDescriptions': [
|
|
409
410
|
( localize(
|
|
410
|
-
|
|
411
|
+
3789,
|
|
411
412
|
"Always prevent closing the pinned editor when using mouse middle click or keyboard."
|
|
412
413
|
)),
|
|
413
|
-
( localize(
|
|
414
|
-
( localize(
|
|
415
|
-
( localize(
|
|
414
|
+
( localize(3790, "Prevent closing the pinned editor when using the keyboard.")),
|
|
415
|
+
( localize(3791, "Prevent closing the pinned editor when using mouse middle click.")),
|
|
416
|
+
( localize(3792, "Never prevent closing a pinned editor."))
|
|
416
417
|
],
|
|
417
418
|
description: ( localize(
|
|
418
|
-
|
|
419
|
+
3793,
|
|
419
420
|
"Controls whether pinned editors should close when keyboard or middle mouse click is used for closing."
|
|
420
421
|
)),
|
|
421
422
|
},
|
|
@@ -425,19 +426,19 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
425
426
|
'default': 'auto',
|
|
426
427
|
'enumDescriptions': [
|
|
427
428
|
( localize(
|
|
428
|
-
|
|
429
|
+
3794,
|
|
429
430
|
"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."
|
|
430
431
|
)),
|
|
431
|
-
( localize(
|
|
432
|
-
( localize(
|
|
432
|
+
( localize(3795, "Splits all the editor groups to equal parts.")),
|
|
433
|
+
( localize(3796, "Splits the active editor group to equal parts."))
|
|
433
434
|
],
|
|
434
|
-
'description': ( localize(
|
|
435
|
+
'description': ( localize(3797, "Controls the size of editor groups when splitting them."))
|
|
435
436
|
},
|
|
436
437
|
'workbench.editor.splitOnDragAndDrop': {
|
|
437
438
|
'type': 'boolean',
|
|
438
439
|
'default': true,
|
|
439
440
|
'description': ( localize(
|
|
440
|
-
|
|
441
|
+
3798,
|
|
441
442
|
"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."
|
|
442
443
|
))
|
|
443
444
|
},
|
|
@@ -445,14 +446,14 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
445
446
|
'type': 'boolean',
|
|
446
447
|
'default': true,
|
|
447
448
|
'markdownDescription': ( localize(
|
|
448
|
-
|
|
449
|
+
3799,
|
|
449
450
|
"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."
|
|
450
451
|
))
|
|
451
452
|
},
|
|
452
453
|
'workbench.editor.focusRecentEditorAfterClose': {
|
|
453
454
|
'type': 'boolean',
|
|
454
455
|
'description': ( localize(
|
|
455
|
-
|
|
456
|
+
3800,
|
|
456
457
|
"Controls whether editors are closed in most recently used order or from left to right."
|
|
457
458
|
)),
|
|
458
459
|
'default': true
|
|
@@ -460,7 +461,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
460
461
|
'workbench.editor.showIcons': {
|
|
461
462
|
'type': 'boolean',
|
|
462
463
|
'description': ( localize(
|
|
463
|
-
|
|
464
|
+
3801,
|
|
464
465
|
"Controls whether opened editors should show with an icon or not. This requires a file icon theme to be enabled as well."
|
|
465
466
|
)),
|
|
466
467
|
'default': true
|
|
@@ -468,7 +469,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
468
469
|
'workbench.editor.enablePreview': {
|
|
469
470
|
'type': 'boolean',
|
|
470
471
|
'description': ( localize(
|
|
471
|
-
|
|
472
|
+
3802,
|
|
472
473
|
"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."
|
|
473
474
|
)),
|
|
474
475
|
'default': true
|
|
@@ -476,7 +477,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
476
477
|
'workbench.editor.enablePreviewFromQuickOpen': {
|
|
477
478
|
'type': 'boolean',
|
|
478
479
|
'markdownDescription': ( localize(
|
|
479
|
-
|
|
480
|
+
3803,
|
|
480
481
|
"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}.",
|
|
481
482
|
'`#workbench.editor.showTabs#`',
|
|
482
483
|
'`multiple`'
|
|
@@ -486,7 +487,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
486
487
|
'workbench.editor.enablePreviewFromCodeNavigation': {
|
|
487
488
|
'type': 'boolean',
|
|
488
489
|
'markdownDescription': ( localize(
|
|
489
|
-
|
|
490
|
+
3804,
|
|
490
491
|
"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}.",
|
|
491
492
|
'`#workbench.editor.showTabs#`',
|
|
492
493
|
'`multiple`'
|
|
@@ -496,7 +497,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
496
497
|
'workbench.editor.closeOnFileDelete': {
|
|
497
498
|
'type': 'boolean',
|
|
498
499
|
'description': ( localize(
|
|
499
|
-
|
|
500
|
+
3805,
|
|
500
501
|
"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."
|
|
501
502
|
)),
|
|
502
503
|
'default': false
|
|
@@ -506,7 +507,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
506
507
|
'enum': ['left', 'right', 'first', 'last'],
|
|
507
508
|
'default': 'right',
|
|
508
509
|
'markdownDescription': ( localize(
|
|
509
|
-
|
|
510
|
+
3806,
|
|
510
511
|
"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.",
|
|
511
512
|
'`left`',
|
|
512
513
|
'`right`',
|
|
@@ -519,14 +520,14 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
519
520
|
'enum': ['right', 'down'],
|
|
520
521
|
'default': 'right',
|
|
521
522
|
'markdownDescription': ( localize(
|
|
522
|
-
|
|
523
|
+
3807,
|
|
523
524
|
"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."
|
|
524
525
|
))
|
|
525
526
|
},
|
|
526
527
|
'workbench.editor.closeEmptyGroups': {
|
|
527
528
|
'type': 'boolean',
|
|
528
529
|
'description': ( localize(
|
|
529
|
-
|
|
530
|
+
3808,
|
|
530
531
|
"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."
|
|
531
532
|
)),
|
|
532
533
|
'default': true
|
|
@@ -534,7 +535,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
534
535
|
'workbench.editor.revealIfOpen': {
|
|
535
536
|
'type': 'boolean',
|
|
536
537
|
'description': ( localize(
|
|
537
|
-
|
|
538
|
+
3809,
|
|
538
539
|
"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."
|
|
539
540
|
)),
|
|
540
541
|
'default': false
|
|
@@ -542,8 +543,8 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
542
543
|
'workbench.editor.swipeToNavigate': {
|
|
543
544
|
'type': 'boolean',
|
|
544
545
|
'description': ( localize(
|
|
545
|
-
|
|
546
|
-
"Navigate between open files using three-finger swipe horizontally. Note that System Preferences > Trackpad > More Gestures must be set to 'Swipe with two or three fingers'."
|
|
546
|
+
3810,
|
|
547
|
+
"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'."
|
|
547
548
|
)),
|
|
548
549
|
'default': false,
|
|
549
550
|
'included': isMacintosh && !isWeb
|
|
@@ -551,7 +552,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
551
552
|
'workbench.editor.mouseBackForwardToNavigate': {
|
|
552
553
|
'type': 'boolean',
|
|
553
554
|
'description': ( localize(
|
|
554
|
-
|
|
555
|
+
3811,
|
|
555
556
|
"Enables the use of mouse buttons four and five for commands 'Go Back' and 'Go Forward'."
|
|
556
557
|
)),
|
|
557
558
|
'default': true
|
|
@@ -561,19 +562,19 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
561
562
|
'enum': ['default', 'editorGroup', 'editor'],
|
|
562
563
|
'default': 'default',
|
|
563
564
|
'markdownDescription': ( localize(
|
|
564
|
-
|
|
565
|
+
3812,
|
|
565
566
|
"Controls the scope of history navigation in editors for commands such as 'Go Back' and 'Go Forward'."
|
|
566
567
|
)),
|
|
567
568
|
'enumDescriptions': [
|
|
568
|
-
( localize(
|
|
569
|
-
( localize(
|
|
570
|
-
( localize(
|
|
569
|
+
( localize(3813, "Navigate across all opened editors and editor groups.")),
|
|
570
|
+
( localize(3814, "Navigate only in editors of the active editor group.")),
|
|
571
|
+
( localize(3815, "Navigate only in the active editor."))
|
|
571
572
|
],
|
|
572
573
|
},
|
|
573
574
|
'workbench.editor.restoreViewState': {
|
|
574
575
|
'type': 'boolean',
|
|
575
576
|
'markdownDescription': ( localize(
|
|
576
|
-
|
|
577
|
+
3816,
|
|
577
578
|
"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.",
|
|
578
579
|
'`#workbench.editor.sharedViewState#`'
|
|
579
580
|
)),
|
|
@@ -583,7 +584,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
583
584
|
'workbench.editor.sharedViewState': {
|
|
584
585
|
'type': 'boolean',
|
|
585
586
|
'description': ( localize(
|
|
586
|
-
|
|
587
|
+
3817,
|
|
587
588
|
"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."
|
|
588
589
|
)),
|
|
589
590
|
'default': false
|
|
@@ -593,19 +594,19 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
593
594
|
'enum': ['vertical', 'horizontal'],
|
|
594
595
|
'default': 'horizontal',
|
|
595
596
|
'markdownDescription': ( localize(
|
|
596
|
-
|
|
597
|
+
3818,
|
|
597
598
|
"Controls the layout for when an editor is split in an editor group to be either vertical or horizontal."
|
|
598
599
|
)),
|
|
599
600
|
'enumDescriptions': [
|
|
600
|
-
( localize(
|
|
601
|
-
( localize(
|
|
601
|
+
( localize(3819, "Editors are positioned from top to bottom.")),
|
|
602
|
+
( localize(3820, "Editors are positioned from left to right."))
|
|
602
603
|
]
|
|
603
604
|
},
|
|
604
605
|
'workbench.editor.centeredLayoutAutoResize': {
|
|
605
606
|
'type': 'boolean',
|
|
606
607
|
'default': true,
|
|
607
608
|
'description': ( localize(
|
|
608
|
-
|
|
609
|
+
3821,
|
|
609
610
|
"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."
|
|
610
611
|
))
|
|
611
612
|
},
|
|
@@ -613,7 +614,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
613
614
|
'type': 'boolean',
|
|
614
615
|
'default': false,
|
|
615
616
|
'description': ( localize(
|
|
616
|
-
|
|
617
|
+
3822,
|
|
617
618
|
"Controls whether the centered layout tries to maintain constant width when the window is resized."
|
|
618
619
|
))
|
|
619
620
|
},
|
|
@@ -622,28 +623,28 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
622
623
|
'enum': ['maximize', 'expand', 'off'],
|
|
623
624
|
'default': 'expand',
|
|
624
625
|
'markdownDescription': ( localize(
|
|
625
|
-
|
|
626
|
+
3823,
|
|
626
627
|
"Controls how the editor group is resized when double clicking on a tab. This value is ignored when {0} is not set to {1}.",
|
|
627
628
|
'`#workbench.editor.showTabs#`',
|
|
628
629
|
'`multiple`'
|
|
629
630
|
)),
|
|
630
631
|
'enumDescriptions': [
|
|
631
632
|
( localize(
|
|
632
|
-
|
|
633
|
+
3824,
|
|
633
634
|
"All other editor groups are hidden and the current editor group is maximized to take up the entire editor area."
|
|
634
635
|
)),
|
|
635
636
|
( localize(
|
|
636
|
-
|
|
637
|
+
3825,
|
|
637
638
|
"The editor group takes as much space as possible by making all other editor groups as small as possible."
|
|
638
639
|
)),
|
|
639
|
-
( localize(
|
|
640
|
+
( localize(3826, "No editor group is resized when double clicking on a tab."))
|
|
640
641
|
]
|
|
641
642
|
},
|
|
642
643
|
'workbench.editor.limit.enabled': {
|
|
643
644
|
'type': 'boolean',
|
|
644
645
|
'default': false,
|
|
645
646
|
'description': ( localize(
|
|
646
|
-
|
|
647
|
+
3827,
|
|
647
648
|
"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."
|
|
648
649
|
))
|
|
649
650
|
},
|
|
@@ -652,7 +653,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
652
653
|
'default': 10,
|
|
653
654
|
'exclusiveMinimum': 0,
|
|
654
655
|
'markdownDescription': ( localize(
|
|
655
|
-
|
|
656
|
+
3828,
|
|
656
657
|
"Controls the maximum number of opened editors. Use the {0} setting to control this limit per editor group or across all groups.",
|
|
657
658
|
'`#workbench.editor.limit.perEditorGroup#`'
|
|
658
659
|
))
|
|
@@ -661,7 +662,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
661
662
|
'type': 'boolean',
|
|
662
663
|
'default': false,
|
|
663
664
|
'description': ( localize(
|
|
664
|
-
|
|
665
|
+
3829,
|
|
665
666
|
"Controls if the maximum number of opened editors should exclude dirty editors for counting towards the configured limit."
|
|
666
667
|
))
|
|
667
668
|
},
|
|
@@ -669,7 +670,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
669
670
|
'type': 'boolean',
|
|
670
671
|
'default': false,
|
|
671
672
|
'description': ( localize(
|
|
672
|
-
|
|
673
|
+
3830,
|
|
673
674
|
"Controls if the limit of maximum opened editors should apply per editor group or across all editor groups."
|
|
674
675
|
))
|
|
675
676
|
},
|
|
@@ -677,7 +678,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
677
678
|
'type': 'boolean',
|
|
678
679
|
'default': true,
|
|
679
680
|
'description': ( localize(
|
|
680
|
-
|
|
681
|
+
3831,
|
|
681
682
|
"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."
|
|
682
683
|
)),
|
|
683
684
|
'scope': ConfigurationScope.RESOURCE
|
|
@@ -687,7 +688,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
687
688
|
'default': 256,
|
|
688
689
|
'minimum': 1,
|
|
689
690
|
'description': ( localize(
|
|
690
|
-
|
|
691
|
+
3832,
|
|
691
692
|
"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."
|
|
692
693
|
)),
|
|
693
694
|
'scope': ConfigurationScope.RESOURCE
|
|
@@ -697,7 +698,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
697
698
|
'default': 50,
|
|
698
699
|
'minimum': 0,
|
|
699
700
|
'description': ( localize(
|
|
700
|
-
|
|
701
|
+
3833,
|
|
701
702
|
"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."
|
|
702
703
|
)),
|
|
703
704
|
'scope': ConfigurationScope.RESOURCE
|
|
@@ -708,7 +709,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
708
709
|
'.*': { 'type': 'boolean' }
|
|
709
710
|
},
|
|
710
711
|
'markdownDescription': ( localize(
|
|
711
|
-
|
|
712
|
+
3834,
|
|
712
713
|
"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."
|
|
713
714
|
)),
|
|
714
715
|
'scope': ConfigurationScope.RESOURCE
|
|
@@ -718,7 +719,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
718
719
|
'default': 10,
|
|
719
720
|
'minimum': 1,
|
|
720
721
|
'markdownDescription': ( localize(
|
|
721
|
-
|
|
722
|
+
3835,
|
|
722
723
|
"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."
|
|
723
724
|
)),
|
|
724
725
|
'scope': ConfigurationScope.RESOURCE
|
|
@@ -726,7 +727,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
726
727
|
'workbench.commandPalette.history': {
|
|
727
728
|
'type': 'number',
|
|
728
729
|
'description': ( localize(
|
|
729
|
-
|
|
730
|
+
3836,
|
|
730
731
|
"Controls the number of recently used commands to keep in history for the command palette. Set to 0 to disable command history."
|
|
731
732
|
)),
|
|
732
733
|
'default': 50,
|
|
@@ -735,7 +736,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
735
736
|
'workbench.commandPalette.preserveInput': {
|
|
736
737
|
'type': 'boolean',
|
|
737
738
|
'description': ( localize(
|
|
738
|
-
|
|
739
|
+
3837,
|
|
739
740
|
"Controls whether the last typed input to the command palette should be restored when opening it the next time."
|
|
740
741
|
)),
|
|
741
742
|
'default': false
|
|
@@ -744,7 +745,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
744
745
|
'type': 'boolean',
|
|
745
746
|
tags: ['experimental'],
|
|
746
747
|
'description': ( localize(
|
|
747
|
-
|
|
748
|
+
3838,
|
|
748
749
|
"Controls whether the command palette should have a list of commonly used commands."
|
|
749
750
|
)),
|
|
750
751
|
'default': false
|
|
@@ -752,19 +753,19 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
752
753
|
'workbench.commandPalette.experimental.askChatLocation': {
|
|
753
754
|
'type': 'string',
|
|
754
755
|
tags: ['experimental'],
|
|
755
|
-
'description': ( localize(
|
|
756
|
+
'description': ( localize(3839, "Controls where the command palette should ask chat questions.")),
|
|
756
757
|
'default': 'chatView',
|
|
757
758
|
enum: ['chatView', 'quickChat'],
|
|
758
759
|
enumDescriptions: [
|
|
759
|
-
( localize(
|
|
760
|
-
( localize(
|
|
760
|
+
( localize(3840, "Ask chat questions in the Chat view.")),
|
|
761
|
+
( localize(3841, "Ask chat questions in Quick Chat."))
|
|
761
762
|
]
|
|
762
763
|
},
|
|
763
764
|
'workbench.commandPalette.showAskInChat': {
|
|
764
765
|
'type': 'boolean',
|
|
765
766
|
tags: ['experimental'],
|
|
766
767
|
'description': ( localize(
|
|
767
|
-
|
|
768
|
+
3842,
|
|
768
769
|
"Controls whether the command palette shows 'Ask in Chat' option at the bottom."
|
|
769
770
|
)),
|
|
770
771
|
'default': true
|
|
@@ -773,7 +774,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
773
774
|
'type': 'boolean',
|
|
774
775
|
tags: ['experimental'],
|
|
775
776
|
'description': ( localize(
|
|
776
|
-
|
|
777
|
+
3843,
|
|
777
778
|
"Controls whether the command palette should include similar commands. You must have an extension installed that provides Natural Language support."
|
|
778
779
|
)),
|
|
779
780
|
'default': true
|
|
@@ -781,7 +782,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
781
782
|
'workbench.quickOpen.closeOnFocusLost': {
|
|
782
783
|
'type': 'boolean',
|
|
783
784
|
'description': ( localize(
|
|
784
|
-
|
|
785
|
+
3844,
|
|
785
786
|
"Controls whether Quick Open should close automatically once it loses focus."
|
|
786
787
|
)),
|
|
787
788
|
'default': true
|
|
@@ -789,7 +790,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
789
790
|
'workbench.quickOpen.preserveInput': {
|
|
790
791
|
'type': 'boolean',
|
|
791
792
|
'description': ( localize(
|
|
792
|
-
|
|
793
|
+
3845,
|
|
793
794
|
"Controls whether the last typed input to Quick Open should be restored when opening it the next time."
|
|
794
795
|
)),
|
|
795
796
|
'default': false
|
|
@@ -797,7 +798,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
797
798
|
'workbench.settings.openDefaultSettings': {
|
|
798
799
|
'type': 'boolean',
|
|
799
800
|
'description': ( localize(
|
|
800
|
-
|
|
801
|
+
3846,
|
|
801
802
|
"Controls whether opening settings also opens an editor showing all default settings."
|
|
802
803
|
)),
|
|
803
804
|
'default': false
|
|
@@ -805,7 +806,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
805
806
|
'workbench.settings.useSplitJSON': {
|
|
806
807
|
'type': 'boolean',
|
|
807
808
|
'markdownDescription': ( localize(
|
|
808
|
-
|
|
809
|
+
3847,
|
|
809
810
|
"Controls whether to use the split JSON editor when editing settings as JSON."
|
|
810
811
|
)),
|
|
811
812
|
'default': false
|
|
@@ -813,17 +814,25 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
813
814
|
'workbench.settings.openDefaultKeybindings': {
|
|
814
815
|
'type': 'boolean',
|
|
815
816
|
'description': ( localize(
|
|
816
|
-
|
|
817
|
+
3848,
|
|
817
818
|
"Controls whether opening keybinding settings also opens an editor showing all default keybindings."
|
|
818
819
|
)),
|
|
819
820
|
'default': false
|
|
820
821
|
},
|
|
822
|
+
'workbench.settings.alwaysShowAdvancedSettings': {
|
|
823
|
+
'type': 'boolean',
|
|
824
|
+
'description': ( localize(
|
|
825
|
+
3849,
|
|
826
|
+
"Controls whether advanced settings are always shown in the settings editor without requiring the `@tag:advanced` filter."
|
|
827
|
+
)),
|
|
828
|
+
'default': product.quality !== 'stable'
|
|
829
|
+
},
|
|
821
830
|
'workbench.sideBar.location': {
|
|
822
831
|
'type': 'string',
|
|
823
832
|
'enum': ['left', 'right'],
|
|
824
833
|
'default': 'left',
|
|
825
834
|
'description': ( localize(
|
|
826
|
-
|
|
835
|
+
3850,
|
|
827
836
|
"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."
|
|
828
837
|
))
|
|
829
838
|
},
|
|
@@ -831,7 +840,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
831
840
|
'type': 'boolean',
|
|
832
841
|
'default': true,
|
|
833
842
|
'description': ( localize(
|
|
834
|
-
|
|
843
|
+
3851,
|
|
835
844
|
"Controls whether activity items in the panel title are shown as label or icon."
|
|
836
845
|
)),
|
|
837
846
|
},
|
|
@@ -840,7 +849,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
840
849
|
'enum': ['left', 'bottom', 'top', 'right'],
|
|
841
850
|
'default': 'bottom',
|
|
842
851
|
'description': ( localize(
|
|
843
|
-
|
|
852
|
+
3852,
|
|
844
853
|
"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."
|
|
845
854
|
)),
|
|
846
855
|
},
|
|
@@ -849,13 +858,13 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
849
858
|
'enum': ['always', 'never', 'preserve'],
|
|
850
859
|
'default': 'preserve',
|
|
851
860
|
'description': ( localize(
|
|
852
|
-
|
|
861
|
+
3853,
|
|
853
862
|
"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."
|
|
854
863
|
)),
|
|
855
864
|
'enumDescriptions': [
|
|
856
|
-
( localize(
|
|
857
|
-
( localize(
|
|
858
|
-
( localize(
|
|
865
|
+
( localize(3854, "Always maximize the panel when opening it.")),
|
|
866
|
+
( localize(3855, "Never maximize the panel when opening it.")),
|
|
867
|
+
( localize(3856, "Open the panel to the state that it was in, before it was closed."))
|
|
859
868
|
]
|
|
860
869
|
},
|
|
861
870
|
'workbench.secondarySideBar.defaultVisibility': {
|
|
@@ -863,28 +872,28 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
863
872
|
'enum': ['hidden', 'visibleInWorkspace', 'visible', 'maximizedInWorkspace', 'maximized'],
|
|
864
873
|
'default': 'visibleInWorkspace',
|
|
865
874
|
'description': ( localize(
|
|
866
|
-
|
|
875
|
+
3857,
|
|
867
876
|
"Controls the default visibility of the secondary side bar in workspaces or empty windows that are opened for the first time."
|
|
868
877
|
)),
|
|
869
878
|
'enumDescriptions': [
|
|
870
|
-
( localize(
|
|
879
|
+
( localize(3858, "The secondary side bar is hidden by default.")),
|
|
871
880
|
( localize(
|
|
872
|
-
|
|
881
|
+
3859,
|
|
873
882
|
"The secondary side bar is visible by default if a workspace is opened."
|
|
874
883
|
)),
|
|
875
|
-
( localize(
|
|
884
|
+
( localize(3860, "The secondary side bar is visible by default.")),
|
|
876
885
|
( localize(
|
|
877
|
-
|
|
886
|
+
3861,
|
|
878
887
|
"The secondary side bar is visible and maximized by default if a workspace is opened."
|
|
879
888
|
)),
|
|
880
|
-
( localize(
|
|
889
|
+
( localize(3862, "The secondary side bar is visible and maximized by default."))
|
|
881
890
|
]
|
|
882
891
|
},
|
|
883
892
|
'workbench.secondarySideBar.showLabels': {
|
|
884
893
|
'type': 'boolean',
|
|
885
894
|
'default': true,
|
|
886
895
|
'markdownDescription': ( localize(
|
|
887
|
-
|
|
896
|
+
3863,
|
|
888
897
|
"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}.",
|
|
889
898
|
'`#workbench.activityBar.location#`',
|
|
890
899
|
'`top`'
|
|
@@ -894,7 +903,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
894
903
|
'type': 'boolean',
|
|
895
904
|
'default': true,
|
|
896
905
|
'description': ( localize(
|
|
897
|
-
|
|
906
|
+
3864,
|
|
898
907
|
"Controls the visibility of the status bar at the bottom of the workbench."
|
|
899
908
|
))
|
|
900
909
|
},
|
|
@@ -903,23 +912,23 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
903
912
|
'enum': ['default', 'top', 'bottom', 'hidden'],
|
|
904
913
|
'default': 'default',
|
|
905
914
|
'markdownDescription': ( localize(
|
|
906
|
-
|
|
915
|
+
3865,
|
|
907
916
|
"Controls the location of the Activity Bar relative to the Primary and Secondary Side Bars."
|
|
908
917
|
)),
|
|
909
918
|
'enumDescriptions': [
|
|
910
919
|
( localize(
|
|
911
|
-
|
|
920
|
+
3866,
|
|
912
921
|
"Show the Activity Bar on the side of the Primary Side Bar and on top of the Secondary Side Bar."
|
|
913
922
|
)),
|
|
914
923
|
( localize(
|
|
915
|
-
|
|
924
|
+
3867,
|
|
916
925
|
"Show the Activity Bar on top of the Primary and Secondary Side Bars."
|
|
917
926
|
)),
|
|
918
927
|
( localize(
|
|
919
|
-
|
|
928
|
+
3868,
|
|
920
929
|
"Show the Activity Bar at the bottom of the Primary and Secondary Side Bars."
|
|
921
930
|
)),
|
|
922
|
-
( localize(
|
|
931
|
+
( localize(3869, "Hide the Activity Bar in the Primary and Secondary Side Bars."))
|
|
923
932
|
],
|
|
924
933
|
},
|
|
925
934
|
'workbench.activityBar.iconClickBehavior': {
|
|
@@ -927,35 +936,35 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
927
936
|
'enum': ['toggle', 'focus'],
|
|
928
937
|
'default': 'toggle',
|
|
929
938
|
'markdownDescription': ( localize(
|
|
930
|
-
|
|
939
|
+
3870,
|
|
931
940
|
"Controls the behavior of clicking an Activity Bar icon in the workbench. This value is ignored when {0} is not set to {1}.",
|
|
932
941
|
'`#workbench.activityBar.location#`',
|
|
933
942
|
'`default`'
|
|
934
943
|
)),
|
|
935
944
|
'enumDescriptions': [
|
|
936
|
-
( localize(
|
|
937
|
-
( localize(
|
|
945
|
+
( localize(3871, "Hide the Primary Side Bar if the clicked item is already visible.")),
|
|
946
|
+
( localize(3872, "Focus the Primary Side Bar if the clicked item is already visible."))
|
|
938
947
|
]
|
|
939
948
|
},
|
|
940
949
|
'workbench.view.alwaysShowHeaderActions': {
|
|
941
950
|
'type': 'boolean',
|
|
942
951
|
'default': false,
|
|
943
952
|
'description': ( localize(
|
|
944
|
-
|
|
953
|
+
3873,
|
|
945
954
|
"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."
|
|
946
955
|
))
|
|
947
956
|
},
|
|
948
957
|
'workbench.view.showQuietly': {
|
|
949
958
|
'type': 'object',
|
|
950
959
|
'description': ( localize(
|
|
951
|
-
|
|
960
|
+
3874,
|
|
952
961
|
"If an extension requests a hidden view to be shown, display a clickable status bar indicator instead."
|
|
953
962
|
)),
|
|
954
963
|
'scope': ConfigurationScope.WINDOW,
|
|
955
964
|
'properties': {
|
|
956
965
|
'workbench.panel.output': {
|
|
957
966
|
'type': 'boolean',
|
|
958
|
-
'description': ( localize(
|
|
967
|
+
'description': ( localize(3875, "Output view"))
|
|
959
968
|
}
|
|
960
969
|
},
|
|
961
970
|
'additionalProperties': false
|
|
@@ -964,19 +973,19 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
964
973
|
'type': 'string',
|
|
965
974
|
'enum': ['default', 'antialiased', 'none', 'auto'],
|
|
966
975
|
'default': 'default',
|
|
967
|
-
'description': ( localize(
|
|
976
|
+
'description': ( localize(3876, "Controls font aliasing method in the workbench.")),
|
|
968
977
|
'enumDescriptions': [
|
|
969
978
|
( localize(
|
|
970
|
-
|
|
979
|
+
3877,
|
|
971
980
|
"Sub-pixel font smoothing. On most non-retina displays this will give the sharpest text."
|
|
972
981
|
)),
|
|
973
982
|
( localize(
|
|
974
|
-
|
|
983
|
+
3878,
|
|
975
984
|
"Smooth the font on the level of the pixel, as opposed to the subpixel. Can make the font appear lighter overall."
|
|
976
985
|
)),
|
|
977
|
-
( localize(
|
|
986
|
+
( localize(3879, "Disables font smoothing. Text will show with jagged sharp edges.")),
|
|
978
987
|
( localize(
|
|
979
|
-
|
|
988
|
+
3880,
|
|
980
989
|
"Applies `default` or `antialiased` automatically based on the DPI of displays."
|
|
981
990
|
))
|
|
982
991
|
],
|
|
@@ -986,10 +995,10 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
986
995
|
'type': 'string',
|
|
987
996
|
'enum': ['ui', 'json'],
|
|
988
997
|
'enumDescriptions': [
|
|
989
|
-
( localize(
|
|
990
|
-
( localize(
|
|
998
|
+
( localize(3881, "Use the settings UI editor.")),
|
|
999
|
+
( localize(3882, "Use the JSON file editor.")),
|
|
991
1000
|
],
|
|
992
|
-
'description': ( localize(
|
|
1001
|
+
'description': ( localize(3883, "Determines which Settings editor to use by default.")),
|
|
993
1002
|
'default': 'ui',
|
|
994
1003
|
'scope': ConfigurationScope.WINDOW
|
|
995
1004
|
},
|
|
@@ -997,14 +1006,14 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
997
1006
|
'type': 'boolean',
|
|
998
1007
|
'default': true,
|
|
999
1008
|
'description': ( localize(
|
|
1000
|
-
|
|
1009
|
+
3884,
|
|
1001
1010
|
"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."
|
|
1002
1011
|
)),
|
|
1003
1012
|
},
|
|
1004
1013
|
'workbench.hover.delay': {
|
|
1005
1014
|
'type': 'number',
|
|
1006
1015
|
'description': ( localize(
|
|
1007
|
-
|
|
1016
|
+
3885,
|
|
1008
1017
|
"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."
|
|
1009
1018
|
)),
|
|
1010
1019
|
'default': isMacintosh ? 1500 : 500,
|
|
@@ -1013,13 +1022,13 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1013
1022
|
'workbench.reduceMotion': {
|
|
1014
1023
|
type: 'string',
|
|
1015
1024
|
description: ( localize(
|
|
1016
|
-
|
|
1025
|
+
3886,
|
|
1017
1026
|
"Controls whether the workbench should render with fewer animations."
|
|
1018
1027
|
)),
|
|
1019
1028
|
'enumDescriptions': [
|
|
1020
|
-
( localize(
|
|
1021
|
-
( localize(
|
|
1022
|
-
( localize(
|
|
1029
|
+
( localize(3887, "Always render with reduced motion.")),
|
|
1030
|
+
( localize(3888, "Do not render with reduced motion")),
|
|
1031
|
+
( localize(3889, "Render with reduced motion based on OS configuration.")),
|
|
1023
1032
|
],
|
|
1024
1033
|
default: 'auto',
|
|
1025
1034
|
tags: ['accessibility'],
|
|
@@ -1029,9 +1038,9 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1029
1038
|
'type': 'boolean',
|
|
1030
1039
|
'default': true,
|
|
1031
1040
|
'markdownDescription': isWeb ?
|
|
1032
|
-
( localize(
|
|
1041
|
+
( localize(3890, "Controls whether the navigation control in the title bar is shown.")) :
|
|
1033
1042
|
( localize(
|
|
1034
|
-
|
|
1043
|
+
3891,
|
|
1035
1044
|
"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}.",
|
|
1036
1045
|
'`#window.customTitleBarVisibility#`',
|
|
1037
1046
|
'`never`'
|
|
@@ -1041,9 +1050,9 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1041
1050
|
'type': 'boolean',
|
|
1042
1051
|
'default': true,
|
|
1043
1052
|
'markdownDescription': isWeb ?
|
|
1044
|
-
( localize(
|
|
1053
|
+
( localize(3892, "Controls whether the layout control in the title bar is shown.")) :
|
|
1045
1054
|
( localize(
|
|
1046
|
-
|
|
1055
|
+
3893,
|
|
1047
1056
|
"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}.",
|
|
1048
1057
|
'`#window.customTitleBarVisibility#`',
|
|
1049
1058
|
'`never`'
|
|
@@ -1053,98 +1062,102 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1053
1062
|
'type': 'string',
|
|
1054
1063
|
'enum': ['menu', 'toggles', 'both'],
|
|
1055
1064
|
'enumDescriptions': [
|
|
1056
|
-
( localize(
|
|
1065
|
+
( localize(3894, "Shows a single button with a dropdown of layout options.")),
|
|
1057
1066
|
( localize(
|
|
1058
|
-
|
|
1067
|
+
3895,
|
|
1059
1068
|
"Shows several buttons for toggling the visibility of the panels and side bar."
|
|
1060
1069
|
)),
|
|
1061
|
-
( localize(
|
|
1070
|
+
( localize(3896, "Shows both the dropdown and toggle buttons.")),
|
|
1062
1071
|
],
|
|
1063
1072
|
'default': 'both',
|
|
1064
1073
|
'description': ( localize(
|
|
1065
|
-
|
|
1074
|
+
3897,
|
|
1066
1075
|
"Controls whether the layout control in the custom title bar is displayed as a single menu button or with multiple UI toggles."
|
|
1067
1076
|
)),
|
|
1068
1077
|
},
|
|
1069
1078
|
'workbench.tips.enabled': {
|
|
1070
1079
|
'type': 'boolean',
|
|
1071
1080
|
'default': true,
|
|
1072
|
-
'description': ( localize(
|
|
1081
|
+
'description': ( localize(3898, "When enabled, will show the watermark tips when no editor is open."))
|
|
1073
1082
|
},
|
|
1074
1083
|
}
|
|
1075
1084
|
});
|
|
1076
1085
|
let windowTitleDescription = ( localize(
|
|
1077
|
-
|
|
1086
|
+
3899,
|
|
1078
1087
|
"Controls the window title based on the current context such as the opened workspace or active editor. Variables are substituted based on the context:"
|
|
1079
1088
|
));
|
|
1080
1089
|
windowTitleDescription += '\n- ' + [
|
|
1081
|
-
( localize(
|
|
1090
|
+
( localize(3900, "`${activeEditorShort}`: the file name (e.g. myFile.txt).")),
|
|
1082
1091
|
( localize(
|
|
1083
|
-
|
|
1092
|
+
3901,
|
|
1084
1093
|
"`${activeEditorMedium}`: the path of the file relative to the workspace folder (e.g. myFolder/myFileFolder/myFile.txt)."
|
|
1085
1094
|
)),
|
|
1086
1095
|
( localize(
|
|
1087
|
-
|
|
1096
|
+
3902,
|
|
1088
1097
|
"`${activeEditorLong}`: the full path of the file (e.g. /Users/Development/myFolder/myFileFolder/myFile.txt)."
|
|
1089
1098
|
)),
|
|
1090
1099
|
( localize(
|
|
1091
|
-
|
|
1100
|
+
3903,
|
|
1101
|
+
"`${activeEditorLanguageId}`: the language identifier of the active editor (e.g. typescript)."
|
|
1102
|
+
)),
|
|
1103
|
+
( localize(
|
|
1104
|
+
3904,
|
|
1092
1105
|
"`${activeFolderShort}`: the name of the folder the file is contained in (e.g. myFileFolder)."
|
|
1093
1106
|
)),
|
|
1094
1107
|
( localize(
|
|
1095
|
-
|
|
1108
|
+
3905,
|
|
1096
1109
|
"`${activeFolderMedium}`: the path of the folder the file is contained in, relative to the workspace folder (e.g. myFolder/myFileFolder)."
|
|
1097
1110
|
)),
|
|
1098
1111
|
( localize(
|
|
1099
|
-
|
|
1112
|
+
3906,
|
|
1100
1113
|
"`${activeFolderLong}`: the full path of the folder the file is contained in (e.g. /Users/Development/myFolder/myFileFolder)."
|
|
1101
1114
|
)),
|
|
1102
1115
|
( localize(
|
|
1103
|
-
|
|
1116
|
+
3907,
|
|
1104
1117
|
"`${folderName}`: name of the workspace folder the file is contained in (e.g. myFolder)."
|
|
1105
1118
|
)),
|
|
1106
1119
|
( localize(
|
|
1107
|
-
|
|
1120
|
+
3908,
|
|
1108
1121
|
"`${folderPath}`: file path of the workspace folder the file is contained in (e.g. /Users/Development/myFolder)."
|
|
1109
1122
|
)),
|
|
1110
1123
|
( localize(
|
|
1111
|
-
|
|
1124
|
+
3909,
|
|
1112
1125
|
"`${rootName}`: name of the workspace with optional remote name and workspace indicator if applicable (e.g. myFolder, myRemoteFolder [SSH] or myWorkspace (Workspace))."
|
|
1113
1126
|
)),
|
|
1114
1127
|
( localize(
|
|
1115
|
-
|
|
1128
|
+
3910,
|
|
1116
1129
|
"`${rootNameShort}`: shortened name of the workspace without suffixes (e.g. myFolder, myRemoteFolder or myWorkspace)."
|
|
1117
1130
|
)),
|
|
1118
1131
|
( localize(
|
|
1119
|
-
|
|
1132
|
+
3911,
|
|
1120
1133
|
"`${rootPath}`: file path of the opened workspace or folder (e.g. /Users/Development/myWorkspace)."
|
|
1121
1134
|
)),
|
|
1122
1135
|
( localize(
|
|
1123
|
-
|
|
1136
|
+
3912,
|
|
1124
1137
|
"`${profileName}`: name of the profile in which the workspace is opened (e.g. Data Science (Profile)). Ignored if default profile is used."
|
|
1125
1138
|
)),
|
|
1126
|
-
( localize(
|
|
1127
|
-
( localize(
|
|
1139
|
+
( localize(3913, "`${appName}`: e.g. VS Code.")),
|
|
1140
|
+
( localize(3914, "`${remoteName}`: e.g. SSH")),
|
|
1128
1141
|
( localize(
|
|
1129
|
-
|
|
1142
|
+
3915,
|
|
1130
1143
|
"`${dirty}`: an indicator for when the active editor has unsaved changes."
|
|
1131
1144
|
)),
|
|
1132
|
-
( localize(
|
|
1145
|
+
( localize(3916, "`${focusedView}`: the name of the view that is currently focused.")),
|
|
1133
1146
|
( localize(
|
|
1134
|
-
|
|
1147
|
+
3917,
|
|
1135
1148
|
"`${activeRepositoryName}`: the name of the active repository (e.g. vscode)."
|
|
1136
1149
|
)),
|
|
1137
1150
|
( localize(
|
|
1138
|
-
|
|
1151
|
+
3918,
|
|
1139
1152
|
"`${activeRepositoryBranchName}`: the name of the active branch in the active repository (e.g. main)."
|
|
1140
1153
|
)),
|
|
1141
1154
|
( localize(
|
|
1142
|
-
|
|
1155
|
+
3919,
|
|
1143
1156
|
"`${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.",
|
|
1144
1157
|
'`accessibility.windowTitleOptimized`'
|
|
1145
1158
|
)),
|
|
1146
1159
|
( localize(
|
|
1147
|
-
|
|
1160
|
+
3920,
|
|
1148
1161
|
"`${separator}`: a conditional separator (\" - \") that only shows when surrounded by variables with values or static text."
|
|
1149
1162
|
))
|
|
1150
1163
|
].join('\n- ');
|
|
@@ -1159,15 +1172,15 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1159
1172
|
'window.titleSeparator': {
|
|
1160
1173
|
'type': 'string',
|
|
1161
1174
|
'default': defaultWindowTitleSeparator,
|
|
1162
|
-
'markdownDescription': ( localize(
|
|
1175
|
+
'markdownDescription': ( localize(3921, "Separator used by {0}.", '`#window.title#`'))
|
|
1163
1176
|
},
|
|
1164
1177
|
[LayoutSettings.COMMAND_CENTER]: {
|
|
1165
1178
|
type: 'boolean',
|
|
1166
1179
|
default: true,
|
|
1167
1180
|
markdownDescription: isWeb ?
|
|
1168
|
-
( localize(
|
|
1181
|
+
( localize(3922, "Show command launcher together with the window title.")) :
|
|
1169
1182
|
( localize(
|
|
1170
|
-
|
|
1183
|
+
3923,
|
|
1171
1184
|
"Show command launcher together with the window title. This setting only has an effect when {0} is not set to {1}.",
|
|
1172
1185
|
'`#window.customTitleBarVisibility#`',
|
|
1173
1186
|
'`never`'
|
|
@@ -1178,27 +1191,27 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1178
1191
|
'enum': ['classic', 'visible', 'toggle', 'hidden', 'compact'],
|
|
1179
1192
|
'markdownEnumDescriptions': [
|
|
1180
1193
|
( localize(
|
|
1181
|
-
|
|
1194
|
+
3924,
|
|
1182
1195
|
"Menu is displayed at the top of the window and only hidden in full screen mode."
|
|
1183
1196
|
)),
|
|
1184
1197
|
( localize(
|
|
1185
|
-
|
|
1198
|
+
3925,
|
|
1186
1199
|
"Menu is always visible at the top of the window even in full screen mode."
|
|
1187
1200
|
)),
|
|
1188
1201
|
isMacintosh ?
|
|
1189
1202
|
( localize(
|
|
1190
|
-
|
|
1203
|
+
3926,
|
|
1191
1204
|
"Menu is hidden but can be displayed at the top of the window by executing the `Focus Application Menu` command."
|
|
1192
1205
|
)) :
|
|
1193
1206
|
( localize(
|
|
1194
|
-
|
|
1207
|
+
3927,
|
|
1195
1208
|
"Menu is hidden but can be displayed at the top of the window via the Alt key."
|
|
1196
1209
|
)),
|
|
1197
|
-
( localize(
|
|
1210
|
+
( localize(3928, "Menu is always hidden.")),
|
|
1198
1211
|
isWeb ?
|
|
1199
|
-
( localize(
|
|
1212
|
+
( localize(3929, "Menu is displayed as a compact button in the side bar.")) :
|
|
1200
1213
|
( localize(
|
|
1201
|
-
|
|
1214
|
+
3930,
|
|
1202
1215
|
"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}.",
|
|
1203
1216
|
'`#window.titleBarStyle#`',
|
|
1204
1217
|
'`native`',
|
|
@@ -1211,11 +1224,11 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1211
1224
|
'scope': ConfigurationScope.APPLICATION,
|
|
1212
1225
|
'markdownDescription': isMacintosh ?
|
|
1213
1226
|
( localize(
|
|
1214
|
-
|
|
1227
|
+
3931,
|
|
1215
1228
|
"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."
|
|
1216
1229
|
)) :
|
|
1217
1230
|
( localize(
|
|
1218
|
-
|
|
1231
|
+
3932,
|
|
1219
1232
|
"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."
|
|
1220
1233
|
)),
|
|
1221
1234
|
'included': isWindows || isLinux || isWeb
|
|
@@ -1225,7 +1238,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1225
1238
|
'default': true,
|
|
1226
1239
|
'scope': ConfigurationScope.APPLICATION,
|
|
1227
1240
|
'description': ( localize(
|
|
1228
|
-
|
|
1241
|
+
3933,
|
|
1229
1242
|
"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."
|
|
1230
1243
|
)),
|
|
1231
1244
|
'included': isWindows || isLinux
|
|
@@ -1235,7 +1248,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1235
1248
|
'default': true,
|
|
1236
1249
|
'scope': ConfigurationScope.APPLICATION,
|
|
1237
1250
|
'markdownDescription': ( localize(
|
|
1238
|
-
|
|
1251
|
+
3934,
|
|
1239
1252
|
"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."
|
|
1240
1253
|
)),
|
|
1241
1254
|
'included': isWindows || isLinux
|
|
@@ -1244,18 +1257,18 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1244
1257
|
'type': 'string',
|
|
1245
1258
|
'enum': ['on', 'off', 'default'],
|
|
1246
1259
|
'enumDescriptions': [
|
|
1247
|
-
( localize(
|
|
1260
|
+
( localize(3935, "Files will open in a new window.")),
|
|
1248
1261
|
( localize(
|
|
1249
|
-
|
|
1262
|
+
3936,
|
|
1250
1263
|
"Files will open in the window with the files' folder open or the last active window."
|
|
1251
1264
|
)),
|
|
1252
1265
|
isMacintosh ?
|
|
1253
1266
|
( localize(
|
|
1254
|
-
|
|
1267
|
+
3937,
|
|
1255
1268
|
"Files will open in the window with the files' folder open or the last active window unless opened via the Dock or from Finder."
|
|
1256
1269
|
)) :
|
|
1257
1270
|
( localize(
|
|
1258
|
-
|
|
1271
|
+
3938,
|
|
1259
1272
|
"Files will open in a new window unless picked from within the application (e.g. via the File menu)."
|
|
1260
1273
|
))
|
|
1261
1274
|
],
|
|
@@ -1263,11 +1276,11 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1263
1276
|
'scope': ConfigurationScope.APPLICATION,
|
|
1264
1277
|
'markdownDescription': isMacintosh ?
|
|
1265
1278
|
( localize(
|
|
1266
|
-
|
|
1279
|
+
3939,
|
|
1267
1280
|
"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)."
|
|
1268
1281
|
)) :
|
|
1269
1282
|
( localize(
|
|
1270
|
-
|
|
1283
|
+
3940,
|
|
1271
1284
|
"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)."
|
|
1272
1285
|
))
|
|
1273
1286
|
},
|
|
@@ -1275,17 +1288,17 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1275
1288
|
'type': 'string',
|
|
1276
1289
|
'enum': ['on', 'off', 'default'],
|
|
1277
1290
|
'enumDescriptions': [
|
|
1278
|
-
( localize(
|
|
1279
|
-
( localize(
|
|
1291
|
+
( localize(3941, "Folders will open in a new window.")),
|
|
1292
|
+
( localize(3942, "Folders will replace the last active window.")),
|
|
1280
1293
|
( localize(
|
|
1281
|
-
|
|
1294
|
+
3943,
|
|
1282
1295
|
"Folders will open in a new window unless a folder is picked from within the application (e.g. via the File menu)."
|
|
1283
1296
|
))
|
|
1284
1297
|
],
|
|
1285
1298
|
'default': 'default',
|
|
1286
1299
|
'scope': ConfigurationScope.APPLICATION,
|
|
1287
1300
|
'markdownDescription': ( localize(
|
|
1288
|
-
|
|
1301
|
+
3944,
|
|
1289
1302
|
"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)."
|
|
1290
1303
|
))
|
|
1291
1304
|
},
|
|
@@ -1295,31 +1308,31 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1295
1308
|
'enumDescriptions': [
|
|
1296
1309
|
isWeb ?
|
|
1297
1310
|
( localize(
|
|
1298
|
-
|
|
1311
|
+
3945,
|
|
1299
1312
|
"Always try to ask for confirmation. Note that browsers may still decide to close a tab or window without confirmation."
|
|
1300
1313
|
)) :
|
|
1301
|
-
( localize(
|
|
1314
|
+
( localize(3946, "Always ask for confirmation.")),
|
|
1302
1315
|
isWeb ?
|
|
1303
1316
|
( localize(
|
|
1304
|
-
|
|
1317
|
+
3947,
|
|
1305
1318
|
"Only ask for confirmation if a keybinding was used to close the window. Note that detection may not be possible in some cases."
|
|
1306
1319
|
)) :
|
|
1307
|
-
( localize(
|
|
1320
|
+
( localize(3948, "Only ask for confirmation if a keybinding was used.")),
|
|
1308
1321
|
isWeb ?
|
|
1309
1322
|
( localize(
|
|
1310
|
-
|
|
1323
|
+
3949,
|
|
1311
1324
|
"Never explicitly ask for confirmation unless data loss is imminent."
|
|
1312
1325
|
)) :
|
|
1313
|
-
( localize(
|
|
1326
|
+
( localize(3950, "Never explicitly ask for confirmation."))
|
|
1314
1327
|
],
|
|
1315
1328
|
'default': (isWeb && !isStandalone()) ? 'keyboardOnly' : 'never',
|
|
1316
1329
|
'markdownDescription': isWeb ?
|
|
1317
1330
|
( localize(
|
|
1318
|
-
|
|
1331
|
+
3951,
|
|
1319
1332
|
"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."
|
|
1320
1333
|
)) :
|
|
1321
1334
|
( localize(
|
|
1322
|
-
|
|
1335
|
+
3952,
|
|
1323
1336
|
"Controls whether to show a confirmation dialog before closing a window or quitting the application."
|
|
1324
1337
|
)),
|
|
1325
1338
|
'scope': ConfigurationScope.APPLICATION
|
|
@@ -1334,7 +1347,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1334
1347
|
'type': 'boolean',
|
|
1335
1348
|
'default': true,
|
|
1336
1349
|
'description': ( localize(
|
|
1337
|
-
|
|
1350
|
+
3953,
|
|
1338
1351
|
"Controls whether the problems are visible throughout the editor and workbench."
|
|
1339
1352
|
)),
|
|
1340
1353
|
},
|
|
@@ -1343,36 +1356,36 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1343
1356
|
registry.registerConfiguration({
|
|
1344
1357
|
'id': 'zenMode',
|
|
1345
1358
|
'order': 9,
|
|
1346
|
-
'title': ( localize(
|
|
1359
|
+
'title': ( localize(3954, "Zen Mode")),
|
|
1347
1360
|
'type': 'object',
|
|
1348
1361
|
'properties': {
|
|
1349
1362
|
'zenMode.fullScreen': {
|
|
1350
1363
|
'type': 'boolean',
|
|
1351
1364
|
'default': true,
|
|
1352
1365
|
'description': ( localize(
|
|
1353
|
-
|
|
1366
|
+
3955,
|
|
1354
1367
|
"Controls whether turning on Zen Mode also puts the workbench into full screen mode."
|
|
1355
1368
|
))
|
|
1356
1369
|
},
|
|
1357
1370
|
'zenMode.centerLayout': {
|
|
1358
1371
|
'type': 'boolean',
|
|
1359
1372
|
'default': true,
|
|
1360
|
-
'description': ( localize(
|
|
1373
|
+
'description': ( localize(3956, "Controls whether turning on Zen Mode also centers the layout."))
|
|
1361
1374
|
},
|
|
1362
1375
|
'zenMode.showTabs': {
|
|
1363
1376
|
'type': 'string',
|
|
1364
1377
|
'enum': ['multiple', 'single', 'none'],
|
|
1365
1378
|
'description': ( localize(
|
|
1366
|
-
|
|
1379
|
+
3957,
|
|
1367
1380
|
"Controls whether turning on Zen Mode should show multiple editor tabs, a single editor tab, or hide the editor title area completely."
|
|
1368
1381
|
)),
|
|
1369
1382
|
'enumDescriptions': [
|
|
1370
|
-
( localize(
|
|
1383
|
+
( localize(3958, "Each editor is displayed as a tab in the editor title area.")),
|
|
1371
1384
|
( localize(
|
|
1372
|
-
|
|
1385
|
+
3959,
|
|
1373
1386
|
"The active editor is displayed as a single large tab in the editor title area."
|
|
1374
1387
|
)),
|
|
1375
|
-
( localize(
|
|
1388
|
+
( localize(3960, "The editor title area is not displayed.")),
|
|
1376
1389
|
],
|
|
1377
1390
|
'default': 'multiple'
|
|
1378
1391
|
},
|
|
@@ -1380,7 +1393,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1380
1393
|
'type': 'boolean',
|
|
1381
1394
|
'default': true,
|
|
1382
1395
|
'description': ( localize(
|
|
1383
|
-
|
|
1396
|
+
3961,
|
|
1384
1397
|
"Controls whether turning on Zen Mode also hides the status bar at the bottom of the workbench."
|
|
1385
1398
|
))
|
|
1386
1399
|
},
|
|
@@ -1388,7 +1401,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1388
1401
|
'type': 'boolean',
|
|
1389
1402
|
'default': true,
|
|
1390
1403
|
'description': ( localize(
|
|
1391
|
-
|
|
1404
|
+
3962,
|
|
1392
1405
|
"Controls whether turning on Zen Mode also hides the activity bar either at the left or right of the workbench."
|
|
1393
1406
|
))
|
|
1394
1407
|
},
|
|
@@ -1396,7 +1409,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1396
1409
|
'type': 'boolean',
|
|
1397
1410
|
'default': true,
|
|
1398
1411
|
'description': ( localize(
|
|
1399
|
-
|
|
1412
|
+
3963,
|
|
1400
1413
|
"Controls whether turning on Zen Mode also hides the editor line numbers."
|
|
1401
1414
|
))
|
|
1402
1415
|
},
|
|
@@ -1404,7 +1417,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1404
1417
|
'type': 'boolean',
|
|
1405
1418
|
'default': true,
|
|
1406
1419
|
'description': ( localize(
|
|
1407
|
-
|
|
1420
|
+
3964,
|
|
1408
1421
|
"Controls whether a window should restore to Zen Mode if it was exited in Zen Mode."
|
|
1409
1422
|
))
|
|
1410
1423
|
},
|
|
@@ -1412,7 +1425,7 @@ const registry = ( Registry.as(Extensions.Configuration));
|
|
|
1412
1425
|
'type': 'boolean',
|
|
1413
1426
|
'default': true,
|
|
1414
1427
|
'description': ( localize(
|
|
1415
|
-
|
|
1428
|
+
3965,
|
|
1416
1429
|
"Controls whether notifications do not disturb mode should be enabled while in Zen Mode. If true, only error notifications will pop out."
|
|
1417
1430
|
))
|
|
1418
1431
|
}
|