@codingame/monaco-vscode-api 13.1.6 → 14.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/extensions.d.ts +3 -2
- package/missing-services.js +177 -63
- package/monaco.d.ts +1 -1
- package/package.json +8 -8
- package/services.d.ts +2 -2
- package/services.js +2 -3
- package/vscode/src/vs/base/browser/cssValue.js +1 -1
- package/vscode/src/vs/base/browser/dom.js +4 -1
- package/vscode/src/vs/base/browser/markdownRenderer.js +12 -0
- package/vscode/src/vs/base/browser/touch.js +2 -1
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css.js +1 -1
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/button/button.js +10 -6
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css.js +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.d.ts +2 -1
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +2 -2
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css.js +1 -1
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +1 -1
- package/vscode/src/vs/base/browser/ui/list/listView.d.ts +10 -0
- package/vscode/src/vs/base/browser/ui/list/listView.js +102 -6
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/menu/menu.js +4 -1
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +6 -6
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.d.ts +1 -2
- package/vscode/src/vs/base/browser/ui/tree/asyncDataTree.js +18 -8
- package/vscode/src/vs/base/browser/ui/tree/indexTreeModel.js +2 -2
- package/vscode/src/vs/base/common/actions.d.ts +1 -1
- package/vscode/src/vs/base/common/arrays.d.ts +1 -2
- package/vscode/src/vs/base/common/arrays.js +2 -2
- package/vscode/src/vs/base/common/assert.d.ts +1 -1
- package/vscode/src/vs/base/common/assert.js +5 -2
- package/vscode/src/vs/base/common/async.js +16 -2
- package/vscode/src/vs/base/common/codicons.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +1 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +1 -0
- package/vscode/src/vs/base/common/color.d.ts +2 -2
- package/vscode/src/vs/base/common/color.js +4 -4
- package/vscode/src/vs/base/common/decorators.d.ts +1 -0
- package/vscode/src/vs/base/common/decorators.js +2 -0
- package/vscode/src/vs/base/common/errors.d.ts +2 -0
- package/vscode/src/vs/base/common/errors.js +10 -2
- package/vscode/src/vs/base/common/event.d.ts +3 -3
- package/vscode/src/vs/base/common/event.js +3 -3
- package/vscode/src/vs/base/common/filters.js +1 -1
- package/vscode/src/vs/base/common/iterator.d.ts +1 -1
- package/vscode/src/vs/base/common/iterator.js +8 -2
- package/vscode/src/vs/base/common/lifecycle.d.ts +7 -0
- package/vscode/src/vs/base/common/map.d.ts +8 -16
- package/vscode/src/vs/base/common/map.js +43 -30
- package/vscode/src/vs/base/common/network.d.ts +2 -2
- package/vscode/src/vs/base/common/network.js +4 -4
- package/vscode/src/vs/base/common/numbers.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/autorun.js +14 -1
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +13 -9
- package/vscode/src/vs/base/common/observableInternal/base.js +7 -1
- package/vscode/src/vs/base/common/observableInternal/derived.d.ts +5 -3
- package/vscode/src/vs/base/common/observableInternal/derived.js +31 -4
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/lazyObservableValue.js +5 -2
- package/vscode/src/vs/base/common/observableInternal/logging.d.ts +10 -4
- package/vscode/src/vs/base/common/observableInternal/logging.js +310 -1
- package/vscode/src/vs/base/common/observableInternal/utils.d.ts +9 -9
- package/vscode/src/vs/base/common/observableInternal/utils.js +13 -4
- package/vscode/src/vs/base/common/path.js +1 -2
- package/vscode/src/vs/base/common/product.d.ts +5 -0
- package/vscode/src/vs/base/common/stream.d.ts +1 -1
- package/vscode/src/vs/base/common/stream.js +13 -5
- package/vscode/src/vs/base/common/strings.d.ts +1 -0
- package/vscode/src/vs/base/common/strings.js +19 -9
- package/vscode/src/vs/base/common/types.d.ts +2 -1
- package/vscode/src/vs/base/common/types.js +9 -4
- package/vscode/src/vs/base/common/uuid.js +1 -50
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +2 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +26 -12
- package/vscode/src/vs/editor/browser/editorDom.js +3 -3
- package/vscode/src/vs/editor/browser/editorExtensions.js +15 -0
- package/vscode/src/vs/editor/browser/gpu/atlas/atlas.d.ts +7 -2
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.d.ts +1 -1
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.js +34 -27
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.d.ts +1 -1
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasPage.js +8 -8
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlasSlabAllocator.js +3 -3
- package/vscode/src/vs/editor/browser/gpu/contentSegmenter.d.ts +7 -0
- package/vscode/src/vs/editor/browser/gpu/contentSegmenter.js +49 -0
- package/vscode/src/vs/editor/browser/gpu/{decorationCssRuleExtractor.d.ts → css/decorationCssRuleExtractor.d.ts} +1 -1
- package/vscode/src/vs/editor/browser/gpu/{decorationCssRuleExtractor.js → css/decorationCssRuleExtractor.js} +2 -2
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +15 -0
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.js +37 -0
- package/vscode/src/vs/editor/browser/gpu/{media → css/media}/decorationCssRuleExtractor.css.js +1 -1
- package/vscode/src/vs/editor/browser/gpu/gpu.d.ts +6 -2
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.d.ts +5 -2
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.js +57 -14
- package/vscode/src/vs/editor/browser/gpu/raster/raster.d.ts +2 -1
- package/vscode/src/vs/editor/browser/gpu/rectangleRenderer.d.ts +4 -1
- package/vscode/src/vs/editor/browser/gpu/rectangleRenderer.js +5 -1
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/baseRenderStrategy.d.ts +25 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/baseRenderStrategy.js +16 -0
- package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.d.ts → renderStrategy/fullFileRenderStrategy.d.ts} +14 -13
- package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.js → renderStrategy/fullFileRenderStrategy.js} +100 -57
- package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.wgsl.js → renderStrategy/fullFileRenderStrategy.wgsl.js} +3 -3
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.d.ts +40 -0
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.js +287 -0
- package/vscode/src/vs/editor/browser/gpu/taskQueue.d.ts +4 -3
- package/vscode/src/vs/editor/browser/gpu/taskQueue.js +17 -2
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.d.ts +8 -9
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +45 -34
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +28 -21
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +68 -2
- package/vscode/src/vs/editor/browser/point.d.ts +9 -0
- package/vscode/src/vs/editor/browser/point.js +22 -0
- package/vscode/src/vs/editor/browser/rect.d.ts +30 -0
- package/vscode/src/vs/editor/browser/rect.js +131 -0
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.js +1 -1
- package/vscode/src/vs/editor/browser/view/viewLayer.d.ts +1 -1
- package/vscode/src/vs/editor/browser/view/viewLayer.js +8 -1
- package/vscode/src/vs/editor/browser/view.d.ts +1 -0
- package/vscode/src/vs/editor/browser/view.js +9 -5
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.d.ts +7 -3
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +140 -56
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +5 -0
- package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.d.ts +2 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/embeddedCodeEditorWidget.js +8 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +14 -9
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.d.ts +12 -10
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +12 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorSash.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.d.ts +4 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +29 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorOptions.d.ts +28 -28
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +0 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +3 -6
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +3 -10
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +8 -6
- package/vscode/src/vs/editor/common/config/editorOptions.js +409 -392
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/offsetEdit.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/offsetEdit.js +9 -0
- package/vscode/src/vs/editor/common/core/offsetRange.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/offsetRange.js +3 -0
- package/vscode/src/vs/editor/common/core/position.js +1 -1
- package/vscode/src/vs/editor/common/core/positionToOffset.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/positionToOffset.js +20 -1
- package/vscode/src/vs/editor/common/core/range.d.ts +1 -0
- package/vscode/src/vs/editor/common/core/range.js +3 -0
- package/vscode/src/vs/editor/common/core/textEdit.d.ts +0 -6
- package/vscode/src/vs/editor/common/core/textEdit.js +0 -1
- package/vscode/src/vs/editor/common/core/textLength.js +1 -1
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.js +10 -7
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.d.ts +2 -1
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/heuristicSequenceOptimizations.js +6 -6
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.d.ts +1 -0
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/linesSliceCharSequence.js +20 -0
- package/vscode/src/vs/editor/common/diff/linesDiffComputer.d.ts +1 -0
- package/vscode/src/vs/editor/common/diff/rangeMapping.d.ts +1 -1
- package/vscode/src/vs/editor/common/diff/rangeMapping.js +1 -22
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +1 -1
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.js +5 -5
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +21 -25
- package/vscode/src/vs/editor/common/languages.js +27 -27
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +1 -0
- package/vscode/src/vs/editor/common/model/textModel.js +6 -3
- package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/textModelTokens.js +11 -18
- package/vscode/src/vs/editor/common/model/tokenStore.d.ts +59 -0
- package/vscode/src/vs/editor/common/model/tokenStore.js +384 -0
- package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.d.ts +5 -5
- package/vscode/src/vs/editor/common/model/tokenizationTextModelPart.js +10 -15
- package/vscode/src/vs/editor/common/model/tokens.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.d.ts +44 -0
- package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.js +114 -0
- package/vscode/src/vs/editor/common/model/treeSitterTokens.d.ts +4 -5
- package/vscode/src/vs/editor/common/model/treeSitterTokens.js +18 -10
- package/vscode/src/vs/editor/common/services/editorSimpleWorker.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/editorWorker.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/languageFeatures.d.ts +1 -2
- package/vscode/src/vs/editor/common/services/languageFeaturesService.d.ts +1 -2
- package/vscode/src/vs/editor/common/services/languageFeaturesService.js +0 -1
- package/vscode/src/vs/editor/common/services/treeSitterParserService.d.ts +18 -5
- package/vscode/src/vs/editor/common/standaloneStrings.d.ts +3 -0
- package/vscode/src/vs/editor/common/standaloneStrings.js +54 -38
- package/vscode/src/vs/editor/common/tokenizationTextModelPart.d.ts +1 -13
- package/vscode/src/vs/editor/common/tokenizationTextModelPart.js +1 -13
- package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +1 -0
- package/vscode/src/vs/editor/common/tokens/lineTokens.js +3 -0
- package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +5 -0
- package/vscode/src/vs/editor/common/tokens/tokenArray.js +24 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +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/codeActionModel.js +1 -0
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codeLensCache.js +1 -1
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.js +7 -5
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css.js +1 -1
- 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/hoverColorPicker/hoverColorPicker.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPicker.js +12 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerContribution.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerContribution.js +2 -9
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +3 -5
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerParticipant.d.ts +12 -8
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerParticipant.js +41 -41
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.js +13 -8
- 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 +32 -33
- 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.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +20 -17
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +32 -30
- package/vscode/src/vs/editor/contrib/find/browser/replaceWidgetHistory.d.ts +21 -0
- package/vscode/src/vs/editor/contrib/find/browser/replaceWidgetHistory.js +76 -0
- 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.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +40 -36
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/vscode/src/vs/editor/contrib/gotoError/browser/markerNavigationService.js +56 -30
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +43 -41
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +3 -2
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +5 -4
- 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 +5 -5
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.d.ts +1 -3
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.js +54 -59
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +47 -16
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidget.js +27 -15
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverWidgetWrapper.js +10 -1
- package/vscode/src/vs/editor/contrib/hover/browser/glyphHoverWidget.js +2 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css.js +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.d.ts +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +4 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.d.ts +4 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +38 -25
- package/vscode/src/vs/editor/contrib/hover/browser/hoverContribution.js +2 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hoverOperation.js +1 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverTypes.d.ts +4 -1
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +65 -33
- 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/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +38 -24
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.d.ts +7 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +50 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +8 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/computeGhostText.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +18 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +55 -27
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +22 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +199 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEditsAdapter.js +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +5 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +38 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +10 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.d.ts +16 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +65 -30
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.d.ts +6 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +7 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/deletionView.d.ts +29 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/deletionView.js +141 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorMenu.d.ts +19 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorMenu.js +143 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorView.d.ts +37 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/gutterIndicatorView.js +259 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsIndicatorView.d.ts → indicatorView.d.ts} +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsIndicatorView.js → indicatorView.js} +9 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineDiffView.d.ts +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineDiffView.js +39 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/insertionView.d.ts +32 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/insertionView.js +204 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/sideBySideDiff.d.ts +71 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/sideBySideDiff.js +584 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils.d.ts +123 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils.js +348 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css.js +6 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.d.ts +41 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.js +365 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{inlineEditsViewAndDiffProducer.d.ts → viewAndDiffProducer.d.ts} +7 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/viewAndDiffProducer.js +92 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/wordReplacementView.d.ts +58 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/wordReplacementView.js +520 -0
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/getLinks.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/links/browser/getLinks.js +16 -12
- package/vscode/src/vs/editor/contrib/links/browser/links.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/links/browser/links.js +13 -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 +5 -5
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -26
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- 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/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css.js +1 -1
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.d.ts +2 -3
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +19 -15
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.d.ts +14 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +48 -19
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +7 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +25 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css.js +1 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +20 -20
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +9 -7
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +3 -7
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +5 -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/unicodeHighlighter.js +24 -24
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.js +8 -3
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.d.ts +4 -0
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +3 -0
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +2 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.d.ts +3 -7
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.js +1 -1
- package/vscode/src/vs/nls.js +1 -1
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +3 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.js +1 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleViewRegistry.d.ts +4 -4
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +52 -52
- 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.js +7 -7
- package/vscode/src/vs/platform/actions/browser/dropdownWithPrimaryActionViewItem.d.ts +39 -0
- package/vscode/src/vs/platform/actions/browser/dropdownWithPrimaryActionViewItem.js +145 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +1 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +6 -6
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +4 -1
- package/vscode/src/vs/platform/actions/common/actions.js +9 -6
- 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/commands/common/commands.js +2 -2
- package/vscode/src/vs/platform/configuration/common/configuration.d.ts +4 -1
- package/vscode/src/vs/platform/configuration/common/configuration.js +3 -0
- package/vscode/src/vs/platform/configuration/common/configurationModels.d.ts +2 -2
- package/vscode/src/vs/platform/configuration/common/configurationModels.js +39 -21
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +9 -4
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +25 -15
- 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/contextview/browser/contextView.service.d.ts +2 -2
- package/vscode/src/vs/platform/dialogs/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/environment/common/argv.d.ts +2 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +5 -3
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +17 -6
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +5 -5
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +2 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +10 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.d.ts +3 -5
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.js +8 -13
- package/vscode/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.service.d.ts +2 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +20 -14
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +127 -125
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.service.d.ts +8 -9
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +56 -25
- package/vscode/src/vs/platform/extensions/common/extensions.js +8 -1
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +11 -8
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +12 -9
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/instantiation/common/extensions.d.ts +3 -2
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/label/common/label.service.d.ts +2 -1
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.d.ts +1 -0
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.d.ts +6 -0
- package/vscode/src/vs/platform/log/common/log.js +18 -9
- package/vscode/src/vs/platform/markers/common/markers.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +5 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +19 -9
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +11 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +241 -12
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +3 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +2 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.service.d.ts +4 -0
- package/vscode/src/vs/platform/request/common/request.d.ts +2 -2
- package/vscode/src/vs/platform/request/common/request.js +171 -112
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +2 -0
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +3 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +6 -2
- package/vscode/src/vs/platform/terminal/common/terminal.js +5 -1
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +96 -96
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +45 -45
- 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 +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- 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.d.ts +7 -0
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +17 -7
- package/vscode/src/vs/platform/theme/common/theme.d.ts +6 -0
- package/vscode/src/vs/platform/theme/common/theme.js +8 -1
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +12 -3
- package/vscode/src/vs/platform/theme/common/themeService.js +5 -5
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +7 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +3 -3
- package/vscode/src/vs/platform/window/common/window.d.ts +6 -1
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/platform/workspaces/common/workspaces.service.d.ts +2 -2
- package/vscode/src/vs/workbench/api/browser/statusBarService.d.ts +3 -2
- package/vscode/src/vs/workbench/api/browser/statusBarService.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +10 -14
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +18 -11
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -20
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -0
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +37 -10
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +4 -18
- package/vscode/src/vs/workbench/api/common/extHostCommands.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostCommands.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostComments.js +3 -5
- package/vscode/src/vs/workbench/api/common/extHostConfiguration.d.ts +16 -0
- package/vscode/src/vs/workbench/api/common/extHostConfiguration.js +4 -0
- package/vscode/src/vs/workbench/api/common/extHostDebugService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDialogs.d.ts +1 -2
- package/vscode/src/vs/workbench/api/common/extHostDialogs.js +1 -5
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLabelService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +0 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +29 -65
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +3 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +33 -13
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMemento.js +6 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.d.ts +10 -2
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +47 -7
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +12 -8
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +3 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +67 -6
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.d.ts +1 -0
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +18 -1
- package/vscode/src/vs/workbench/api/common/extHostTimeline.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +4 -13
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +7 -61
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +24 -3
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +37 -5
- package/vscode/src/vs/workbench/api/common/extHostVariableResolverService.js +22 -2
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -2
- package/vscode/src/vs/workbench/api/common/extensionHostMain.js +17 -8
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +31 -31
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.d.ts +12 -0
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +247 -0
- package/vscode/src/vs/workbench/common/activity.d.ts +2 -0
- package/vscode/src/vs/workbench/common/activity.js +6 -0
- package/vscode/src/vs/workbench/common/configuration.js +12 -12
- package/vscode/src/vs/workbench/common/contextkeys.js +70 -70
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor/resourceEditorInput.d.ts +44 -0
- package/vscode/src/vs/workbench/common/editor/resourceEditorInput.js +166 -0
- package/vscode/src/vs/workbench/common/editor.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +159 -164
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +152 -142
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +14 -14
- package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.js +16 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +521 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.js +20 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +136 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.js +51 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatMarkdownAnchorService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditing.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditing.js +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorActions.d.ts +23 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorActions.js +309 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorController.d.ts +81 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorController.js +681 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorInput.d.ts +57 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorInput.js +169 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorOverlay.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditorOverlay.js +296 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.d.ts +41 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.js +198 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatQuotasService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/screenshot.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/contrib/screenshot.js +15 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatEditorController.css.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/media/chatEditorOverlay.css.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/annotations.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/common/annotations.js +134 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +16 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +48 -5
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatCodeMapperService.service.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +15 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +61 -29
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +19 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +17 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +3 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +444 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +991 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +112 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +181 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParticipantContribTypes.d.ts +35 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatParticipantContribTypes.js +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.js +1 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatViewModel.d.ts +234 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatViewModel.js +375 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatWordCounter.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatWordCounter.js +38 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +42 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +10 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +9 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +27 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +168 -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.d.ts +2 -2
- 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/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.d.ts +1 -1
- 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 +9 -19
- package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +14 -10
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
- package/vscode/src/vs/workbench/contrib/editSessions/common/editSessions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.d.ts +167 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +85 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +2 -2
- 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 +2 -2
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +4 -3
- 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/logs/common/defaultLogLevels.service.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditContext.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookChatEditContext.js +7 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.d.ts +602 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.js +143 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +2 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.d.ts +60 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +316 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookExecutionStateService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRange.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookRange.js +73 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.d.ts +36 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.js +11 -0
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookSynchronizerService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/browser/quickDiffModel.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/scm/browser/{diff.service.js → quickDiffModel.service.js} +2 -2
- package/vscode/src/vs/workbench/contrib/scm/common/history.d.ts +5 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.d.ts +30 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +95 -0
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +17 -0
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +82 -0
- package/vscode/src/vs/workbench/contrib/scm/common/scm.service.d.ts +1 -1
- 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.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +30 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +3 -3
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testCoverageService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/testing/common/testExplorerFilterState.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/testing/common/testId.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testId.js +3 -0
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.d.ts +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.js +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +26 -15
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.d.ts +5 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.service.d.ts +10 -4
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/extensionRecommendations.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +3 -2
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +83 -83
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.d.ts +63 -0
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +164 -0
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/log/common/logConstants.d.ts +2 -0
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +3 -1
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/output/common/output.d.ts +51 -8
- package/vscode/src/vs/workbench/services/output/common/output.js +30 -4
- package/vscode/src/vs/workbench/services/output/common/output.service.d.ts +8 -1
- package/vscode/src/vs/workbench/services/panecomposite/browser/panecomposite.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +2 -2
- 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/statusbar/browser/statusbar.d.ts +9 -4
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.js +5 -1
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +15 -21
- package/vscode/src/vs/workbench/services/untitled/common/untitledTextEditorService.service.d.ts +21 -2
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.service.d.ts +3 -3
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +11 -11
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workspaces/common/workspaceEditing.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +375 -32
- package/vscode-dts/vscode.proposed.aiRelatedInformation.d.ts +1 -1
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +11 -0
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +9 -0
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +4 -0
- package/vscode-dts/vscode.proposed.chatReadonlyPromptReference.d.ts +17 -0
- package/vscode-dts/vscode.proposed.chatReferenceBinaryData.d.ts +5 -0
- package/vscode-dts/vscode.proposed.d.ts +132 -131
- package/vscode-dts/vscode.proposed.externalUriOpener.d.ts +3 -3
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +2 -0
- package/vscode-dts/vscode.proposed.inlineEdit.d.ts +14 -3
- package/vscode-dts/vscode.proposed.mappedEditsProvider.d.ts +21 -1
- package/vscode-dts/vscode.proposed.notebookVariableProvider.d.ts +3 -3
- package/vscode-dts/vscode.proposed.quickDiffProvider.d.ts +1 -1
- package/vscode-dts/vscode.proposed.resolvers.d.ts +3 -3
- package/vscode-dts/vscode.proposed.scmHistoryProvider.d.ts +4 -2
- package/vscode-dts/vscode.proposed.statusBarItemTooltip.d.ts +19 -0
- package/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts +10 -0
- package/vscode-dts/vscode.proposed.terminalQuickFixProvider.d.ts +2 -2
- package/vscode-dts/vscode.proposed.terminalShellEnv.d.ts +18 -0
- package/vscode-dts/vscode.proposed.terminalShellType.d.ts +40 -0
- package/vscode/src/vs/base/common/observableInternal/index.js +0 -8
- package/vscode/src/vs/base/common/observableInternal/promise.d.ts +0 -28
- package/vscode/src/vs/base/common/observableInternal/promise.js +0 -65
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +0 -45
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +0 -426
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewAndDiffProducer.js +0 -116
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSavingService.service.d.ts +0 -6
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSavingService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/mappedEdits/common/mappedEdits.contribution.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/mappedEdits/common/mappedEdits.contribution.js +0 -24
- package/vscode/src/vs/workbench/contrib/output/common/outputChannelModelService.service.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/output/common/outputChannelModelService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/scm/browser/diff.service.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/scm/browser/dirtyDiffSwitcher.d.ts +0 -22
- package/vscode/src/vs/workbench/contrib/scm/browser/dirtyDiffSwitcher.js +0 -66
- package/vscode/src/vs/workbench/contrib/scm/browser/dirtydiffDecorator.d.ts +0 -155
- package/vscode/src/vs/workbench/contrib/scm/browser/dirtydiffDecorator.js +0 -1454
- package/vscode/src/vs/workbench/contrib/scm/browser/media/dirtydiffDecorator.css.js +0 -6
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +0 -164
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.js +0 -74
- package/vscode/src/vs/workbench/services/themes/common/productIconThemeSchema.d.ts +0 -8
- package/vscode/src/vs/workbench/services/themes/common/productIconThemeSchema.js +0 -93
- package/vscode-dts/vscode.proposed.documentPaste.d.ts +0 -316
- package/vscode-dts/vscode.proposed.fileComments.d.ts +0 -42
- package/vscode-dts/vscode.proposed.showLocal.d.ts +0 -19
- /package/vscode/src/vs/editor/browser/gpu/{fullFileRenderStrategy.wgsl.d.ts → renderStrategy/fullFileRenderStrategy.wgsl.d.ts} +0 -0
|
@@ -27,11 +27,11 @@ function WORKBENCH_BACKGROUND(theme) {
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
const TAB_ACTIVE_BACKGROUND = registerColor('tab.activeBackground', editorBackground, ( localize(
|
|
30
|
-
|
|
30
|
+
3770,
|
|
31
31
|
"Active tab background color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
32
32
|
)));
|
|
33
33
|
const TAB_UNFOCUSED_ACTIVE_BACKGROUND = registerColor('tab.unfocusedActiveBackground', TAB_ACTIVE_BACKGROUND, ( localize(
|
|
34
|
-
|
|
34
|
+
3771,
|
|
35
35
|
"Active tab background color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
36
36
|
)));
|
|
37
37
|
const TAB_INACTIVE_BACKGROUND = registerColor('tab.inactiveBackground', {
|
|
@@ -40,11 +40,11 @@ const TAB_INACTIVE_BACKGROUND = registerColor('tab.inactiveBackground', {
|
|
|
40
40
|
hcDark: null,
|
|
41
41
|
hcLight: null,
|
|
42
42
|
}, ( localize(
|
|
43
|
-
|
|
43
|
+
3772,
|
|
44
44
|
"Inactive tab background color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
45
45
|
)));
|
|
46
46
|
const TAB_UNFOCUSED_INACTIVE_BACKGROUND = registerColor('tab.unfocusedInactiveBackground', TAB_INACTIVE_BACKGROUND, ( localize(
|
|
47
|
-
|
|
47
|
+
3773,
|
|
48
48
|
"Inactive tab background color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
49
49
|
)));
|
|
50
50
|
const TAB_ACTIVE_FOREGROUND = registerColor('tab.activeForeground', {
|
|
@@ -53,7 +53,7 @@ const TAB_ACTIVE_FOREGROUND = registerColor('tab.activeForeground', {
|
|
|
53
53
|
hcDark: Color.white,
|
|
54
54
|
hcLight: '#292929'
|
|
55
55
|
}, ( localize(
|
|
56
|
-
|
|
56
|
+
3774,
|
|
57
57
|
"Active tab foreground color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
58
58
|
)));
|
|
59
59
|
const TAB_INACTIVE_FOREGROUND = registerColor('tab.inactiveForeground', {
|
|
@@ -62,7 +62,7 @@ const TAB_INACTIVE_FOREGROUND = registerColor('tab.inactiveForeground', {
|
|
|
62
62
|
hcDark: Color.white,
|
|
63
63
|
hcLight: '#292929'
|
|
64
64
|
}, ( localize(
|
|
65
|
-
|
|
65
|
+
3775,
|
|
66
66
|
"Inactive tab foreground color in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
67
67
|
)));
|
|
68
68
|
const TAB_UNFOCUSED_ACTIVE_FOREGROUND = registerColor('tab.unfocusedActiveForeground', {
|
|
@@ -71,7 +71,7 @@ const TAB_UNFOCUSED_ACTIVE_FOREGROUND = registerColor('tab.unfocusedActiveForegr
|
|
|
71
71
|
hcDark: Color.white,
|
|
72
72
|
hcLight: '#292929'
|
|
73
73
|
}, ( localize(
|
|
74
|
-
|
|
74
|
+
3776,
|
|
75
75
|
"Active tab foreground color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
76
76
|
)));
|
|
77
77
|
registerColor('tab.unfocusedInactiveForeground', {
|
|
@@ -80,11 +80,11 @@ registerColor('tab.unfocusedInactiveForeground', {
|
|
|
80
80
|
hcDark: Color.white,
|
|
81
81
|
hcLight: '#292929'
|
|
82
82
|
}, ( localize(
|
|
83
|
-
|
|
83
|
+
3777,
|
|
84
84
|
"Inactive tab foreground color in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
85
85
|
)));
|
|
86
86
|
const TAB_HOVER_BACKGROUND = registerColor('tab.hoverBackground', null, ( localize(
|
|
87
|
-
|
|
87
|
+
3778,
|
|
88
88
|
"Tab background color when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
89
89
|
)));
|
|
90
90
|
const TAB_UNFOCUSED_HOVER_BACKGROUND = registerColor('tab.unfocusedHoverBackground', {
|
|
@@ -93,11 +93,11 @@ const TAB_UNFOCUSED_HOVER_BACKGROUND = registerColor('tab.unfocusedHoverBackgrou
|
|
|
93
93
|
hcDark: null,
|
|
94
94
|
hcLight: null
|
|
95
95
|
}, ( localize(
|
|
96
|
-
|
|
96
|
+
3779,
|
|
97
97
|
"Tab background color in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
98
98
|
)));
|
|
99
99
|
const TAB_HOVER_FOREGROUND = registerColor('tab.hoverForeground', null, ( localize(
|
|
100
|
-
|
|
100
|
+
3780,
|
|
101
101
|
"Tab foreground color when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
102
102
|
)));
|
|
103
103
|
const TAB_UNFOCUSED_HOVER_FOREGROUND = registerColor('tab.unfocusedHoverForeground', {
|
|
@@ -106,7 +106,7 @@ const TAB_UNFOCUSED_HOVER_FOREGROUND = registerColor('tab.unfocusedHoverForegrou
|
|
|
106
106
|
hcDark: null,
|
|
107
107
|
hcLight: null
|
|
108
108
|
}, ( localize(
|
|
109
|
-
|
|
109
|
+
3781,
|
|
110
110
|
"Tab foreground color in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
111
111
|
)));
|
|
112
112
|
const TAB_BORDER = registerColor('tab.border', {
|
|
@@ -115,7 +115,7 @@ const TAB_BORDER = registerColor('tab.border', {
|
|
|
115
115
|
hcDark: contrastBorder,
|
|
116
116
|
hcLight: contrastBorder,
|
|
117
117
|
}, ( localize(
|
|
118
|
-
|
|
118
|
+
3782,
|
|
119
119
|
"Border to separate tabs from each other. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
120
120
|
)));
|
|
121
121
|
const TAB_LAST_PINNED_BORDER = registerColor('tab.lastPinnedBorder', {
|
|
@@ -124,11 +124,11 @@ const TAB_LAST_PINNED_BORDER = registerColor('tab.lastPinnedBorder', {
|
|
|
124
124
|
hcDark: contrastBorder,
|
|
125
125
|
hcLight: contrastBorder
|
|
126
126
|
}, ( localize(
|
|
127
|
-
|
|
127
|
+
3783,
|
|
128
128
|
"Border to separate pinned tabs from other tabs. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
129
129
|
)));
|
|
130
130
|
const TAB_ACTIVE_BORDER = registerColor('tab.activeBorder', null, ( localize(
|
|
131
|
-
|
|
131
|
+
3784,
|
|
132
132
|
"Border on the bottom of an active tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
133
133
|
)));
|
|
134
134
|
const TAB_UNFOCUSED_ACTIVE_BORDER = registerColor('tab.unfocusedActiveBorder', {
|
|
@@ -137,7 +137,7 @@ const TAB_UNFOCUSED_ACTIVE_BORDER = registerColor('tab.unfocusedActiveBorder', {
|
|
|
137
137
|
hcDark: null,
|
|
138
138
|
hcLight: null
|
|
139
139
|
}, ( localize(
|
|
140
|
-
|
|
140
|
+
3785,
|
|
141
141
|
"Border on the bottom of an active tab in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
142
142
|
)));
|
|
143
143
|
const TAB_ACTIVE_BORDER_TOP = registerColor('tab.activeBorderTop', {
|
|
@@ -146,7 +146,7 @@ const TAB_ACTIVE_BORDER_TOP = registerColor('tab.activeBorderTop', {
|
|
|
146
146
|
hcDark: null,
|
|
147
147
|
hcLight: '#B5200D'
|
|
148
148
|
}, ( localize(
|
|
149
|
-
|
|
149
|
+
3786,
|
|
150
150
|
"Border to the top of an active tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
151
151
|
)));
|
|
152
152
|
const TAB_UNFOCUSED_ACTIVE_BORDER_TOP = registerColor('tab.unfocusedActiveBorderTop', {
|
|
@@ -155,23 +155,23 @@ const TAB_UNFOCUSED_ACTIVE_BORDER_TOP = registerColor('tab.unfocusedActiveBorder
|
|
|
155
155
|
hcDark: null,
|
|
156
156
|
hcLight: '#B5200D'
|
|
157
157
|
}, ( localize(
|
|
158
|
-
|
|
158
|
+
3787,
|
|
159
159
|
"Border to the top of an active tab in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
160
160
|
)));
|
|
161
161
|
const TAB_SELECTED_BORDER_TOP = registerColor('tab.selectedBorderTop', TAB_ACTIVE_BORDER_TOP, ( localize(
|
|
162
|
-
|
|
162
|
+
3788,
|
|
163
163
|
"Border to the top of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
164
164
|
)));
|
|
165
165
|
registerColor('tab.selectedBackground', TAB_ACTIVE_BACKGROUND, ( localize(
|
|
166
|
-
|
|
166
|
+
3789,
|
|
167
167
|
"Background of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
168
168
|
)));
|
|
169
169
|
registerColor('tab.selectedForeground', TAB_ACTIVE_FOREGROUND, ( localize(
|
|
170
|
-
|
|
170
|
+
3790,
|
|
171
171
|
"Foreground of a selected tab. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
172
172
|
)));
|
|
173
173
|
const TAB_HOVER_BORDER = registerColor('tab.hoverBorder', null, ( localize(
|
|
174
|
-
|
|
174
|
+
3791,
|
|
175
175
|
"Border to highlight tabs when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
176
176
|
)));
|
|
177
177
|
const TAB_UNFOCUSED_HOVER_BORDER = registerColor('tab.unfocusedHoverBorder', {
|
|
@@ -180,7 +180,7 @@ const TAB_UNFOCUSED_HOVER_BORDER = registerColor('tab.unfocusedHoverBorder', {
|
|
|
180
180
|
hcDark: null,
|
|
181
181
|
hcLight: contrastBorder
|
|
182
182
|
}, ( localize(
|
|
183
|
-
|
|
183
|
+
3792,
|
|
184
184
|
"Border to highlight tabs in an unfocused group when hovering. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
185
185
|
)));
|
|
186
186
|
registerColor('tab.dragAndDropBorder', {
|
|
@@ -189,7 +189,7 @@ registerColor('tab.dragAndDropBorder', {
|
|
|
189
189
|
hcDark: activeContrastBorder,
|
|
190
190
|
hcLight: activeContrastBorder
|
|
191
191
|
}, ( localize(
|
|
192
|
-
|
|
192
|
+
3793,
|
|
193
193
|
"Border between tabs to indicate that a tab can be inserted between two tabs. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
194
194
|
)));
|
|
195
195
|
const TAB_ACTIVE_MODIFIED_BORDER = registerColor('tab.activeModifiedBorder', {
|
|
@@ -198,7 +198,7 @@ const TAB_ACTIVE_MODIFIED_BORDER = registerColor('tab.activeModifiedBorder', {
|
|
|
198
198
|
hcDark: null,
|
|
199
199
|
hcLight: contrastBorder
|
|
200
200
|
}, ( localize(
|
|
201
|
-
|
|
201
|
+
3794,
|
|
202
202
|
"Border on the top of modified active tabs in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
203
203
|
)));
|
|
204
204
|
const TAB_INACTIVE_MODIFIED_BORDER = registerColor('tab.inactiveModifiedBorder', {
|
|
@@ -207,7 +207,7 @@ const TAB_INACTIVE_MODIFIED_BORDER = registerColor('tab.inactiveModifiedBorder',
|
|
|
207
207
|
hcDark: Color.white,
|
|
208
208
|
hcLight: contrastBorder
|
|
209
209
|
}, ( localize(
|
|
210
|
-
|
|
210
|
+
3795,
|
|
211
211
|
"Border on the top of modified inactive tabs in an active group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
212
212
|
)));
|
|
213
213
|
const TAB_UNFOCUSED_ACTIVE_MODIFIED_BORDER = registerColor('tab.unfocusedActiveModifiedBorder', {
|
|
@@ -216,7 +216,7 @@ const TAB_UNFOCUSED_ACTIVE_MODIFIED_BORDER = registerColor('tab.unfocusedActiveM
|
|
|
216
216
|
hcDark: Color.white,
|
|
217
217
|
hcLight: contrastBorder
|
|
218
218
|
}, ( localize(
|
|
219
|
-
|
|
219
|
+
3796,
|
|
220
220
|
"Border on the top of modified active tabs in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
221
221
|
)));
|
|
222
222
|
const TAB_UNFOCUSED_INACTIVE_MODIFIED_BORDER = registerColor('tab.unfocusedInactiveModifiedBorder', {
|
|
@@ -225,15 +225,15 @@ const TAB_UNFOCUSED_INACTIVE_MODIFIED_BORDER = registerColor('tab.unfocusedInact
|
|
|
225
225
|
hcDark: Color.white,
|
|
226
226
|
hcLight: contrastBorder
|
|
227
227
|
}, ( localize(
|
|
228
|
-
|
|
228
|
+
3797,
|
|
229
229
|
"Border on the top of modified inactive tabs in an unfocused group. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group. There can be multiple editor groups."
|
|
230
230
|
)));
|
|
231
231
|
const EDITOR_PANE_BACKGROUND = registerColor('editorPane.background', editorBackground, ( localize(
|
|
232
|
-
|
|
232
|
+
3798,
|
|
233
233
|
"Background color of the editor pane visible on the left and right side of the centered editor layout."
|
|
234
234
|
)));
|
|
235
235
|
const EDITOR_GROUP_EMPTY_BACKGROUND = registerColor('editorGroup.emptyBackground', null, ( localize(
|
|
236
|
-
|
|
236
|
+
3799,
|
|
237
237
|
"Background color of an empty editor group. Editor groups are the containers of editors."
|
|
238
238
|
)));
|
|
239
239
|
registerColor('editorGroup.focusedEmptyBorder', {
|
|
@@ -242,7 +242,7 @@ registerColor('editorGroup.focusedEmptyBorder', {
|
|
|
242
242
|
hcDark: focusBorder,
|
|
243
243
|
hcLight: focusBorder
|
|
244
244
|
}, ( localize(
|
|
245
|
-
|
|
245
|
+
3800,
|
|
246
246
|
"Border color of an empty editor group that is focused. Editor groups are the containers of editors."
|
|
247
247
|
)));
|
|
248
248
|
const EDITOR_GROUP_HEADER_TABS_BACKGROUND = registerColor('editorGroupHeader.tabsBackground', {
|
|
@@ -251,15 +251,15 @@ const EDITOR_GROUP_HEADER_TABS_BACKGROUND = registerColor('editorGroupHeader.tab
|
|
|
251
251
|
hcDark: null,
|
|
252
252
|
hcLight: null
|
|
253
253
|
}, ( localize(
|
|
254
|
-
|
|
254
|
+
3801,
|
|
255
255
|
"Background color of the editor group title header when tabs are enabled. Editor groups are the containers of editors."
|
|
256
256
|
)));
|
|
257
257
|
const EDITOR_GROUP_HEADER_TABS_BORDER = registerColor('editorGroupHeader.tabsBorder', null, ( localize(
|
|
258
|
-
|
|
258
|
+
3802,
|
|
259
259
|
"Border color of the editor group title header when tabs are enabled. Editor groups are the containers of editors."
|
|
260
260
|
)));
|
|
261
261
|
const EDITOR_GROUP_HEADER_NO_TABS_BACKGROUND = registerColor('editorGroupHeader.noTabsBackground', editorBackground, ( localize(
|
|
262
|
-
|
|
262
|
+
3803,
|
|
263
263
|
"Background color of the editor group title header when (`\"workbench.editor.showTabs\": \"single\"`). Editor groups are the containers of editors."
|
|
264
264
|
)));
|
|
265
265
|
const EDITOR_GROUP_HEADER_BORDER = registerColor('editorGroupHeader.border', {
|
|
@@ -268,7 +268,7 @@ const EDITOR_GROUP_HEADER_BORDER = registerColor('editorGroupHeader.border', {
|
|
|
268
268
|
hcDark: contrastBorder,
|
|
269
269
|
hcLight: contrastBorder
|
|
270
270
|
}, ( localize(
|
|
271
|
-
|
|
271
|
+
3804,
|
|
272
272
|
"Border color of the editor group title header. Editor groups are the containers of editors."
|
|
273
273
|
)));
|
|
274
274
|
const EDITOR_GROUP_BORDER = registerColor('editorGroup.border', {
|
|
@@ -277,7 +277,7 @@ const EDITOR_GROUP_BORDER = registerColor('editorGroup.border', {
|
|
|
277
277
|
hcDark: contrastBorder,
|
|
278
278
|
hcLight: contrastBorder
|
|
279
279
|
}, ( localize(
|
|
280
|
-
|
|
280
|
+
3805,
|
|
281
281
|
"Color to separate multiple editor groups from each other. Editor groups are the containers of editors."
|
|
282
282
|
)));
|
|
283
283
|
const EDITOR_DRAG_AND_DROP_BACKGROUND = registerColor('editorGroup.dropBackground', {
|
|
@@ -286,15 +286,15 @@ const EDITOR_DRAG_AND_DROP_BACKGROUND = registerColor('editorGroup.dropBackgroun
|
|
|
286
286
|
hcDark: null,
|
|
287
287
|
hcLight: ( ( Color.fromHex('#0F4A85')).transparent(0.50))
|
|
288
288
|
}, ( localize(
|
|
289
|
-
|
|
289
|
+
3806,
|
|
290
290
|
"Background color when dragging editors around. The color should have transparency so that the editor contents can still shine through."
|
|
291
291
|
)));
|
|
292
292
|
const EDITOR_DROP_INTO_PROMPT_FOREGROUND = registerColor('editorGroup.dropIntoPromptForeground', editorWidgetForeground, ( localize(
|
|
293
|
-
|
|
293
|
+
3807,
|
|
294
294
|
"Foreground color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
|
|
295
295
|
)));
|
|
296
296
|
const EDITOR_DROP_INTO_PROMPT_BACKGROUND = registerColor('editorGroup.dropIntoPromptBackground', editorWidgetBackground, ( localize(
|
|
297
|
-
|
|
297
|
+
3808,
|
|
298
298
|
"Background color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
|
|
299
299
|
)));
|
|
300
300
|
const EDITOR_DROP_INTO_PROMPT_BORDER = registerColor('editorGroup.dropIntoPromptBorder', {
|
|
@@ -303,19 +303,19 @@ const EDITOR_DROP_INTO_PROMPT_BORDER = registerColor('editorGroup.dropIntoPrompt
|
|
|
303
303
|
hcDark: contrastBorder,
|
|
304
304
|
hcLight: contrastBorder
|
|
305
305
|
}, ( localize(
|
|
306
|
-
|
|
306
|
+
3809,
|
|
307
307
|
"Border color of text shown over editors when dragging files. This text informs the user that they can hold shift to drop into the editor."
|
|
308
308
|
)));
|
|
309
309
|
const SIDE_BY_SIDE_EDITOR_HORIZONTAL_BORDER = registerColor('sideBySideEditor.horizontalBorder', EDITOR_GROUP_BORDER, ( localize(
|
|
310
|
-
|
|
310
|
+
3810,
|
|
311
311
|
"Color to separate two editors from each other when shown side by side in an editor group from top to bottom."
|
|
312
312
|
)));
|
|
313
313
|
const SIDE_BY_SIDE_EDITOR_VERTICAL_BORDER = registerColor('sideBySideEditor.verticalBorder', EDITOR_GROUP_BORDER, ( localize(
|
|
314
|
-
|
|
314
|
+
3811,
|
|
315
315
|
"Color to separate two editors from each other when shown side by side in an editor group from left to right."
|
|
316
316
|
)));
|
|
317
317
|
const PANEL_BACKGROUND = registerColor('panel.background', editorBackground, ( localize(
|
|
318
|
-
|
|
318
|
+
3812,
|
|
319
319
|
"Panel background color. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
320
320
|
)));
|
|
321
321
|
const PANEL_BORDER = registerColor('panel.border', {
|
|
@@ -324,7 +324,7 @@ const PANEL_BORDER = registerColor('panel.border', {
|
|
|
324
324
|
hcDark: contrastBorder,
|
|
325
325
|
hcLight: contrastBorder
|
|
326
326
|
}, ( localize(
|
|
327
|
-
|
|
327
|
+
3813,
|
|
328
328
|
"Panel border color to separate the panel from the editor. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
329
329
|
)));
|
|
330
330
|
const PANEL_TITLE_BORDER = registerColor('panelTitle.border', {
|
|
@@ -333,7 +333,7 @@ const PANEL_TITLE_BORDER = registerColor('panelTitle.border', {
|
|
|
333
333
|
hcDark: PANEL_BORDER,
|
|
334
334
|
hcLight: PANEL_BORDER
|
|
335
335
|
}, ( localize(
|
|
336
|
-
|
|
336
|
+
3814,
|
|
337
337
|
"Panel title border color on the bottom, separating the title from the views. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
338
338
|
)));
|
|
339
339
|
const PANEL_ACTIVE_TITLE_FOREGROUND = registerColor('panelTitle.activeForeground', {
|
|
@@ -342,7 +342,7 @@ const PANEL_ACTIVE_TITLE_FOREGROUND = registerColor('panelTitle.activeForeground
|
|
|
342
342
|
hcDark: Color.white,
|
|
343
343
|
hcLight: editorForeground
|
|
344
344
|
}, ( localize(
|
|
345
|
-
|
|
345
|
+
3815,
|
|
346
346
|
"Title color for the active panel. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
347
347
|
)));
|
|
348
348
|
const PANEL_INACTIVE_TITLE_FOREGROUND = registerColor('panelTitle.inactiveForeground', {
|
|
@@ -351,7 +351,7 @@ const PANEL_INACTIVE_TITLE_FOREGROUND = registerColor('panelTitle.inactiveForegr
|
|
|
351
351
|
hcDark: Color.white,
|
|
352
352
|
hcLight: editorForeground
|
|
353
353
|
}, ( localize(
|
|
354
|
-
|
|
354
|
+
3816,
|
|
355
355
|
"Title color for the inactive panel. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
356
356
|
)));
|
|
357
357
|
const PANEL_ACTIVE_TITLE_BORDER = registerColor('panelTitle.activeBorder', {
|
|
@@ -360,7 +360,7 @@ const PANEL_ACTIVE_TITLE_BORDER = registerColor('panelTitle.activeBorder', {
|
|
|
360
360
|
hcDark: contrastBorder,
|
|
361
361
|
hcLight: '#B5200D'
|
|
362
362
|
}, ( localize(
|
|
363
|
-
|
|
363
|
+
3817,
|
|
364
364
|
"Border color for the active panel title. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
365
365
|
)));
|
|
366
366
|
registerColor('panelInput.border', {
|
|
@@ -368,13 +368,13 @@ registerColor('panelInput.border', {
|
|
|
368
368
|
light: ( Color.fromHex('#ddd')),
|
|
369
369
|
hcDark: inputBorder,
|
|
370
370
|
hcLight: inputBorder
|
|
371
|
-
}, ( localize(
|
|
371
|
+
}, ( localize(3818, "Input box border for inputs in the panel.")));
|
|
372
372
|
const PANEL_DRAG_AND_DROP_BORDER = registerColor('panel.dropBorder', PANEL_ACTIVE_TITLE_FOREGROUND, ( localize(
|
|
373
|
-
|
|
373
|
+
3819,
|
|
374
374
|
"Drag and drop feedback color for the panel titles. Panels are shown below the editor area and contain views like output and integrated terminal."
|
|
375
375
|
)));
|
|
376
376
|
const PANEL_SECTION_DRAG_AND_DROP_BACKGROUND = registerColor('panelSection.dropBackground', EDITOR_DRAG_AND_DROP_BACKGROUND, ( localize(
|
|
377
|
-
|
|
377
|
+
3820,
|
|
378
378
|
"Drag and drop feedback color for the panel sections. The color should have transparency so that the panel sections can still shine through. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
379
379
|
)));
|
|
380
380
|
const PANEL_SECTION_HEADER_BACKGROUND = registerColor('panelSectionHeader.background', {
|
|
@@ -383,41 +383,41 @@ const PANEL_SECTION_HEADER_BACKGROUND = registerColor('panelSectionHeader.backgr
|
|
|
383
383
|
hcDark: null,
|
|
384
384
|
hcLight: null,
|
|
385
385
|
}, ( localize(
|
|
386
|
-
|
|
386
|
+
3821,
|
|
387
387
|
"Panel section header background color. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
388
388
|
)));
|
|
389
389
|
const PANEL_SECTION_HEADER_FOREGROUND = registerColor('panelSectionHeader.foreground', null, ( localize(
|
|
390
|
-
|
|
390
|
+
3822,
|
|
391
391
|
"Panel section header foreground color. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
392
392
|
)));
|
|
393
393
|
const PANEL_SECTION_HEADER_BORDER = registerColor('panelSectionHeader.border', contrastBorder, ( localize(
|
|
394
|
-
|
|
394
|
+
3823,
|
|
395
395
|
"Panel section header border color used when multiple views are stacked vertically in the panel. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
396
396
|
)));
|
|
397
397
|
const PANEL_SECTION_BORDER = registerColor('panelSection.border', PANEL_BORDER, ( localize(
|
|
398
|
-
|
|
398
|
+
3824,
|
|
399
399
|
"Panel section border color used when multiple views are stacked horizontally in the panel. Panels are shown below the editor area and contain views like output and integrated terminal. Panel sections are views nested within the panels."
|
|
400
400
|
)));
|
|
401
|
-
const PANEL_STICKY_SCROLL_BACKGROUND = registerColor('panelStickyScroll.background', PANEL_BACKGROUND, ( localize(
|
|
402
|
-
const PANEL_STICKY_SCROLL_BORDER = registerColor('panelStickyScroll.border', null, ( localize(
|
|
403
|
-
const PANEL_STICKY_SCROLL_SHADOW = registerColor('panelStickyScroll.shadow', scrollbarShadow, ( localize(
|
|
404
|
-
const OUTPUT_VIEW_BACKGROUND = registerColor('outputView.background', null, ( localize(
|
|
405
|
-
registerColor('outputViewStickyScroll.background', OUTPUT_VIEW_BACKGROUND, ( localize(
|
|
401
|
+
const PANEL_STICKY_SCROLL_BACKGROUND = registerColor('panelStickyScroll.background', PANEL_BACKGROUND, ( localize(3825, "Background color of sticky scroll in the panel.")));
|
|
402
|
+
const PANEL_STICKY_SCROLL_BORDER = registerColor('panelStickyScroll.border', null, ( localize(3826, "Border color of sticky scroll in the panel.")));
|
|
403
|
+
const PANEL_STICKY_SCROLL_SHADOW = registerColor('panelStickyScroll.shadow', scrollbarShadow, ( localize(3827, "Shadow color of sticky scroll in the panel.")));
|
|
404
|
+
const OUTPUT_VIEW_BACKGROUND = registerColor('outputView.background', null, ( localize(3828, "Output view background color.")));
|
|
405
|
+
registerColor('outputViewStickyScroll.background', OUTPUT_VIEW_BACKGROUND, ( localize(3829, "Output view sticky scroll background color.")));
|
|
406
406
|
registerColor('banner.background', {
|
|
407
407
|
dark: listActiveSelectionBackground,
|
|
408
408
|
light: ( darken(listActiveSelectionBackground, 0.3)),
|
|
409
409
|
hcDark: listActiveSelectionBackground,
|
|
410
410
|
hcLight: listActiveSelectionBackground
|
|
411
411
|
}, ( localize(
|
|
412
|
-
|
|
412
|
+
3830,
|
|
413
413
|
"Banner background color. The banner is shown under the title bar of the window."
|
|
414
414
|
)));
|
|
415
415
|
registerColor('banner.foreground', listActiveSelectionForeground, ( localize(
|
|
416
|
-
|
|
416
|
+
3831,
|
|
417
417
|
"Banner foreground color. The banner is shown under the title bar of the window."
|
|
418
418
|
)));
|
|
419
419
|
registerColor('banner.iconForeground', editorInfoForeground, ( localize(
|
|
420
|
-
|
|
420
|
+
3832,
|
|
421
421
|
"Banner icon color. The banner is shown under the title bar of the window."
|
|
422
422
|
)));
|
|
423
423
|
const STATUS_BAR_FOREGROUND = registerColor('statusBar.foreground', {
|
|
@@ -426,11 +426,11 @@ const STATUS_BAR_FOREGROUND = registerColor('statusBar.foreground', {
|
|
|
426
426
|
hcDark: '#FFFFFF',
|
|
427
427
|
hcLight: editorForeground
|
|
428
428
|
}, ( localize(
|
|
429
|
-
|
|
429
|
+
3833,
|
|
430
430
|
"Status bar foreground color when a workspace or folder is opened. The status bar is shown in the bottom of the window."
|
|
431
431
|
)));
|
|
432
432
|
const STATUS_BAR_NO_FOLDER_FOREGROUND = registerColor('statusBar.noFolderForeground', STATUS_BAR_FOREGROUND, ( localize(
|
|
433
|
-
|
|
433
|
+
3834,
|
|
434
434
|
"Status bar foreground color when no folder is opened. The status bar is shown in the bottom of the window."
|
|
435
435
|
)));
|
|
436
436
|
const STATUS_BAR_BACKGROUND = registerColor('statusBar.background', {
|
|
@@ -439,7 +439,7 @@ const STATUS_BAR_BACKGROUND = registerColor('statusBar.background', {
|
|
|
439
439
|
hcDark: null,
|
|
440
440
|
hcLight: null,
|
|
441
441
|
}, ( localize(
|
|
442
|
-
|
|
442
|
+
3835,
|
|
443
443
|
"Status bar background color when a workspace or folder is opened. The status bar is shown in the bottom of the window."
|
|
444
444
|
)));
|
|
445
445
|
const STATUS_BAR_NO_FOLDER_BACKGROUND = registerColor('statusBar.noFolderBackground', {
|
|
@@ -448,7 +448,7 @@ const STATUS_BAR_NO_FOLDER_BACKGROUND = registerColor('statusBar.noFolderBackgro
|
|
|
448
448
|
hcDark: null,
|
|
449
449
|
hcLight: null,
|
|
450
450
|
}, ( localize(
|
|
451
|
-
|
|
451
|
+
3836,
|
|
452
452
|
"Status bar background color when no folder is opened. The status bar is shown in the bottom of the window."
|
|
453
453
|
)));
|
|
454
454
|
const STATUS_BAR_BORDER = registerColor('statusBar.border', {
|
|
@@ -457,7 +457,7 @@ const STATUS_BAR_BORDER = registerColor('statusBar.border', {
|
|
|
457
457
|
hcDark: contrastBorder,
|
|
458
458
|
hcLight: contrastBorder
|
|
459
459
|
}, ( localize(
|
|
460
|
-
|
|
460
|
+
3837,
|
|
461
461
|
"Status bar border color separating to the sidebar and editor. The status bar is shown in the bottom of the window."
|
|
462
462
|
)));
|
|
463
463
|
const STATUS_BAR_FOCUS_BORDER = registerColor('statusBar.focusBorder', {
|
|
@@ -466,11 +466,11 @@ const STATUS_BAR_FOCUS_BORDER = registerColor('statusBar.focusBorder', {
|
|
|
466
466
|
hcDark: null,
|
|
467
467
|
hcLight: STATUS_BAR_FOREGROUND
|
|
468
468
|
}, ( localize(
|
|
469
|
-
|
|
469
|
+
3838,
|
|
470
470
|
"Status bar border color when focused on keyboard navigation. The status bar is shown in the bottom of the window."
|
|
471
471
|
)));
|
|
472
472
|
const STATUS_BAR_NO_FOLDER_BORDER = registerColor('statusBar.noFolderBorder', STATUS_BAR_BORDER, ( localize(
|
|
473
|
-
|
|
473
|
+
3839,
|
|
474
474
|
"Status bar border color separating to the sidebar and editor when no folder is opened. The status bar is shown in the bottom of the window."
|
|
475
475
|
)));
|
|
476
476
|
registerColor('statusBarItem.activeBackground', {
|
|
@@ -479,7 +479,7 @@ registerColor('statusBarItem.activeBackground', {
|
|
|
479
479
|
hcDark: ( Color.white.transparent(0.18)),
|
|
480
480
|
hcLight: ( Color.black.transparent(0.18))
|
|
481
481
|
}, ( localize(
|
|
482
|
-
|
|
482
|
+
3840,
|
|
483
483
|
"Status bar item background color when clicking. The status bar is shown in the bottom of the window."
|
|
484
484
|
)));
|
|
485
485
|
const STATUS_BAR_ITEM_FOCUS_BORDER = registerColor('statusBarItem.focusBorder', {
|
|
@@ -488,7 +488,7 @@ const STATUS_BAR_ITEM_FOCUS_BORDER = registerColor('statusBarItem.focusBorder',
|
|
|
488
488
|
hcDark: null,
|
|
489
489
|
hcLight: activeContrastBorder
|
|
490
490
|
}, ( localize(
|
|
491
|
-
|
|
491
|
+
3841,
|
|
492
492
|
"Status bar item border color when focused on keyboard navigation. The status bar is shown in the bottom of the window."
|
|
493
493
|
)));
|
|
494
494
|
const STATUS_BAR_ITEM_HOVER_BACKGROUND = registerColor('statusBarItem.hoverBackground', {
|
|
@@ -497,11 +497,11 @@ const STATUS_BAR_ITEM_HOVER_BACKGROUND = registerColor('statusBarItem.hoverBackg
|
|
|
497
497
|
hcDark: ( Color.white.transparent(0.12)),
|
|
498
498
|
hcLight: ( Color.black.transparent(0.12))
|
|
499
499
|
}, ( localize(
|
|
500
|
-
|
|
500
|
+
3842,
|
|
501
501
|
"Status bar item background color when hovering. The status bar is shown in the bottom of the window."
|
|
502
502
|
)));
|
|
503
503
|
const STATUS_BAR_ITEM_HOVER_FOREGROUND = registerColor('statusBarItem.hoverForeground', STATUS_BAR_FOREGROUND, ( localize(
|
|
504
|
-
|
|
504
|
+
3843,
|
|
505
505
|
"Status bar item foreground color when hovering. The status bar is shown in the bottom of the window."
|
|
506
506
|
)));
|
|
507
507
|
const STATUS_BAR_ITEM_COMPACT_HOVER_BACKGROUND = registerColor('statusBarItem.compactHoverBackground', {
|
|
@@ -510,28 +510,23 @@ const STATUS_BAR_ITEM_COMPACT_HOVER_BACKGROUND = registerColor('statusBarItem.co
|
|
|
510
510
|
hcDark: ( Color.white.transparent(0.20)),
|
|
511
511
|
hcLight: ( Color.black.transparent(0.20))
|
|
512
512
|
}, ( localize(
|
|
513
|
-
|
|
513
|
+
3844,
|
|
514
514
|
"Status bar item background color when hovering an item that contains two hovers. The status bar is shown in the bottom of the window."
|
|
515
515
|
)));
|
|
516
516
|
registerColor('statusBarItem.prominentForeground', STATUS_BAR_FOREGROUND, ( localize(
|
|
517
|
-
|
|
517
|
+
3845,
|
|
518
518
|
"Status bar prominent items foreground color. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
|
|
519
519
|
)));
|
|
520
520
|
registerColor('statusBarItem.prominentBackground', ( Color.black.transparent(0.5)), ( localize(
|
|
521
|
-
|
|
521
|
+
3846,
|
|
522
522
|
"Status bar prominent items background color. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
|
|
523
523
|
)));
|
|
524
524
|
registerColor('statusBarItem.prominentHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
|
|
525
|
-
|
|
525
|
+
3847,
|
|
526
526
|
"Status bar prominent items foreground color when hovering. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
|
|
527
527
|
)));
|
|
528
|
-
registerColor('statusBarItem.prominentHoverBackground',
|
|
529
|
-
|
|
530
|
-
light: ( Color.black.transparent(0.3)),
|
|
531
|
-
hcDark: ( Color.black.transparent(0.3)),
|
|
532
|
-
hcLight: null
|
|
533
|
-
}, ( localize(
|
|
534
|
-
3802,
|
|
528
|
+
registerColor('statusBarItem.prominentHoverBackground', STATUS_BAR_ITEM_HOVER_BACKGROUND, ( localize(
|
|
529
|
+
3848,
|
|
535
530
|
"Status bar prominent items background color when hovering. Prominent items stand out from other status bar entries to indicate importance. The status bar is shown in the bottom of the window."
|
|
536
531
|
)));
|
|
537
532
|
const STATUS_BAR_ERROR_ITEM_BACKGROUND = registerColor('statusBarItem.errorBackground', {
|
|
@@ -540,19 +535,19 @@ const STATUS_BAR_ERROR_ITEM_BACKGROUND = registerColor('statusBarItem.errorBackg
|
|
|
540
535
|
hcDark: null,
|
|
541
536
|
hcLight: '#B5200D'
|
|
542
537
|
}, ( localize(
|
|
543
|
-
|
|
538
|
+
3849,
|
|
544
539
|
"Status bar error items background color. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
|
|
545
540
|
)));
|
|
546
541
|
registerColor('statusBarItem.errorForeground', Color.white, ( localize(
|
|
547
|
-
|
|
542
|
+
3850,
|
|
548
543
|
"Status bar error items foreground color. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
|
|
549
544
|
)));
|
|
550
545
|
registerColor('statusBarItem.errorHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
|
|
551
|
-
|
|
546
|
+
3851,
|
|
552
547
|
"Status bar error items foreground color when hovering. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
|
|
553
548
|
)));
|
|
554
549
|
registerColor('statusBarItem.errorHoverBackground', STATUS_BAR_ITEM_HOVER_BACKGROUND, ( localize(
|
|
555
|
-
|
|
550
|
+
3852,
|
|
556
551
|
"Status bar error items background color when hovering. Error items stand out from other status bar entries to indicate error conditions. The status bar is shown in the bottom of the window."
|
|
557
552
|
)));
|
|
558
553
|
const STATUS_BAR_WARNING_ITEM_BACKGROUND = registerColor('statusBarItem.warningBackground', {
|
|
@@ -561,19 +556,19 @@ const STATUS_BAR_WARNING_ITEM_BACKGROUND = registerColor('statusBarItem.warningB
|
|
|
561
556
|
hcDark: null,
|
|
562
557
|
hcLight: '#895503'
|
|
563
558
|
}, ( localize(
|
|
564
|
-
|
|
559
|
+
3853,
|
|
565
560
|
"Status bar warning items background color. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
|
|
566
561
|
)));
|
|
567
562
|
registerColor('statusBarItem.warningForeground', Color.white, ( localize(
|
|
568
|
-
|
|
563
|
+
3854,
|
|
569
564
|
"Status bar warning items foreground color. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
|
|
570
565
|
)));
|
|
571
566
|
registerColor('statusBarItem.warningHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
|
|
572
|
-
|
|
567
|
+
3855,
|
|
573
568
|
"Status bar warning items foreground color when hovering. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
|
|
574
569
|
)));
|
|
575
570
|
registerColor('statusBarItem.warningHoverBackground', STATUS_BAR_ITEM_HOVER_BACKGROUND, ( localize(
|
|
576
|
-
|
|
571
|
+
3856,
|
|
577
572
|
"Status bar warning items background color when hovering. Warning items stand out from other status bar entries to indicate warning conditions. The status bar is shown in the bottom of the window."
|
|
578
573
|
)));
|
|
579
574
|
const ACTIVITY_BAR_BACKGROUND = registerColor('activityBar.background', {
|
|
@@ -582,7 +577,7 @@ const ACTIVITY_BAR_BACKGROUND = registerColor('activityBar.background', {
|
|
|
582
577
|
hcDark: '#000000',
|
|
583
578
|
hcLight: '#FFFFFF'
|
|
584
579
|
}, ( localize(
|
|
585
|
-
|
|
580
|
+
3857,
|
|
586
581
|
"Activity bar background color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
587
582
|
)));
|
|
588
583
|
const ACTIVITY_BAR_FOREGROUND = registerColor('activityBar.foreground', {
|
|
@@ -591,7 +586,7 @@ const ACTIVITY_BAR_FOREGROUND = registerColor('activityBar.foreground', {
|
|
|
591
586
|
hcDark: Color.white,
|
|
592
587
|
hcLight: editorForeground
|
|
593
588
|
}, ( localize(
|
|
594
|
-
|
|
589
|
+
3858,
|
|
595
590
|
"Activity bar item foreground color when it is active. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
596
591
|
)));
|
|
597
592
|
const ACTIVITY_BAR_INACTIVE_FOREGROUND = registerColor('activityBar.inactiveForeground', {
|
|
@@ -600,7 +595,7 @@ const ACTIVITY_BAR_INACTIVE_FOREGROUND = registerColor('activityBar.inactiveFore
|
|
|
600
595
|
hcDark: Color.white,
|
|
601
596
|
hcLight: editorForeground
|
|
602
597
|
}, ( localize(
|
|
603
|
-
|
|
598
|
+
3859,
|
|
604
599
|
"Activity bar item foreground color when it is inactive. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
605
600
|
)));
|
|
606
601
|
const ACTIVITY_BAR_BORDER = registerColor('activityBar.border', {
|
|
@@ -609,7 +604,7 @@ const ACTIVITY_BAR_BORDER = registerColor('activityBar.border', {
|
|
|
609
604
|
hcDark: contrastBorder,
|
|
610
605
|
hcLight: contrastBorder
|
|
611
606
|
}, ( localize(
|
|
612
|
-
|
|
607
|
+
3860,
|
|
613
608
|
"Activity bar border color separating to the side bar. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
614
609
|
)));
|
|
615
610
|
const ACTIVITY_BAR_ACTIVE_BORDER = registerColor('activityBar.activeBorder', {
|
|
@@ -618,7 +613,7 @@ const ACTIVITY_BAR_ACTIVE_BORDER = registerColor('activityBar.activeBorder', {
|
|
|
618
613
|
hcDark: contrastBorder,
|
|
619
614
|
hcLight: contrastBorder
|
|
620
615
|
}, ( localize(
|
|
621
|
-
|
|
616
|
+
3861,
|
|
622
617
|
"Activity bar border color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
623
618
|
)));
|
|
624
619
|
const ACTIVITY_BAR_ACTIVE_FOCUS_BORDER = registerColor('activityBar.activeFocusBorder', {
|
|
@@ -627,11 +622,11 @@ const ACTIVITY_BAR_ACTIVE_FOCUS_BORDER = registerColor('activityBar.activeFocusB
|
|
|
627
622
|
hcDark: null,
|
|
628
623
|
hcLight: '#B5200D'
|
|
629
624
|
}, ( localize(
|
|
630
|
-
|
|
625
|
+
3862,
|
|
631
626
|
"Activity bar focus border color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
632
627
|
)));
|
|
633
628
|
const ACTIVITY_BAR_ACTIVE_BACKGROUND = registerColor('activityBar.activeBackground', null, ( localize(
|
|
634
|
-
|
|
629
|
+
3863,
|
|
635
630
|
"Activity bar background color for the active item. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
636
631
|
)));
|
|
637
632
|
const ACTIVITY_BAR_DRAG_AND_DROP_BORDER = registerColor('activityBar.dropBorder', {
|
|
@@ -640,7 +635,7 @@ const ACTIVITY_BAR_DRAG_AND_DROP_BORDER = registerColor('activityBar.dropBorder'
|
|
|
640
635
|
hcDark: null,
|
|
641
636
|
hcLight: null,
|
|
642
637
|
}, ( localize(
|
|
643
|
-
|
|
638
|
+
3864,
|
|
644
639
|
"Drag and drop feedback color for the activity bar items. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
645
640
|
)));
|
|
646
641
|
const ACTIVITY_BAR_BADGE_BACKGROUND = registerColor('activityBarBadge.background', {
|
|
@@ -649,11 +644,11 @@ const ACTIVITY_BAR_BADGE_BACKGROUND = registerColor('activityBarBadge.background
|
|
|
649
644
|
hcDark: '#000000',
|
|
650
645
|
hcLight: '#0F4A85'
|
|
651
646
|
}, ( localize(
|
|
652
|
-
|
|
647
|
+
3865,
|
|
653
648
|
"Activity notification badge background color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
654
649
|
)));
|
|
655
650
|
const ACTIVITY_BAR_BADGE_FOREGROUND = registerColor('activityBarBadge.foreground', Color.white, ( localize(
|
|
656
|
-
|
|
651
|
+
3866,
|
|
657
652
|
"Activity notification badge foreground color. The activity bar is showing on the far left or right and allows to switch between views of the side bar."
|
|
658
653
|
)));
|
|
659
654
|
const ACTIVITY_BAR_TOP_FOREGROUND = registerColor('activityBarTop.foreground', {
|
|
@@ -662,7 +657,7 @@ const ACTIVITY_BAR_TOP_FOREGROUND = registerColor('activityBarTop.foreground', {
|
|
|
662
657
|
hcDark: Color.white,
|
|
663
658
|
hcLight: editorForeground
|
|
664
659
|
}, ( localize(
|
|
665
|
-
|
|
660
|
+
3867,
|
|
666
661
|
"Active foreground color of the item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
667
662
|
)));
|
|
668
663
|
const ACTIVITY_BAR_TOP_ACTIVE_BORDER = registerColor('activityBarTop.activeBorder', {
|
|
@@ -671,11 +666,11 @@ const ACTIVITY_BAR_TOP_ACTIVE_BORDER = registerColor('activityBarTop.activeBorde
|
|
|
671
666
|
hcDark: contrastBorder,
|
|
672
667
|
hcLight: '#B5200D'
|
|
673
668
|
}, ( localize(
|
|
674
|
-
|
|
669
|
+
3868,
|
|
675
670
|
"Focus border color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
676
671
|
)));
|
|
677
672
|
registerColor('activityBarTop.activeBackground', null, ( localize(
|
|
678
|
-
|
|
673
|
+
3869,
|
|
679
674
|
"Background color for the active item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
680
675
|
)));
|
|
681
676
|
const ACTIVITY_BAR_TOP_INACTIVE_FOREGROUND = registerColor('activityBarTop.inactiveForeground', {
|
|
@@ -684,21 +679,21 @@ const ACTIVITY_BAR_TOP_INACTIVE_FOREGROUND = registerColor('activityBarTop.inact
|
|
|
684
679
|
hcDark: Color.white,
|
|
685
680
|
hcLight: editorForeground
|
|
686
681
|
}, ( localize(
|
|
687
|
-
|
|
682
|
+
3870,
|
|
688
683
|
"Inactive foreground color of the item in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
689
684
|
)));
|
|
690
685
|
const ACTIVITY_BAR_TOP_DRAG_AND_DROP_BORDER = registerColor('activityBarTop.dropBorder', ACTIVITY_BAR_TOP_FOREGROUND, ( localize(
|
|
691
|
-
|
|
686
|
+
3871,
|
|
692
687
|
"Drag and drop feedback color for the items in the Activity bar when it is on top / bottom. The activity allows to switch between views of the side bar."
|
|
693
688
|
)));
|
|
694
|
-
registerColor('activityBarTop.background', null, ( localize(
|
|
689
|
+
registerColor('activityBarTop.background', null, ( localize(3872, "Background color of the activity bar when set to top / bottom.")));
|
|
695
690
|
registerColor('profileBadge.background', {
|
|
696
691
|
dark: '#4D4D4D',
|
|
697
692
|
light: '#C4C4C4',
|
|
698
693
|
hcDark: Color.white,
|
|
699
694
|
hcLight: Color.black
|
|
700
695
|
}, ( localize(
|
|
701
|
-
|
|
696
|
+
3873,
|
|
702
697
|
"Profile badge background color. The profile badge shows on top of the settings gear icon in the activity bar."
|
|
703
698
|
)));
|
|
704
699
|
registerColor('profileBadge.foreground', {
|
|
@@ -707,13 +702,13 @@ registerColor('profileBadge.foreground', {
|
|
|
707
702
|
hcDark: Color.black,
|
|
708
703
|
hcLight: Color.white
|
|
709
704
|
}, ( localize(
|
|
710
|
-
|
|
705
|
+
3874,
|
|
711
706
|
"Profile badge foreground color. The profile badge shows on top of the settings gear icon in the activity bar."
|
|
712
707
|
)));
|
|
713
|
-
const STATUS_BAR_REMOTE_ITEM_BACKGROUND = registerColor('statusBarItem.remoteBackground', ACTIVITY_BAR_BADGE_BACKGROUND, ( localize(
|
|
714
|
-
const STATUS_BAR_REMOTE_ITEM_FOREGROUND = registerColor('statusBarItem.remoteForeground', ACTIVITY_BAR_BADGE_FOREGROUND, ( localize(
|
|
708
|
+
const STATUS_BAR_REMOTE_ITEM_BACKGROUND = registerColor('statusBarItem.remoteBackground', ACTIVITY_BAR_BADGE_BACKGROUND, ( localize(3875, "Background color for the remote indicator on the status bar.")));
|
|
709
|
+
const STATUS_BAR_REMOTE_ITEM_FOREGROUND = registerColor('statusBarItem.remoteForeground', ACTIVITY_BAR_BADGE_FOREGROUND, ( localize(3876, "Foreground color for the remote indicator on the status bar.")));
|
|
715
710
|
registerColor('statusBarItem.remoteHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
|
|
716
|
-
|
|
711
|
+
3877,
|
|
717
712
|
"Foreground color for the remote indicator on the status bar when hovering."
|
|
718
713
|
)));
|
|
719
714
|
registerColor('statusBarItem.remoteHoverBackground', {
|
|
@@ -722,13 +717,13 @@ registerColor('statusBarItem.remoteHoverBackground', {
|
|
|
722
717
|
hcDark: STATUS_BAR_ITEM_HOVER_BACKGROUND,
|
|
723
718
|
hcLight: null
|
|
724
719
|
}, ( localize(
|
|
725
|
-
|
|
720
|
+
3878,
|
|
726
721
|
"Background color for the remote indicator on the status bar when hovering."
|
|
727
722
|
)));
|
|
728
|
-
registerColor('statusBarItem.offlineBackground', '#6c1717', ( localize(
|
|
729
|
-
registerColor('statusBarItem.offlineForeground', STATUS_BAR_REMOTE_ITEM_FOREGROUND, ( localize(
|
|
723
|
+
registerColor('statusBarItem.offlineBackground', '#6c1717', ( localize(3879, "Status bar item background color when the workbench is offline.")));
|
|
724
|
+
registerColor('statusBarItem.offlineForeground', STATUS_BAR_REMOTE_ITEM_FOREGROUND, ( localize(3880, "Status bar item foreground color when the workbench is offline.")));
|
|
730
725
|
registerColor('statusBarItem.offlineHoverForeground', STATUS_BAR_ITEM_HOVER_FOREGROUND, ( localize(
|
|
731
|
-
|
|
726
|
+
3881,
|
|
732
727
|
"Status bar item foreground hover color when the workbench is offline."
|
|
733
728
|
)));
|
|
734
729
|
registerColor('statusBarItem.offlineHoverBackground', {
|
|
@@ -737,22 +732,22 @@ registerColor('statusBarItem.offlineHoverBackground', {
|
|
|
737
732
|
hcDark: STATUS_BAR_ITEM_HOVER_BACKGROUND,
|
|
738
733
|
hcLight: null
|
|
739
734
|
}, ( localize(
|
|
740
|
-
|
|
735
|
+
3882,
|
|
741
736
|
"Status bar item background hover color when the workbench is offline."
|
|
742
737
|
)));
|
|
743
|
-
const EXTENSION_BADGE_REMOTE_BACKGROUND = registerColor('extensionBadge.remoteBackground', ACTIVITY_BAR_BADGE_BACKGROUND, ( localize(
|
|
744
|
-
const EXTENSION_BADGE_REMOTE_FOREGROUND = registerColor('extensionBadge.remoteForeground', ACTIVITY_BAR_BADGE_FOREGROUND, ( localize(
|
|
738
|
+
const EXTENSION_BADGE_REMOTE_BACKGROUND = registerColor('extensionBadge.remoteBackground', ACTIVITY_BAR_BADGE_BACKGROUND, ( localize(3883, "Background color for the remote badge in the extensions view.")));
|
|
739
|
+
const EXTENSION_BADGE_REMOTE_FOREGROUND = registerColor('extensionBadge.remoteForeground', ACTIVITY_BAR_BADGE_FOREGROUND, ( localize(3884, "Foreground color for the remote badge in the extensions view.")));
|
|
745
740
|
const SIDE_BAR_BACKGROUND = registerColor('sideBar.background', {
|
|
746
741
|
dark: '#252526',
|
|
747
742
|
light: '#F3F3F3',
|
|
748
743
|
hcDark: '#000000',
|
|
749
744
|
hcLight: '#FFFFFF'
|
|
750
745
|
}, ( localize(
|
|
751
|
-
|
|
746
|
+
3885,
|
|
752
747
|
"Side bar background color. The side bar is the container for views like explorer and search."
|
|
753
748
|
)));
|
|
754
749
|
const SIDE_BAR_FOREGROUND = registerColor('sideBar.foreground', null, ( localize(
|
|
755
|
-
|
|
750
|
+
3886,
|
|
756
751
|
"Side bar foreground color. The side bar is the container for views like explorer and search."
|
|
757
752
|
)));
|
|
758
753
|
const SIDE_BAR_BORDER = registerColor('sideBar.border', {
|
|
@@ -761,15 +756,15 @@ const SIDE_BAR_BORDER = registerColor('sideBar.border', {
|
|
|
761
756
|
hcDark: contrastBorder,
|
|
762
757
|
hcLight: contrastBorder
|
|
763
758
|
}, ( localize(
|
|
764
|
-
|
|
759
|
+
3887,
|
|
765
760
|
"Side bar border color on the side separating to the editor. The side bar is the container for views like explorer and search."
|
|
766
761
|
)));
|
|
767
762
|
registerColor('sideBarTitle.background', SIDE_BAR_BACKGROUND, ( localize(
|
|
768
|
-
|
|
763
|
+
3888,
|
|
769
764
|
"Side bar title background color. The side bar is the container for views like explorer and search."
|
|
770
765
|
)));
|
|
771
766
|
const SIDE_BAR_TITLE_FOREGROUND = registerColor('sideBarTitle.foreground', SIDE_BAR_FOREGROUND, ( localize(
|
|
772
|
-
|
|
767
|
+
3889,
|
|
773
768
|
"Side bar title foreground color. The side bar is the container for views like explorer and search."
|
|
774
769
|
)));
|
|
775
770
|
const SIDE_BAR_TITLE_BORDER = registerColor('sideBarTitle.border', {
|
|
@@ -778,11 +773,11 @@ const SIDE_BAR_TITLE_BORDER = registerColor('sideBarTitle.border', {
|
|
|
778
773
|
hcDark: SIDE_BAR_BORDER,
|
|
779
774
|
hcLight: SIDE_BAR_BORDER
|
|
780
775
|
}, ( localize(
|
|
781
|
-
|
|
776
|
+
3890,
|
|
782
777
|
"Side bar title border color on the bottom, separating the title from the views. The side bar is the container for views like explorer and search."
|
|
783
778
|
)));
|
|
784
779
|
const SIDE_BAR_DRAG_AND_DROP_BACKGROUND = registerColor('sideBar.dropBackground', EDITOR_DRAG_AND_DROP_BACKGROUND, ( localize(
|
|
785
|
-
|
|
780
|
+
3891,
|
|
786
781
|
"Drag and drop feedback color for the side bar sections. The color should have transparency so that the side bar sections can still shine through. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
|
|
787
782
|
)));
|
|
788
783
|
const SIDE_BAR_SECTION_HEADER_BACKGROUND = registerColor('sideBarSectionHeader.background', {
|
|
@@ -791,82 +786,82 @@ const SIDE_BAR_SECTION_HEADER_BACKGROUND = registerColor('sideBarSectionHeader.b
|
|
|
791
786
|
hcDark: null,
|
|
792
787
|
hcLight: null
|
|
793
788
|
}, ( localize(
|
|
794
|
-
|
|
789
|
+
3892,
|
|
795
790
|
"Side bar section header background color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
|
|
796
791
|
)));
|
|
797
792
|
const SIDE_BAR_SECTION_HEADER_FOREGROUND = registerColor('sideBarSectionHeader.foreground', SIDE_BAR_FOREGROUND, ( localize(
|
|
798
|
-
|
|
793
|
+
3893,
|
|
799
794
|
"Side bar section header foreground color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
|
|
800
795
|
)));
|
|
801
796
|
const SIDE_BAR_SECTION_HEADER_BORDER = registerColor('sideBarSectionHeader.border', contrastBorder, ( localize(
|
|
802
|
-
|
|
797
|
+
3894,
|
|
803
798
|
"Side bar section header border color. The side bar is the container for views like explorer and search. Side bar sections are views nested within the side bar."
|
|
804
799
|
)));
|
|
805
800
|
registerColor('sideBarActivityBarTop.border', SIDE_BAR_SECTION_HEADER_BORDER, ( localize(
|
|
806
|
-
|
|
801
|
+
3895,
|
|
807
802
|
"Border color between the activity bar at the top/bottom and the views."
|
|
808
803
|
)));
|
|
809
|
-
const SIDE_BAR_STICKY_SCROLL_BACKGROUND = registerColor('sideBarStickyScroll.background', SIDE_BAR_BACKGROUND, ( localize(
|
|
810
|
-
const SIDE_BAR_STICKY_SCROLL_BORDER = registerColor('sideBarStickyScroll.border', null, ( localize(
|
|
811
|
-
const SIDE_BAR_STICKY_SCROLL_SHADOW = registerColor('sideBarStickyScroll.shadow', scrollbarShadow, ( localize(
|
|
804
|
+
const SIDE_BAR_STICKY_SCROLL_BACKGROUND = registerColor('sideBarStickyScroll.background', SIDE_BAR_BACKGROUND, ( localize(3896, "Background color of sticky scroll in the side bar.")));
|
|
805
|
+
const SIDE_BAR_STICKY_SCROLL_BORDER = registerColor('sideBarStickyScroll.border', null, ( localize(3897, "Border color of sticky scroll in the side bar.")));
|
|
806
|
+
const SIDE_BAR_STICKY_SCROLL_SHADOW = registerColor('sideBarStickyScroll.shadow', scrollbarShadow, ( localize(3898, "Shadow color of sticky scroll in the side bar.")));
|
|
812
807
|
const TITLE_BAR_ACTIVE_FOREGROUND = registerColor('titleBar.activeForeground', {
|
|
813
808
|
dark: '#CCCCCC',
|
|
814
809
|
light: '#333333',
|
|
815
810
|
hcDark: '#FFFFFF',
|
|
816
811
|
hcLight: '#292929'
|
|
817
|
-
}, ( localize(
|
|
812
|
+
}, ( localize(3899, "Title bar foreground when the window is active.")));
|
|
818
813
|
const TITLE_BAR_INACTIVE_FOREGROUND = registerColor('titleBar.inactiveForeground', {
|
|
819
814
|
dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, 0.6)),
|
|
820
815
|
light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, 0.6)),
|
|
821
816
|
hcDark: null,
|
|
822
817
|
hcLight: '#292929'
|
|
823
|
-
}, ( localize(
|
|
818
|
+
}, ( localize(3900, "Title bar foreground when the window is inactive.")));
|
|
824
819
|
const TITLE_BAR_ACTIVE_BACKGROUND = registerColor('titleBar.activeBackground', {
|
|
825
820
|
dark: '#3C3C3C',
|
|
826
821
|
light: '#DDDDDD',
|
|
827
822
|
hcDark: '#000000',
|
|
828
823
|
hcLight: '#FFFFFF'
|
|
829
|
-
}, ( localize(
|
|
824
|
+
}, ( localize(3901, "Title bar background when the window is active.")));
|
|
830
825
|
const TITLE_BAR_INACTIVE_BACKGROUND = registerColor('titleBar.inactiveBackground', {
|
|
831
826
|
dark: ( transparent(TITLE_BAR_ACTIVE_BACKGROUND, 0.6)),
|
|
832
827
|
light: ( transparent(TITLE_BAR_ACTIVE_BACKGROUND, 0.6)),
|
|
833
828
|
hcDark: null,
|
|
834
829
|
hcLight: null,
|
|
835
|
-
}, ( localize(
|
|
830
|
+
}, ( localize(3902, "Title bar background when the window is inactive.")));
|
|
836
831
|
const TITLE_BAR_BORDER = registerColor('titleBar.border', {
|
|
837
832
|
dark: null,
|
|
838
833
|
light: null,
|
|
839
834
|
hcDark: contrastBorder,
|
|
840
835
|
hcLight: contrastBorder
|
|
841
|
-
}, ( localize(
|
|
842
|
-
const MENUBAR_SELECTION_FOREGROUND = registerColor('menubar.selectionForeground', TITLE_BAR_ACTIVE_FOREGROUND, ( localize(
|
|
836
|
+
}, ( localize(3903, "Title bar border color.")));
|
|
837
|
+
const MENUBAR_SELECTION_FOREGROUND = registerColor('menubar.selectionForeground', TITLE_BAR_ACTIVE_FOREGROUND, ( localize(3904, "Foreground color of the selected menu item in the menubar.")));
|
|
843
838
|
const MENUBAR_SELECTION_BACKGROUND = registerColor('menubar.selectionBackground', {
|
|
844
839
|
dark: toolbarHoverBackground,
|
|
845
840
|
light: toolbarHoverBackground,
|
|
846
841
|
hcDark: null,
|
|
847
842
|
hcLight: null,
|
|
848
|
-
}, ( localize(
|
|
843
|
+
}, ( localize(3905, "Background color of the selected menu item in the menubar.")));
|
|
849
844
|
registerColor('menubar.selectionBorder', {
|
|
850
845
|
dark: null,
|
|
851
846
|
light: null,
|
|
852
847
|
hcDark: activeContrastBorder,
|
|
853
848
|
hcLight: activeContrastBorder,
|
|
854
|
-
}, ( localize(
|
|
855
|
-
registerColor('commandCenter.foreground', TITLE_BAR_ACTIVE_FOREGROUND, ( localize(
|
|
856
|
-
registerColor('commandCenter.activeForeground', MENUBAR_SELECTION_FOREGROUND, ( localize(
|
|
857
|
-
registerColor('commandCenter.inactiveForeground', TITLE_BAR_INACTIVE_FOREGROUND, ( localize(
|
|
858
|
-
const COMMAND_CENTER_BACKGROUND = registerColor('commandCenter.background', { dark: ( Color.white.transparent(0.05)), hcDark: null, light: ( Color.black.transparent(0.05)), hcLight: null }, ( localize(
|
|
859
|
-
registerColor('commandCenter.activeBackground', { dark: ( Color.white.transparent(0.08)), hcDark: MENUBAR_SELECTION_BACKGROUND, light: ( Color.black.transparent(0.08)), hcLight: MENUBAR_SELECTION_BACKGROUND }, ( localize(
|
|
860
|
-
registerColor('commandCenter.border', { dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)), hcDark: contrastBorder, light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)), hcLight: contrastBorder }, ( localize(
|
|
861
|
-
registerColor('commandCenter.activeBorder', { dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)), hcDark: TITLE_BAR_ACTIVE_FOREGROUND, light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)), hcLight: TITLE_BAR_ACTIVE_FOREGROUND }, ( localize(
|
|
862
|
-
registerColor('commandCenter.inactiveBorder', ( transparent(TITLE_BAR_INACTIVE_FOREGROUND, .25)), ( localize(
|
|
849
|
+
}, ( localize(3906, "Border color of the selected menu item in the menubar.")));
|
|
850
|
+
registerColor('commandCenter.foreground', TITLE_BAR_ACTIVE_FOREGROUND, ( localize(3907, "Foreground color of the command center")), false);
|
|
851
|
+
registerColor('commandCenter.activeForeground', MENUBAR_SELECTION_FOREGROUND, ( localize(3908, "Active foreground color of the command center")), false);
|
|
852
|
+
registerColor('commandCenter.inactiveForeground', TITLE_BAR_INACTIVE_FOREGROUND, ( localize(3909, "Foreground color of the command center when the window is inactive")), false);
|
|
853
|
+
const COMMAND_CENTER_BACKGROUND = registerColor('commandCenter.background', { dark: ( Color.white.transparent(0.05)), hcDark: null, light: ( Color.black.transparent(0.05)), hcLight: null }, ( localize(3910, "Background color of the command center")), false);
|
|
854
|
+
registerColor('commandCenter.activeBackground', { dark: ( Color.white.transparent(0.08)), hcDark: MENUBAR_SELECTION_BACKGROUND, light: ( Color.black.transparent(0.08)), hcLight: MENUBAR_SELECTION_BACKGROUND }, ( localize(3911, "Active background color of the command center")), false);
|
|
855
|
+
registerColor('commandCenter.border', { dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)), hcDark: contrastBorder, light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .20)), hcLight: contrastBorder }, ( localize(3912, "Border color of the command center")), false);
|
|
856
|
+
registerColor('commandCenter.activeBorder', { dark: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)), hcDark: TITLE_BAR_ACTIVE_FOREGROUND, light: ( transparent(TITLE_BAR_ACTIVE_FOREGROUND, .30)), hcLight: TITLE_BAR_ACTIVE_FOREGROUND }, ( localize(3913, "Active border color of the command center")), false);
|
|
857
|
+
registerColor('commandCenter.inactiveBorder', ( transparent(TITLE_BAR_INACTIVE_FOREGROUND, .25)), ( localize(3914, "Border color of the command center when the window is inactive")), false);
|
|
863
858
|
const NOTIFICATIONS_CENTER_BORDER = registerColor('notificationCenter.border', {
|
|
864
859
|
dark: widgetBorder,
|
|
865
860
|
light: widgetBorder,
|
|
866
861
|
hcDark: contrastBorder,
|
|
867
862
|
hcLight: contrastBorder
|
|
868
863
|
}, ( localize(
|
|
869
|
-
|
|
864
|
+
3915,
|
|
870
865
|
"Notifications center border color. Notifications slide in from the bottom right of the window."
|
|
871
866
|
)));
|
|
872
867
|
const NOTIFICATIONS_TOAST_BORDER = registerColor('notificationToast.border', {
|
|
@@ -875,23 +870,23 @@ const NOTIFICATIONS_TOAST_BORDER = registerColor('notificationToast.border', {
|
|
|
875
870
|
hcDark: contrastBorder,
|
|
876
871
|
hcLight: contrastBorder
|
|
877
872
|
}, ( localize(
|
|
878
|
-
|
|
873
|
+
3916,
|
|
879
874
|
"Notification toast border color. Notifications slide in from the bottom right of the window."
|
|
880
875
|
)));
|
|
881
876
|
registerColor('notifications.foreground', editorWidgetForeground, ( localize(
|
|
882
|
-
|
|
877
|
+
3917,
|
|
883
878
|
"Notifications foreground color. Notifications slide in from the bottom right of the window."
|
|
884
879
|
)));
|
|
885
880
|
const NOTIFICATIONS_BACKGROUND = registerColor('notifications.background', editorWidgetBackground, ( localize(
|
|
886
|
-
|
|
881
|
+
3918,
|
|
887
882
|
"Notifications background color. Notifications slide in from the bottom right of the window."
|
|
888
883
|
)));
|
|
889
884
|
registerColor('notificationLink.foreground', textLinkForeground, ( localize(
|
|
890
|
-
|
|
885
|
+
3919,
|
|
891
886
|
"Notification links foreground color. Notifications slide in from the bottom right of the window."
|
|
892
887
|
)));
|
|
893
888
|
const NOTIFICATIONS_CENTER_HEADER_FOREGROUND = registerColor('notificationCenterHeader.foreground', null, ( localize(
|
|
894
|
-
|
|
889
|
+
3920,
|
|
895
890
|
"Notifications center header foreground color. Notifications slide in from the bottom right of the window."
|
|
896
891
|
)));
|
|
897
892
|
const NOTIFICATIONS_CENTER_HEADER_BACKGROUND = registerColor('notificationCenterHeader.background', {
|
|
@@ -900,23 +895,23 @@ const NOTIFICATIONS_CENTER_HEADER_BACKGROUND = registerColor('notificationCenter
|
|
|
900
895
|
hcDark: NOTIFICATIONS_BACKGROUND,
|
|
901
896
|
hcLight: NOTIFICATIONS_BACKGROUND
|
|
902
897
|
}, ( localize(
|
|
903
|
-
|
|
898
|
+
3921,
|
|
904
899
|
"Notifications center header background color. Notifications slide in from the bottom right of the window."
|
|
905
900
|
)));
|
|
906
901
|
registerColor('notifications.border', NOTIFICATIONS_CENTER_HEADER_BACKGROUND, ( localize(
|
|
907
|
-
|
|
902
|
+
3922,
|
|
908
903
|
"Notifications border color separating from other notifications in the notifications center. Notifications slide in from the bottom right of the window."
|
|
909
904
|
)));
|
|
910
905
|
registerColor('notificationsErrorIcon.foreground', editorErrorForeground, ( localize(
|
|
911
|
-
|
|
906
|
+
3923,
|
|
912
907
|
"The color used for the icon of error notifications. Notifications slide in from the bottom right of the window."
|
|
913
908
|
)));
|
|
914
909
|
registerColor('notificationsWarningIcon.foreground', editorWarningForeground, ( localize(
|
|
915
|
-
|
|
910
|
+
3924,
|
|
916
911
|
"The color used for the icon of warning notifications. Notifications slide in from the bottom right of the window."
|
|
917
912
|
)));
|
|
918
913
|
registerColor('notificationsInfoIcon.foreground', editorInfoForeground, ( localize(
|
|
919
|
-
|
|
914
|
+
3925,
|
|
920
915
|
"The color used for the icon of info notifications. Notifications slide in from the bottom right of the window."
|
|
921
916
|
)));
|
|
922
917
|
const WINDOW_ACTIVE_BORDER = registerColor('window.activeBorder', {
|
|
@@ -925,7 +920,7 @@ const WINDOW_ACTIVE_BORDER = registerColor('window.activeBorder', {
|
|
|
925
920
|
hcDark: contrastBorder,
|
|
926
921
|
hcLight: contrastBorder
|
|
927
922
|
}, ( localize(
|
|
928
|
-
|
|
923
|
+
3926,
|
|
929
924
|
"The color used for the border of the window when it is active. Only supported in the macOS and Linux desktop client when using the custom title bar."
|
|
930
925
|
)));
|
|
931
926
|
const WINDOW_INACTIVE_BORDER = registerColor('window.inactiveBorder', {
|
|
@@ -934,7 +929,7 @@ const WINDOW_INACTIVE_BORDER = registerColor('window.inactiveBorder', {
|
|
|
934
929
|
hcDark: contrastBorder,
|
|
935
930
|
hcLight: contrastBorder
|
|
936
931
|
}, ( localize(
|
|
937
|
-
|
|
932
|
+
3927,
|
|
938
933
|
"The color used for the border of the window when it is inactive. Only supported in the macOS and Linux desktop client when using the custom title bar."
|
|
939
934
|
)));
|
|
940
935
|
|