@codingame/monaco-vscode-api 24.2.0 → 25.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/debugProtocol.d.ts +1 -1
- package/missing-services.js +30 -34
- package/package.json +8 -8
- package/services.d.ts +16 -16
- package/services.js +19 -19
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/dom.js +14 -2
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +3 -1
- package/vscode/src/vs/base/browser/ui/button/button.js +16 -8
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +3 -8
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.d.ts +5 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.js +6 -1
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.d.ts +3 -0
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +17 -1
- package/vscode/src/vs/base/browser/ui/list/list.css +1 -0
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +12 -2
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +15 -4
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +1 -0
- package/vscode/src/vs/base/common/actions.d.ts +1 -1
- package/vscode/src/vs/base/common/actions.js +1 -1
- package/vscode/src/vs/base/common/codicons.d.ts +5 -2
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +5 -2
- package/vscode/src/vs/base/common/codiconsLibrary.js +5 -2
- package/vscode/src/vs/base/common/date.js +14 -22
- package/vscode/src/vs/base/common/equals.d.ts +46 -15
- package/vscode/src/vs/base/common/equals.js +51 -24
- package/vscode/src/vs/base/common/errorMessage.js +6 -6
- package/vscode/src/vs/base/common/event.d.ts +12 -2
- package/vscode/src/vs/base/common/event.js +4 -4
- package/vscode/src/vs/base/common/fuzzyScorer.d.ts +1 -1
- package/vscode/src/vs/base/common/fuzzyScorer.js +2 -2
- package/vscode/src/vs/base/common/jsonErrorMessages.js +9 -9
- package/vscode/src/vs/base/common/keybindingLabels.js +20 -20
- package/vscode/src/vs/base/common/marshallingIds.d.ts +1 -1
- package/vscode/src/vs/base/common/marshallingIds.js +1 -1
- package/vscode/src/vs/base/common/oauth.d.ts +12 -4
- package/vscode/src/vs/base/common/oauth.js +63 -60
- package/vscode/src/vs/base/common/observableInternal/base.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/changeTracker.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/experimental/utils.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/index.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.d.ts +1 -0
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +2 -0
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.js +17 -1
- package/vscode/src/vs/base/common/observableInternal/utils/runOnChange.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/utils/utils.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/utils/utilsCancellation.js +1 -1
- package/vscode/src/vs/base/common/observableInternal/utils/valueWithChangeEvent.js +1 -1
- package/vscode/src/vs/base/common/strings.js +2 -1
- package/vscode/src/vs/base/parts/ipc/common/ipc.js +1 -0
- package/vscode/src/vs/editor/browser/controller/dragScrolling.js +2 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.d.ts +1 -2
- package/vscode/src/vs/editor/browser/controller/editContext/screenReaderUtils.js +4 -4
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContextState.js +16 -2
- package/vscode/src/vs/editor/browser/controller/mouseHandler.js +5 -2
- package/vscode/src/vs/editor/browser/coreCommands.js +5 -4
- package/vscode/src/vs/editor/browser/editorExtensions.js +9 -9
- package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.d.ts +4 -0
- package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.js +7 -1
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.d.ts +13 -1
- package/vscode/src/vs/editor/browser/gpu/css/decorationStyleCache.js +7 -4
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.js +13 -3
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/fullFileRenderStrategy.js +36 -1
- package/vscode/src/vs/editor/browser/gpu/renderStrategy/viewportRenderStrategy.js +36 -1
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +29 -3
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +8 -0
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +24 -15
- package/vscode/src/vs/editor/browser/services/editorWorkerService.js +7 -2
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +4 -4
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -12
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +14 -14
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin.js +7 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditor.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +7 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +4 -4
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/revertButtonsFeature.js +2 -2
- package/vscode/src/vs/editor/browser/widget/diffEditor/registrations.contribution.js +5 -5
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils/editorGutter.js +7 -6
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/colors.js +3 -3
- package/vscode/src/vs/editor/browser/widget/multiDiffEditor/multiDiffEditorWidgetImpl.js +2 -2
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +61 -56
- package/vscode/src/vs/editor/common/config/editorOptions.js +410 -410
- package/vscode/src/vs/editor/common/config/fontInfo.d.ts +1 -1
- package/vscode/src/vs/editor/common/config/fontInfo.js +1 -1
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +72 -72
- package/vscode/src/vs/editor/common/core/range.d.ts +3 -0
- package/vscode/src/vs/editor/common/cursor/cursorTypeEditOperations.js +3 -3
- package/vscode/src/vs/editor/common/cursor/cursorWordOperations.d.ts +1 -1
- package/vscode/src/vs/editor/common/cursor/cursorWordOperations.js +6 -3
- package/vscode/src/vs/editor/common/editorContextKeys.js +47 -47
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +5 -5
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages/nullTokenize.js +1 -1
- package/vscode/src/vs/editor/common/languages/supports/tokenization.d.ts +3 -0
- package/vscode/src/vs/editor/common/languages/supports/tokenization.js +29 -1
- package/vscode/src/vs/editor/common/languages.d.ts +17 -3
- package/vscode/src/vs/editor/common/languages.js +58 -57
- package/vscode/src/vs/editor/common/model/decorationProvider.d.ts +15 -2
- package/vscode/src/vs/editor/common/model/decorationProvider.js +25 -0
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/indentationGuesser.js +2 -2
- package/vscode/src/vs/editor/common/model/textModel.d.ts +10 -7
- package/vscode/src/vs/editor/common/model/textModel.js +44 -30
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.d.ts +4 -1
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +5 -3
- package/vscode/src/vs/editor/common/model/tokens/annotations.d.ts +85 -0
- package/vscode/src/vs/editor/common/model/tokens/annotations.js +180 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizationFontDecorationsProvider.d.ts +24 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizationFontDecorationsProvider.js +126 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.d.ts +3 -1
- package/vscode/src/vs/editor/common/model/tokens/tokenizationTextModelPart.js +9 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.d.ts +1 -0
- package/vscode/src/vs/editor/common/model/tokens/tokenizerSyntaxTokenBackend.js +9 -0
- package/vscode/src/vs/editor/common/standaloneStrings.d.ts +1 -0
- package/vscode/src/vs/editor/common/standaloneStrings.js +53 -48
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +37 -0
- package/vscode/src/vs/editor/common/textModelEvents.js +19 -1
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +4 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +21 -14
- package/vscode/src/vs/editor/common/viewModel.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +17 -27
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/defaultDocumentColorProvider.js +4 -5
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +26 -26
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +20 -20
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +15 -15
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/vscode/src/vs/editor/contrib/hover/browser/hoverCopyButton.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +11 -11
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +1 -0
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +21 -21
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +13 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +24 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +4 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/renameSymbolProcessor.js +57 -32
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/telemetry.d.ts +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +24 -22
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +44 -23
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +17 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +6 -17
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +7 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +7 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +13 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +15 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +25 -18
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/inlineEditsLongDistanceHint.js +62 -91
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistnaceWidgetPlacement.d.ts +54 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/longDistanceHint/longDistnaceWidgetPlacement.js +105 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.js +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.d.ts +3 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +42 -22
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +13 -5
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +35 -35
- package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/linesOperations/browser/moveLinesCommand.js +29 -78
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +31 -36
- package/vscode/src/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/sectionHeaders/browser/sectionHeaders.js +3 -2
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetParser.js +33 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +13 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +4 -3
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +120 -125
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +9 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +56 -28
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +24 -19
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +21 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetStatus.d.ts +8 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetStatus.js +11 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +24 -24
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +6 -9
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +20 -3
- package/vscode/src/vs/editor/standalone/browser/standaloneThemeService.js +3 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +63 -64
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +4 -4
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +11 -8
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +1 -6
- package/vscode/src/vs/platform/actions/common/actions.js +1 -3
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/dialogs/browser/dialog.js +1 -1
- package/vscode/src/vs/platform/dialogs/common/dialogs.js +9 -9
- package/vscode/src/vs/platform/dnd/browser/dnd.d.ts +22 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +15 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +19 -19
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +10 -8
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +0 -6
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +0 -6
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.d.ts +12 -1
- package/vscode/src/vs/platform/files/common/files.js +7 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/hover/browser/hoverWidget.js +1 -1
- package/vscode/src/vs/platform/hover/browser/updatableHoverWidget.js +1 -1
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.js +1 -1
- package/vscode/src/vs/platform/languagePacks/common/localizedStrings.js +3 -3
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.js +6 -6
- package/vscode/src/vs/platform/markers/common/markerService.js +6 -6
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +1 -1
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +46 -8
- package/vscode/src/vs/platform/quickinput/browser/quickInput.d.ts +13 -13
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +81 -78
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +14 -5
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +13 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +3 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +59 -27
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.d.ts +3 -2
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +44 -47
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +3 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.d.ts +4 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +65 -9
- package/vscode/src/vs/platform/quickinput/browser/quickPickPin.js +2 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +3 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +8 -8
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +7 -4
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +20 -14
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +4 -5
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +29 -28
- package/vscode/src/vs/platform/request/common/request.js +20 -20
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.d.ts +9 -1
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +11 -6
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +2 -1
- package/vscode/src/vs/platform/terminal/common/terminal.js +1 -0
- package/vscode/src/vs/platform/terminal/common/terminalPlatformConfiguration.js +32 -32
- package/vscode/src/vs/platform/terminal/common/terminalProcess.d.ts +0 -5
- package/vscode/src/vs/platform/terminal/common/terminalProfiles.js +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.d.ts +1 -0
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +18 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +47 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +12 -12
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +16 -16
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +9 -0
- package/vscode/src/vs/platform/theme/common/tokenClassificationRegistry.js +42 -42
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +21 -21
- package/vscode/src/vs/{workbench/contrib → platform}/url/common/trustedDomains.d.ts +1 -1
- package/vscode/src/vs/{workbench/contrib → platform}/url/common/trustedDomains.js +3 -2
- package/vscode/src/vs/{workbench/contrib → platform}/url/common/urlGlob.d.ts +1 -1
- package/vscode/src/vs/{workbench/contrib → platform}/url/common/urlGlob.js +1 -1
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/abstractJsonSynchronizer.js +3 -0
- package/vscode/src/vs/platform/userDataSync/common/abstractSynchronizer.js +2 -2
- package/vscode/src/vs/platform/userDataSync/common/keybindingsSync.js +2 -2
- package/vscode/src/vs/platform/userDataSync/common/settingsSync.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSyncMachines.js +1 -1
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.d.ts +4 -0
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +32 -18
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +13 -1
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +5 -5
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +4 -4
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +9 -6
- package/vscode/src/vs/workbench/api/common/extHostChatContext.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +1 -5
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +8 -29
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostCodeMapper.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +5 -2
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +47 -21
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +4 -4
- package/vscode/src/vs/workbench/api/common/extHostOutput.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostOutput.js +40 -25
- package/vscode/src/vs/workbench/api/common/extHostQuickOpen.js +2 -20
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +7 -3
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +2 -3
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +16 -3
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +6 -6
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +3 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +1 -0
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +2 -7
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.js +6 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
- package/vscode/src/vs/workbench/browser/actions/layoutActions.js +139 -136
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/actions/windowActions.js +29 -29
- package/vscode/src/vs/workbench/browser/actions/workspaceActions.js +21 -21
- package/vscode/src/vs/workbench/browser/actions/workspaceCommands.js +4 -4
- package/vscode/src/vs/workbench/browser/dnd.js +9 -0
- package/vscode/src/vs/workbench/browser/editor.js +2 -2
- package/vscode/src/vs/workbench/browser/labels.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/activitybar/activitybarPart.js +20 -20
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarActions.js +25 -25
- package/vscode/src/vs/workbench/browser/parts/auxiliarybar/auxiliaryBarPart.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/compositeBar.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/compositeBarActions.js +9 -9
- package/vscode/src/vs/workbench/browser/parts/compositePart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/auxiliaryEditorPart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/binaryDiffEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/binaryEditor.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.d.ts +3 -0
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.js +48 -41
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsControl.js +57 -10
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsModel.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbsPicker.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/diffEditorCommands.js +7 -7
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.d.ts +6 -0
- package/vscode/src/vs/workbench/browser/parts/editor/editorActions.js +158 -138
- package/vscode/src/vs/workbench/browser/parts/editor/editorCommands.js +35 -22
- package/vscode/src/vs/workbench/browser/parts/editor/editorDropTarget.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupView.js +8 -8
- package/vscode/src/vs/workbench/browser/parts/editor/editorGroupWatermark.js +12 -12
- package/vscode/src/vs/workbench/browser/parts/editor/editorPanes.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/editor/editorParts.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/editorPlaceholder.js +10 -10
- package/vscode/src/vs/workbench/browser/parts/editor/editorQuickAccess.js +5 -5
- package/vscode/src/vs/workbench/browser/parts/editor/editorStatus.js +66 -66
- package/vscode/src/vs/workbench/browser/parts/editor/editorTabsControl.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/editor/multiEditorTabsControl.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/sideBySideEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/textCodeEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/editor/textDiffEditor.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/editor/textEditor.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/globalCompositeBar.js +19 -19
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsActions.js +17 -17
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsAlerts.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCenter.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsCommands.js +9 -9
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsList.js +6 -6
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsStatus.js +13 -13
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsToasts.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/notifications/notificationsViewer.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/paneCompositeBar.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/paneCompositePart.js +3 -3
- package/vscode/src/vs/workbench/browser/parts/panel/panelActions.js +33 -33
- package/vscode/src/vs/workbench/browser/parts/panel/panelPart.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarActions.js +2 -2
- package/vscode/src/vs/workbench/browser/parts/sidebar/sidebarPart.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/titlebar/menubarControl.js +18 -18
- package/vscode/src/vs/workbench/browser/parts/titlebar/titlebarActions.js +14 -14
- package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/parts/titlebar/windowTitle.js +4 -2
- package/vscode/src/vs/workbench/browser/parts/views/checkbox.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/views/media/views.css +7 -6
- package/vscode/src/vs/workbench/browser/parts/views/treeView.js +18 -18
- package/vscode/src/vs/workbench/browser/parts/views/viewFilter.js +1 -1
- package/vscode/src/vs/workbench/browser/parts/views/viewPane.js +4 -4
- package/vscode/src/vs/workbench/browser/parts/views/viewPaneContainer.js +6 -6
- package/vscode/src/vs/workbench/browser/quickaccess.d.ts +1 -1
- package/vscode/src/vs/workbench/browser/quickaccess.js +9 -9
- package/vscode/src/vs/workbench/browser/window.js +16 -16
- package/vscode/src/vs/workbench/browser/workbench.contribution.js +251 -238
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.js +73 -73
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +7 -0
- package/vscode/src/vs/workbench/common/editor/editorInput.js +3 -0
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +160 -160
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +160 -160
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/accessibility/browser/editorAccessibilityHelp.js +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatActions.js +68 -652
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessions.js +14 -27
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.d.ts +33 -17
- package/vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.js +39 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatAttachmentResolveService.service.d.ts → attachments/chatAttachmentResolveService.service.d.ts} +8 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatAttachmentResolveService.service.js → attachments/chatAttachmentResolveService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.d.ts → attachments/chatContextPickService.d.ts} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.js → attachments/chatContextPickService.js} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.service.d.ts → attachments/chatContextPickService.service.d.ts} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextPickService.service.js → attachments/chatContextPickService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → attachments}/chatDynamicVariables.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → attachments}/chatDynamicVariables.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{contrib/screenshot.d.ts → attachments/chatScreenshotContext.d.ts} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{contrib/screenshot.js → attachments/chatScreenshotContext.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.d.ts +15 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +11 -7
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +10 -10
- package/vscode/src/vs/workbench/contrib/chat/browser/contextContrib/chatContextService.service.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContextService.service.js → contextContrib/chatContextService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileRewriter.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/promptSyntax/promptFileRewriter.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatContentParts.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatMarkdownAnchorService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatContentParts → widget/chatContentParts}/chatMarkdownAnchorService.service.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatEditorInput.d.ts → widgetHosts/editor/chatEditorInput.d.ts} +17 -24
- package/vscode/src/vs/workbench/contrib/chat/browser/{chatEditorInput.js → widgetHosts/editor/chatEditorInput.js} +44 -105
- package/vscode/src/vs/workbench/contrib/chat/common/{chatActions.d.ts → actions/chatActions.d.ts} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{chatActions.js → actions/chatActions.js} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{chatContextKeys.d.ts → actions/chatContextKeys.d.ts} +11 -10
- package/vscode/src/vs/workbench/contrib/chat/common/{chatContextKeys.js → actions/chatContextKeys.js} +81 -73
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariableEntries.d.ts → attachments/chatVariableEntries.d.ts} +9 -9
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariableEntries.js → attachments/chatVariableEntries.js} +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.d.ts → attachments/chatVariables.d.ts} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.service.d.ts → attachments/chatVariables.service.d.ts} +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/{chatVariables.service.js → attachments/chatVariables.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chat.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chat.js +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{chatService.d.ts → chatService/chatService.d.ts} +31 -41
- package/vscode/src/vs/workbench/contrib/chat/common/{chatService.js → chatService/chatService.js} +16 -8
- package/vscode/src/vs/workbench/contrib/chat/common/{chatService.service.d.ts → chatService/chatService.service.d.ts} +14 -15
- package/vscode/src/vs/workbench/contrib/chat/common/chatService/chatService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +6 -10
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +4 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +5 -10
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +0 -4
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +1 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{chatContext.d.ts → contextContrib/chatContext.d.ts} +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/{chatCodeMapperService.service.d.ts → editing/chatCodeMapperService.service.d.ts} +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{chatCodeMapperService.service.js → editing/chatCodeMapperService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.d.ts → editing/chatEditingService.d.ts} +15 -15
- package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.js → editing/chatEditingService.js} +11 -11
- package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.service.d.ts → editing/chatEditingService.service.d.ts} +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/{chatEditingService.service.js → editing/chatEditingService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelStats.js +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +9 -9
- package/vscode/src/vs/workbench/contrib/chat/common/{chatModel.d.ts → model/chatModel.d.ts} +36 -26
- package/vscode/src/vs/workbench/contrib/chat/common/{chatModel.js → model/chatModel.js} +82 -64
- package/vscode/src/vs/workbench/contrib/chat/{browser → common/model/chatProgressTypes}/chatElicitationRequestPart.d.ts +7 -7
- package/vscode/src/vs/workbench/contrib/chat/{browser → common/model/chatProgressTypes}/chatElicitationRequestPart.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/model/chatTransferService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/common/{chatTransferService.service.js → model/chatTransferService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatUri.d.ts → model/chatUri.d.ts} +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatUri.js → model/chatUri.js} +8 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{chatViewModel.d.ts → model/chatViewModel.d.ts} +15 -14
- package/vscode/src/vs/workbench/contrib/chat/common/{chatViewModel.js → model/chatViewModel.js} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/{chatWordCounter.js → model/chatWordCounter.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.d.ts → participants/chatAgents.d.ts} +19 -19
- package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.js → participants/chatAgents.js} +27 -24
- package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.service.d.ts → participants/chatAgents.service.d.ts} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/{chatAgents.service.js → participants/chatAgents.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatParticipantContribTypes.d.ts → participants/chatParticipantContribTypes.d.ts} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatSlashCommands.service.d.ts → participants/chatSlashCommands.service.d.ts} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/{chatSlashCommands.service.js → participants/chatSlashCommands.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.d.ts +48 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/computeAutomaticInstructions.js +376 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/config.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.d.ts +26 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/config/promptFileLocations.js +9 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.service.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{chatParserTypes.d.ts → requestParser/chatParserTypes.d.ts} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/{chatParserTypes.js → requestParser/chatParserTypes.js} +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/{chatRequestParser.d.ts → requestParser/chatRequestParser.d.ts} +7 -7
- package/vscode/src/vs/workbench/contrib/chat/common/{chatRequestParser.js → requestParser/chatRequestParser.js} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{confirmationTool.d.ts → builtinTools/confirmationTool.d.ts} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{confirmationTool.js → builtinTools/confirmationTool.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{editFileTool.d.ts → builtinTools/editFileTool.d.ts} +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{editFileTool.js → builtinTools/editFileTool.js} +10 -10
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{manageTodoListTool.d.ts → builtinTools/manageTodoListTool.d.ts} +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{manageTodoListTool.js → builtinTools/manageTodoListTool.js} +20 -20
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{runSubagentTool.d.ts → builtinTools/runSubagentTool.d.ts} +14 -11
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{runSubagentTool.js → builtinTools/runSubagentTool.js} +41 -20
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{tools.d.ts → builtinTools/tools.d.ts} +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/{tools.js → builtinTools/tools.js} +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/tools/chatTodoListService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/common/{chatTodoListService.service.js → tools/chatTodoListService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.d.ts → tools/languageModelToolsConfirmationService.d.ts} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.service.d.ts → tools/languageModelToolsConfirmationService.service.d.ts} +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsConfirmationService.service.js → tools/languageModelToolsConfirmationService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.d.ts → tools/languageModelToolsService.d.ts} +20 -16
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.js → tools/languageModelToolsService.js} +13 -13
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.service.d.ts → tools/languageModelToolsService.service.d.ts} +8 -8
- package/vscode/src/vs/workbench/contrib/chat/common/{languageModelToolsService.service.js → tools/languageModelToolsService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{annotations.d.ts → widget/annotations.d.ts} +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/{annotations.js → widget/annotations.js} +9 -8
- package/vscode/src/vs/workbench/contrib/chat/common/widget/chatLayoutService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/chat/common/{chatLayoutService.service.js → widget/chatLayoutService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/{chatWidgetHistoryService.service.d.ts → widget/chatWidgetHistoryService.service.d.ts} +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/{chatWidgetHistoryService.service.js → widget/chatWidgetHistoryService.service.js} +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/widget/input/modelPickerWidget.js +6 -0
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/find/simpleFindWidget.js +10 -10
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/inspectEditorTokens/inspectEditorTokens.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/quickaccess/gotoSymbolQuickAccess.js +6 -6
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentColors.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentGlyphWidget.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentNode.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentReply.js +4 -4
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadBody.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadHeader.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentThreadZoneWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsController.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsTreeViewer.js +9 -9
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsViewActions.js +16 -16
- package/vscode/src/vs/workbench/contrib/comments/browser/reactionsAction.js +7 -7
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/customEditor/browser/customEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/baseDebugView.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointEditorContribution.js +30 -30
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointWidget.js +14 -14
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.d.ts +20 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/breakpointsView.js +524 -146
- package/vscode/src/vs/workbench/contrib/debug/browser/callStackEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugActionViewItems.js +6 -6
- package/vscode/src/vs/workbench/contrib/debug/browser/debugColors.js +12 -12
- package/vscode/src/vs/workbench/contrib/debug/browser/debugCommands.js +39 -39
- package/vscode/src/vs/workbench/contrib/debug/browser/debugEditorContribution.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/browser/debugHover.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/debugIcons.js +57 -57
- package/vscode/src/vs/workbench/contrib/debug/browser/debugSessionPicker.js +3 -3
- package/vscode/src/vs/workbench/contrib/debug/browser/exceptionWidget.js +4 -4
- package/vscode/src/vs/workbench/contrib/debug/browser/linkDetector.js +12 -10
- package/vscode/src/vs/workbench/contrib/debug/browser/repl.js +18 -18
- package/vscode/src/vs/workbench/contrib/debug/browser/replViewer.js +5 -5
- package/vscode/src/vs/workbench/contrib/debug/browser/variablesView.js +9 -9
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +65 -65
- package/vscode/src/vs/workbench/contrib/debug/common/debug.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debugModel.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debugModel.js +30 -13
- package/vscode/src/vs/workbench/contrib/debug/common/debugSource.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/disassemblyViewInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/debug/common/loadedScriptsPicker.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/replModel.js +1 -1
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/commands.js +2 -2
- package/vscode/src/vs/workbench/contrib/dropOrPasteInto/browser/configurationSchema.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/abstractRuntimeExtensionsEditor.js +18 -18
- package/vscode/src/vs/workbench/contrib/extensions/browser/configBasedRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/exeBasedRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEditor.js +93 -81
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionEnablementWorkspaceTrustTransitionParticipant.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionFeaturesTab.js +15 -15
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionRecommendationNotificationService.js +15 -15
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensions.contribution.js +154 -153
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.d.ts +0 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActions.js +182 -183
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsActivationProgress.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsCompletionItemsProvider.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsDependencyChecker.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsIcons.js +24 -24
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsQuickAccess.js +4 -4
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewer.js +7 -7
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViewlet.js +53 -50
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsViews.js +11 -18
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWidgets.js +36 -31
- package/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.js +76 -76
- package/vscode/src/vs/workbench/contrib/extensions/browser/fileBasedRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionActions.css +31 -12
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionEditor.css +32 -31
- package/vscode/src/vs/workbench/contrib/extensions/browser/media/extensionsWidgets.css +15 -0
- package/vscode/src/vs/workbench/contrib/extensions/browser/webRecommendations.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/browser/workspaceRecommendations.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionQuery.js +9 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsFileTemplate.js +5 -5
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/extensionsUtils.js +3 -3
- package/vscode/src/vs/workbench/contrib/extensions/common/runtimeExtensionsInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +4 -4
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/configuration.js +4 -4
- package/vscode/src/vs/workbench/contrib/externalUriOpener/common/externalUriOpenerService.js +5 -5
- package/vscode/src/vs/workbench/contrib/files/browser/editors/binaryFileEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/files/browser/editors/textFileSaveErrorHandler.js +18 -18
- package/vscode/src/vs/workbench/contrib/files/browser/explorerViewlet.js +14 -14
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.contribution.js +39 -39
- package/vscode/src/vs/workbench/contrib/files/browser/fileActions.js +90 -90
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands._save.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/fileCommands.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/fileImportExport.js +32 -32
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._configuration.js +56 -53
- package/vscode/src/vs/workbench/contrib/files/browser/files.contribution._editorPane.js +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/views/emptyView.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerDecorationsProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerView.js +22 -10
- package/vscode/src/vs/workbench/contrib/files/browser/views/explorerViewer.js +26 -24
- package/vscode/src/vs/workbench/contrib/files/browser/views/openEditorsView.js +7 -7
- package/vscode/src/vs/workbench/contrib/files/browser/workspaceWatcher.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/common/dirtyFilesIndicator.js +1 -1
- package/vscode/src/vs/workbench/contrib/files/common/files.js +16 -16
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -20
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/interactive/browser/replInputHintContentWidget.js +4 -4
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/browser/mcpCommandsAddConfiguration.js +48 -48
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfiguration.js +31 -31
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +4 -4
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypesUtils.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/mergeEditorInputModel.js +31 -40
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/model/mergeEditorModel.js +2 -2
- package/vscode/src/vs/workbench/contrib/mergeEditor/browser/view/conflictActions.js +21 -21
- package/vscode/src/vs/workbench/contrib/mergeEditor/common/mergeEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/icons.contribution.js +1 -1
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffEditorInput.js +3 -3
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/scmMultiDiffSourceResolver.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/cellStatusBar/executionStatusBarItemController.js +7 -7
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindReplaceWidget.js +17 -17
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/find/notebookFindWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/cellOutputActions.js +6 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/coreActions.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/controller/foldingController.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/diff/inlineDiff/notebookOriginalModelRefFactory.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/media/notebookCellChat.css +1 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookAccessibilityProvider.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookBrowser.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookCellLayoutManager.js +3 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditor.js +8 -8
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookEditorWidget.js +24 -24
- package/vscode/src/vs/workbench/contrib/notebook/browser/notebookIcons.js +29 -29
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellEditorOptions.js +5 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/cellOutput.js +8 -8
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCell.js +57 -12
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellExecutionIcon.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/codeCellRunToolbar.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/collapsedCellOutput.js +3 -3
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/foldedCellHint.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/cellParts/markupCell.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/backLayerWebView.js +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/cellRenderer.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/view/renderers/webviewPreloads.js +5 -9
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookEditorStickyScroll.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookEditorToolbar.js +1 -0
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelQuickPickStrategy.js +15 -15
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookKernelView.js +2 -2
- package/vscode/src/vs/workbench/contrib/notebook/browser/viewParts/notebookViewZones.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookEditorInput.js +2 -2
- package/vscode/src/vs/workbench/contrib/preferences/browser/keybindingWidgets.js +3 -3
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesIcons.js +14 -14
- package/vscode/src/vs/workbench/contrib/preferences/browser/preferencesWidgets.js +10 -10
- package/vscode/src/vs/workbench/contrib/preferences/browser/settingsLayout.js +50 -50
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.js +5 -5
- package/vscode/src/vs/workbench/contrib/preferences/common/settingsEditorColorRegistry.js +21 -21
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteExplorer.js +15 -15
- package/vscode/src/vs/workbench/contrib/remote/browser/remoteIcons.js +17 -17
- package/vscode/src/vs/workbench/contrib/remote/browser/tunnelView.js +60 -60
- package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/replNotebook/browser/replEditorInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistory.js +15 -15
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/browser/scmHistoryChatContext.js +9 -9
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.js +14 -14
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.js +2 -1
- package/vscode/src/vs/workbench/contrib/scm/common/scm.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/search/browser/anythingQuickAccess.js +10 -10
- package/vscode/src/vs/workbench/contrib/search/browser/patternInputWidget.js +3 -3
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsBase.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsFind.js +12 -12
- package/vscode/src/vs/workbench/contrib/search/browser/searchActionsTopBar.js +9 -9
- package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchChatContext.js +7 -7
- package/vscode/src/vs/workbench/contrib/search/browser/searchFindInput.js +1 -1
- package/vscode/src/vs/workbench/contrib/search/browser/searchIcons.js +20 -20
- package/vscode/src/vs/workbench/contrib/search/browser/searchMessage.js +2 -2
- package/vscode/src/vs/workbench/contrib/search/browser/searchResultsView.js +14 -14
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/search/browser/searchView.js +69 -59
- package/vscode/src/vs/workbench/contrib/search/browser/searchWidget.js +8 -8
- package/vscode/src/vs/workbench/contrib/search/browser/symbolsQuickAccess.js +2 -2
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorInput.js +4 -4
- package/vscode/src/vs/workbench/contrib/searchEditor/browser/searchEditorSerialization.js +5 -5
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.js +6 -6
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/detachedTerminal.js +3 -1
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +10 -2
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +19 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalEditorInput.js +7 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalIcons.js +13 -13
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminalMenus.js +51 -45
- package/vscode/src/vs/workbench/contrib/terminal/browser/xterm/decorationStyles.js +15 -15
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.js +9 -9
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalColorRegistry.js +23 -23
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalContextKey.js +19 -18
- package/vscode/src/vs/workbench/contrib/terminal/common/terminalStrings.js +26 -26
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.d.ts +4 -0
- package/vscode/src/vs/workbench/contrib/terminal/terminalContribExports.js +7 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/accessibility/common/terminalAccessibilityConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/autoReplies/common/terminalAutoRepliesConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/common/terminalChatAgentToolsConfiguration.js +93 -48
- package/vscode/src/vs/workbench/contrib/terminalContrib/commandGuide/common/terminalCommandGuideConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/history/common/terminal.history.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/{chat → inlineHint}/common/terminalInitialHintConfiguration.js +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/stickyScroll/common/terminalStickyScrollConfiguration.js +2 -2
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminal.suggest.d.ts +6 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminal.suggest.js +5 -0
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.d.ts +13 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/common/terminalSuggestConfiguration.js +79 -73
- package/vscode/src/vs/workbench/contrib/terminalContrib/typeAhead/common/terminalTypeAheadConfiguration.js +7 -7
- package/vscode/src/vs/workbench/contrib/terminalContrib/zoom/common/terminal.zoom.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testResult.js +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.js +4 -1
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomains.js +46 -13
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditor.js +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInput.d.ts +7 -6
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewEditorInput.js +4 -0
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +3 -3
- package/vscode/src/vs/workbench/contrib/workspace/common/workspace.js +2 -2
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +1 -1
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +29 -28
- package/vscode/src/vs/workbench/services/aiSettingsSearch/common/aiSettingsSearch.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationService.js +15 -15
- package/vscode/src/vs/workbench/services/auxiliaryWindow/browser/auxiliaryWindowService.js +5 -5
- package/vscode/src/vs/workbench/services/chat/common/chatEntitlementService.js +13 -12
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverSchema.js +16 -16
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverUtils.js +1 -1
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionsIcons.js +3 -3
- package/vscode/src/vs/workbench/services/extensionRecommendations/common/workspaceExtensionsConfig.js +6 -6
- package/vscode/src/vs/workbench/services/extensions/browser/extensionUrlHandler.js +10 -10
- package/vscode/src/vs/workbench/services/extensions/common/extensionHostProtocol.d.ts +7 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +86 -86
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.js +5 -5
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/{contrib/logs → services/log}/common/defaultLogLevels.service.d.ts +4 -7
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/outline/browser/outline.d.ts +5 -1
- package/vscode/src/vs/workbench/services/output/common/output.d.ts +2 -0
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorInput.js +2 -2
- package/vscode/src/vs/workbench/services/preferences/browser/keybindingsEditorModel.js +7 -7
- package/vscode/src/vs/workbench/services/preferences/common/preferences.d.ts +1 -0
- package/vscode/src/vs/workbench/services/preferences/common/preferences.js +2 -1
- package/vscode/src/vs/workbench/services/preferences/common/preferencesEditorInput.js +4 -4
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/textMate/common/TMGrammars.js +9 -9
- package/vscode/src/vs/workbench/services/textfile/common/textFileEditorModel.js +8 -5
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/colorThemeData.d.ts +13 -1
- package/vscode/src/vs/workbench/services/themes/common/colorThemeData.js +63 -10
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/themes/common/workbenchThemeService.d.ts +3 -0
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfile.js +3 -3
- package/vscode/src/vs/workbench/services/userDataProfile/common/userDataProfileIcons.js +1 -1
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -13
- package/vscode/src/vs/workbench/services/views/browser/viewsService.js +9 -9
- package/vscode/src/vs/workbench/services/workingCopy/common/storedFileWorkingCopy.js +22 -19
- package/vscode-dts/vscode.d.ts +33 -14
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +13 -20
- package/vscode-dts/vscode.proposed.d.ts +0 -2
- package/vscode-dts/vscode.proposed.interactive.d.ts +1 -1
- package/vscode-dts/vscode.proposed.scmProviderOptions.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.d.ts +0 -3
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.js +0 -25
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCloseNotification.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCloseNotification.js +0 -38
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContextService.service.d.ts +0 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.service.d.ts +0 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.d.ts +0 -10
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +0 -7
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +0 -6
- package/vscode/src/vs/workbench/contrib/localHistory/browser/localHistory.d.ts +0 -9
- package/vscode/src/vs/workbench/contrib/localHistory/browser/localHistory.js +0 -25
- package/vscode-dts/vscode.proposed.quickPickItemResource.d.ts +0 -22
- package/vscode-dts/vscode.proposed.quickPickPrompt.d.ts +0 -27
- /package/vscode/src/vs/workbench/contrib/chat/browser/{imageUtils.d.ts → chatImageUtils.d.ts} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/browser/{imageUtils.js → chatImageUtils.js} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → widget/input/editor}/chatDynamicVariablesConstant.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/browser/{contrib → widget/input/editor}/chatDynamicVariablesConstant.js +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/{chatWordCounter.d.ts → model/chatWordCounter.d.ts} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/{chatParticipantContribTypes.js → participants/chatParticipantContribTypes.js} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/tools/{toolHelpers.d.ts → builtinTools/toolHelpers.d.ts} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/tools/{toolHelpers.js → builtinTools/toolHelpers.js} +0 -0
- /package/vscode/src/vs/workbench/contrib/chat/common/{modelPicker → widget/input}/modelPickerWidget.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/terminalContrib/{chat → inlineHint}/common/terminalInitialHintConfiguration.d.ts +0 -0
- /package/vscode/src/vs/workbench/{contrib/logs → services/log}/common/defaultLogLevels.service.js +0 -0
|
@@ -276,14 +276,14 @@ class EditorAccessibilitySupport extends BaseEditorOption {
|
|
|
276
276
|
type: 'string',
|
|
277
277
|
enum: ['auto', 'on', 'off'],
|
|
278
278
|
enumDescriptions: [
|
|
279
|
-
( localize(
|
|
280
|
-
( localize(
|
|
281
|
-
( localize(
|
|
279
|
+
( localize(267, "Use platform APIs to detect when a Screen Reader is attached.")),
|
|
280
|
+
( localize(268, "Optimize for usage with a Screen Reader.")),
|
|
281
|
+
( localize(269, "Assume a screen reader is not attached.")),
|
|
282
282
|
],
|
|
283
283
|
default: 'auto',
|
|
284
284
|
tags: ['accessibility'],
|
|
285
285
|
description: ( localize(
|
|
286
|
-
|
|
286
|
+
270,
|
|
287
287
|
"Controls if the UI should run in a mode where it is optimized for screen readers."
|
|
288
288
|
))
|
|
289
289
|
});
|
|
@@ -313,13 +313,13 @@ class EditorComments extends BaseEditorOption {
|
|
|
313
313
|
'editor.comments.insertSpace': {
|
|
314
314
|
type: 'boolean',
|
|
315
315
|
default: defaults.insertSpace,
|
|
316
|
-
description: ( localize(
|
|
316
|
+
description: ( localize(271, "Controls whether a space character is inserted when commenting."))
|
|
317
317
|
},
|
|
318
318
|
'editor.comments.ignoreEmptyLines': {
|
|
319
319
|
type: 'boolean',
|
|
320
320
|
default: defaults.ignoreEmptyLines,
|
|
321
321
|
description: ( localize(
|
|
322
|
-
|
|
322
|
+
272,
|
|
323
323
|
'Controls if empty lines should be ignored with toggle, add or remove actions for line comments.'
|
|
324
324
|
))
|
|
325
325
|
},
|
|
@@ -413,7 +413,7 @@ class EditorClassName extends ComputedEditorOption {
|
|
|
413
413
|
class EditorEmptySelectionClipboard extends EditorBooleanOption {
|
|
414
414
|
constructor() {
|
|
415
415
|
super(EditorOption.emptySelectionClipboard, 'emptySelectionClipboard', true, { description: ( localize(
|
|
416
|
-
|
|
416
|
+
273,
|
|
417
417
|
"Controls whether copying without a selection copies the current line."
|
|
418
418
|
)) });
|
|
419
419
|
}
|
|
@@ -439,7 +439,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
439
439
|
type: 'boolean',
|
|
440
440
|
default: defaults.cursorMoveOnType,
|
|
441
441
|
description: ( localize(
|
|
442
|
-
|
|
442
|
+
274,
|
|
443
443
|
"Controls whether the cursor should jump to find matches while typing."
|
|
444
444
|
))
|
|
445
445
|
},
|
|
@@ -448,15 +448,15 @@ class EditorFind extends BaseEditorOption {
|
|
|
448
448
|
enum: ['never', 'always', 'selection'],
|
|
449
449
|
default: defaults.seedSearchStringFromSelection,
|
|
450
450
|
enumDescriptions: [
|
|
451
|
-
( localize(
|
|
451
|
+
( localize(275, 'Never seed search string from the editor selection.')),
|
|
452
452
|
( localize(
|
|
453
|
-
|
|
453
|
+
276,
|
|
454
454
|
'Always seed search string from the editor selection, including word at cursor position.'
|
|
455
455
|
)),
|
|
456
|
-
( localize(
|
|
456
|
+
( localize(277, 'Only seed search string from the editor selection.'))
|
|
457
457
|
],
|
|
458
458
|
description: ( localize(
|
|
459
|
-
|
|
459
|
+
278,
|
|
460
460
|
"Controls whether the search string in the Find Widget is seeded from the editor selection."
|
|
461
461
|
))
|
|
462
462
|
},
|
|
@@ -465,15 +465,15 @@ class EditorFind extends BaseEditorOption {
|
|
|
465
465
|
enum: ['never', 'always', 'multiline'],
|
|
466
466
|
default: defaults.autoFindInSelection,
|
|
467
467
|
enumDescriptions: [
|
|
468
|
-
( localize(
|
|
469
|
-
( localize(
|
|
468
|
+
( localize(279, 'Never turn on Find in Selection automatically (default).')),
|
|
469
|
+
( localize(280, 'Always turn on Find in Selection automatically.')),
|
|
470
470
|
( localize(
|
|
471
|
-
|
|
471
|
+
281,
|
|
472
472
|
'Turn on Find in Selection automatically when multiple lines of content are selected.'
|
|
473
473
|
))
|
|
474
474
|
],
|
|
475
475
|
description: ( localize(
|
|
476
|
-
|
|
476
|
+
282,
|
|
477
477
|
"Controls the condition for turning on Find in Selection automatically."
|
|
478
478
|
))
|
|
479
479
|
},
|
|
@@ -481,7 +481,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
481
481
|
type: 'boolean',
|
|
482
482
|
default: defaults.globalFindClipboard,
|
|
483
483
|
description: ( localize(
|
|
484
|
-
|
|
484
|
+
283,
|
|
485
485
|
"Controls whether the Find Widget should read or modify the shared find clipboard on macOS."
|
|
486
486
|
)),
|
|
487
487
|
included: isMacintosh
|
|
@@ -490,7 +490,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
490
490
|
type: 'boolean',
|
|
491
491
|
default: defaults.addExtraSpaceOnTop,
|
|
492
492
|
description: ( localize(
|
|
493
|
-
|
|
493
|
+
284,
|
|
494
494
|
"Controls whether the Find Widget should add extra lines on top of the editor. When true, you can scroll beyond the first line when the Find Widget is visible."
|
|
495
495
|
))
|
|
496
496
|
},
|
|
@@ -498,7 +498,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
498
498
|
type: 'boolean',
|
|
499
499
|
default: defaults.loop,
|
|
500
500
|
description: ( localize(
|
|
501
|
-
|
|
501
|
+
285,
|
|
502
502
|
"Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found."
|
|
503
503
|
))
|
|
504
504
|
},
|
|
@@ -507,25 +507,25 @@ class EditorFind extends BaseEditorOption {
|
|
|
507
507
|
enum: ['never', 'workspace'],
|
|
508
508
|
default: 'workspace',
|
|
509
509
|
enumDescriptions: [
|
|
510
|
-
( localize(
|
|
511
|
-
( localize(
|
|
510
|
+
( localize(286, 'Do not store search history from the find widget.')),
|
|
511
|
+
( localize(287, 'Store search history across the active workspace')),
|
|
512
512
|
],
|
|
513
|
-
description: ( localize(
|
|
513
|
+
description: ( localize(288, "Controls how the find widget history should be stored"))
|
|
514
514
|
},
|
|
515
515
|
'editor.find.replaceHistory': {
|
|
516
516
|
type: 'string',
|
|
517
517
|
enum: ['never', 'workspace'],
|
|
518
518
|
default: 'workspace',
|
|
519
519
|
enumDescriptions: [
|
|
520
|
-
( localize(
|
|
521
|
-
( localize(
|
|
520
|
+
( localize(289, 'Do not store history from the replace widget.')),
|
|
521
|
+
( localize(290, 'Store replace history across the active workspace')),
|
|
522
522
|
],
|
|
523
|
-
description: ( localize(
|
|
523
|
+
description: ( localize(291, "Controls how the replace widget history should be stored"))
|
|
524
524
|
},
|
|
525
525
|
'editor.find.findOnType': {
|
|
526
526
|
type: 'boolean',
|
|
527
527
|
default: defaults.findOnType,
|
|
528
|
-
description: ( localize(
|
|
528
|
+
description: ( localize(292, "Controls whether the Find Widget should search as you type."))
|
|
529
529
|
},
|
|
530
530
|
});
|
|
531
531
|
}
|
|
@@ -560,20 +560,20 @@ class EditorFontLigatures extends BaseEditorOption {
|
|
|
560
560
|
{
|
|
561
561
|
type: 'boolean',
|
|
562
562
|
description: ( localize(
|
|
563
|
-
|
|
563
|
+
293,
|
|
564
564
|
"Enables/Disables font ligatures ('calt' and 'liga' font features). Change this to a string for fine-grained control of the 'font-feature-settings' CSS property."
|
|
565
565
|
)),
|
|
566
566
|
},
|
|
567
567
|
{
|
|
568
568
|
type: 'string',
|
|
569
569
|
description: ( localize(
|
|
570
|
-
|
|
570
|
+
294,
|
|
571
571
|
"Explicit 'font-feature-settings' CSS property. A boolean can be passed instead if one only needs to turn on/off ligatures."
|
|
572
572
|
))
|
|
573
573
|
}
|
|
574
574
|
],
|
|
575
575
|
description: ( localize(
|
|
576
|
-
|
|
576
|
+
295,
|
|
577
577
|
"Configures font ligatures or font features. Can be either a boolean to enable/disable ligatures or a string for the value of the CSS 'font-feature-settings' property."
|
|
578
578
|
)),
|
|
579
579
|
default: false
|
|
@@ -607,20 +607,20 @@ class EditorFontVariations extends BaseEditorOption {
|
|
|
607
607
|
{
|
|
608
608
|
type: 'boolean',
|
|
609
609
|
description: ( localize(
|
|
610
|
-
|
|
610
|
+
296,
|
|
611
611
|
"Enables/Disables the translation from font-weight to font-variation-settings. Change this to a string for fine-grained control of the 'font-variation-settings' CSS property."
|
|
612
612
|
)),
|
|
613
613
|
},
|
|
614
614
|
{
|
|
615
615
|
type: 'string',
|
|
616
616
|
description: ( localize(
|
|
617
|
-
|
|
617
|
+
297,
|
|
618
618
|
"Explicit 'font-variation-settings' CSS property. A boolean can be passed instead if one only needs to translate font-weight to font-variation-settings."
|
|
619
619
|
))
|
|
620
620
|
}
|
|
621
621
|
],
|
|
622
622
|
description: ( localize(
|
|
623
|
-
|
|
623
|
+
298,
|
|
624
624
|
"Configures font variations. Can be either a boolean to enable/disable the translation from font-weight to font-variation-settings or a string for the value of the CSS 'font-variation-settings' property."
|
|
625
625
|
)),
|
|
626
626
|
default: false
|
|
@@ -712,7 +712,7 @@ class EditorFontSize extends SimpleEditorOption {
|
|
|
712
712
|
minimum: 6,
|
|
713
713
|
maximum: 100,
|
|
714
714
|
default: EDITOR_FONT_DEFAULTS.fontSize,
|
|
715
|
-
description: ( localize(
|
|
715
|
+
description: ( localize(299, "Controls the font size in pixels."))
|
|
716
716
|
});
|
|
717
717
|
}
|
|
718
718
|
validate(input) {
|
|
@@ -738,7 +738,7 @@ class EditorFontWeight extends BaseEditorOption {
|
|
|
738
738
|
minimum: EditorFontWeight.MINIMUM_VALUE,
|
|
739
739
|
maximum: EditorFontWeight.MAXIMUM_VALUE,
|
|
740
740
|
errorMessage: ( localize(
|
|
741
|
-
|
|
741
|
+
300,
|
|
742
742
|
"Only \"normal\" and \"bold\" keywords or numbers between 1 and 1000 are allowed."
|
|
743
743
|
))
|
|
744
744
|
},
|
|
@@ -752,7 +752,7 @@ class EditorFontWeight extends BaseEditorOption {
|
|
|
752
752
|
],
|
|
753
753
|
default: EDITOR_FONT_DEFAULTS.fontWeight,
|
|
754
754
|
description: ( localize(
|
|
755
|
-
|
|
755
|
+
301,
|
|
756
756
|
"Controls the font weight. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."
|
|
757
757
|
))
|
|
758
758
|
});
|
|
@@ -786,50 +786,50 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
786
786
|
enum: ['peek', 'gotoAndPeek', 'goto'],
|
|
787
787
|
default: defaults.multiple,
|
|
788
788
|
enumDescriptions: [
|
|
789
|
-
( localize(
|
|
790
|
-
( localize(
|
|
791
|
-
( localize(
|
|
789
|
+
( localize(302, 'Show Peek view of the results (default)')),
|
|
790
|
+
( localize(303, 'Go to the primary result and show a Peek view')),
|
|
791
|
+
( localize(304, 'Go to the primary result and enable Peek-less navigation to others'))
|
|
792
792
|
]
|
|
793
793
|
};
|
|
794
794
|
const alternativeCommandOptions = ['', 'editor.action.referenceSearch.trigger', 'editor.action.goToReferences', 'editor.action.peekImplementation', 'editor.action.goToImplementation', 'editor.action.peekTypeDefinition', 'editor.action.goToTypeDefinition', 'editor.action.peekDeclaration', 'editor.action.revealDeclaration', 'editor.action.peekDefinition', 'editor.action.revealDefinitionAside', 'editor.action.revealDefinition'];
|
|
795
795
|
super(EditorOption.gotoLocation, 'gotoLocation', defaults, {
|
|
796
796
|
'editor.gotoLocation.multiple': {
|
|
797
797
|
deprecationMessage: ( localize(
|
|
798
|
-
|
|
798
|
+
305,
|
|
799
799
|
"This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead."
|
|
800
800
|
)),
|
|
801
801
|
},
|
|
802
802
|
'editor.gotoLocation.multipleDefinitions': {
|
|
803
803
|
description: ( localize(
|
|
804
|
-
|
|
804
|
+
306,
|
|
805
805
|
"Controls the behavior the 'Go to Definition'-command when multiple target locations exist."
|
|
806
806
|
)),
|
|
807
807
|
...jsonSubset,
|
|
808
808
|
},
|
|
809
809
|
'editor.gotoLocation.multipleTypeDefinitions': {
|
|
810
810
|
description: ( localize(
|
|
811
|
-
|
|
811
|
+
307,
|
|
812
812
|
"Controls the behavior the 'Go to Type Definition'-command when multiple target locations exist."
|
|
813
813
|
)),
|
|
814
814
|
...jsonSubset,
|
|
815
815
|
},
|
|
816
816
|
'editor.gotoLocation.multipleDeclarations': {
|
|
817
817
|
description: ( localize(
|
|
818
|
-
|
|
818
|
+
308,
|
|
819
819
|
"Controls the behavior the 'Go to Declaration'-command when multiple target locations exist."
|
|
820
820
|
)),
|
|
821
821
|
...jsonSubset,
|
|
822
822
|
},
|
|
823
823
|
'editor.gotoLocation.multipleImplementations': {
|
|
824
824
|
description: ( localize(
|
|
825
|
-
|
|
825
|
+
309,
|
|
826
826
|
"Controls the behavior the 'Go to Implementations'-command when multiple target locations exist."
|
|
827
827
|
)),
|
|
828
828
|
...jsonSubset,
|
|
829
829
|
},
|
|
830
830
|
'editor.gotoLocation.multipleReferences': {
|
|
831
831
|
description: ( localize(
|
|
832
|
-
|
|
832
|
+
310,
|
|
833
833
|
"Controls the behavior the 'Go to References'-command when multiple target locations exist."
|
|
834
834
|
)),
|
|
835
835
|
...jsonSubset,
|
|
@@ -839,7 +839,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
839
839
|
default: defaults.alternativeDefinitionCommand,
|
|
840
840
|
enum: alternativeCommandOptions,
|
|
841
841
|
description: ( localize(
|
|
842
|
-
|
|
842
|
+
311,
|
|
843
843
|
"Alternative command id that is being executed when the result of 'Go to Definition' is the current location."
|
|
844
844
|
))
|
|
845
845
|
},
|
|
@@ -848,7 +848,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
848
848
|
default: defaults.alternativeTypeDefinitionCommand,
|
|
849
849
|
enum: alternativeCommandOptions,
|
|
850
850
|
description: ( localize(
|
|
851
|
-
|
|
851
|
+
312,
|
|
852
852
|
"Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location."
|
|
853
853
|
))
|
|
854
854
|
},
|
|
@@ -857,7 +857,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
857
857
|
default: defaults.alternativeDeclarationCommand,
|
|
858
858
|
enum: alternativeCommandOptions,
|
|
859
859
|
description: ( localize(
|
|
860
|
-
|
|
860
|
+
313,
|
|
861
861
|
"Alternative command id that is being executed when the result of 'Go to Declaration' is the current location."
|
|
862
862
|
))
|
|
863
863
|
},
|
|
@@ -866,7 +866,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
866
866
|
default: defaults.alternativeImplementationCommand,
|
|
867
867
|
enum: alternativeCommandOptions,
|
|
868
868
|
description: ( localize(
|
|
869
|
-
|
|
869
|
+
314,
|
|
870
870
|
"Alternative command id that is being executed when the result of 'Go to Implementation' is the current location."
|
|
871
871
|
))
|
|
872
872
|
},
|
|
@@ -875,7 +875,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
875
875
|
default: defaults.alternativeReferenceCommand,
|
|
876
876
|
enum: alternativeCommandOptions,
|
|
877
877
|
description: ( localize(
|
|
878
|
-
|
|
878
|
+
315,
|
|
879
879
|
"Alternative command id that is being executed when the result of 'Go to Reference' is the current location."
|
|
880
880
|
))
|
|
881
881
|
},
|
|
@@ -918,28 +918,28 @@ class EditorHover extends BaseEditorOption {
|
|
|
918
918
|
enum: ['on', 'off', 'onKeyboardModifier'],
|
|
919
919
|
default: defaults.enabled,
|
|
920
920
|
markdownEnumDescriptions: [
|
|
921
|
-
( localize(
|
|
922
|
-
( localize(
|
|
921
|
+
( localize(316, "Hover is enabled.")),
|
|
922
|
+
( localize(317, "Hover is disabled.")),
|
|
923
923
|
( localize(
|
|
924
|
-
|
|
924
|
+
318,
|
|
925
925
|
"Hover is shown when holding `{0}` or `Alt` (the opposite modifier of `#editor.multiCursorModifier#`)",
|
|
926
926
|
isMacintosh ? `Command` : `Control`
|
|
927
927
|
))
|
|
928
928
|
],
|
|
929
|
-
description: ( localize(
|
|
929
|
+
description: ( localize(319, "Controls whether the hover is shown."))
|
|
930
930
|
},
|
|
931
931
|
'editor.hover.delay': {
|
|
932
932
|
type: 'number',
|
|
933
933
|
default: defaults.delay,
|
|
934
934
|
minimum: 0,
|
|
935
935
|
maximum: 10000,
|
|
936
|
-
description: ( localize(
|
|
936
|
+
description: ( localize(320, "Controls the delay in milliseconds after which the hover is shown."))
|
|
937
937
|
},
|
|
938
938
|
'editor.hover.sticky': {
|
|
939
939
|
type: 'boolean',
|
|
940
940
|
default: defaults.sticky,
|
|
941
941
|
description: ( localize(
|
|
942
|
-
|
|
942
|
+
321,
|
|
943
943
|
"Controls whether the hover should remain visible when mouse is moved over it."
|
|
944
944
|
))
|
|
945
945
|
},
|
|
@@ -948,14 +948,14 @@ class EditorHover extends BaseEditorOption {
|
|
|
948
948
|
minimum: 0,
|
|
949
949
|
default: defaults.hidingDelay,
|
|
950
950
|
markdownDescription: ( localize(
|
|
951
|
-
|
|
951
|
+
322,
|
|
952
952
|
"Controls the delay in milliseconds after which the hover is hidden. Requires `#editor.hover.sticky#` to be enabled."
|
|
953
953
|
))
|
|
954
954
|
},
|
|
955
955
|
'editor.hover.above': {
|
|
956
956
|
type: 'boolean',
|
|
957
957
|
default: defaults.above,
|
|
958
|
-
description: ( localize(
|
|
958
|
+
description: ( localize(323, "Prefer showing hovers above the line, if there's space."))
|
|
959
959
|
},
|
|
960
960
|
});
|
|
961
961
|
}
|
|
@@ -1302,11 +1302,11 @@ class WrappingStrategy extends BaseEditorOption {
|
|
|
1302
1302
|
'editor.wrappingStrategy': {
|
|
1303
1303
|
enumDescriptions: [
|
|
1304
1304
|
( localize(
|
|
1305
|
-
|
|
1305
|
+
324,
|
|
1306
1306
|
"Assumes that all characters are of the same width. This is a fast algorithm that works correctly for monospace fonts and certain scripts (like Latin characters) where glyphs are of equal width."
|
|
1307
1307
|
)),
|
|
1308
1308
|
( localize(
|
|
1309
|
-
|
|
1309
|
+
325,
|
|
1310
1310
|
"Delegates wrapping points computation to the browser. This is a slow algorithm, that might cause freezes for large files, but it works correctly in all cases."
|
|
1311
1311
|
))
|
|
1312
1312
|
],
|
|
@@ -1314,7 +1314,7 @@ class WrappingStrategy extends BaseEditorOption {
|
|
|
1314
1314
|
enum: ['simple', 'advanced'],
|
|
1315
1315
|
default: 'simple',
|
|
1316
1316
|
description: ( localize(
|
|
1317
|
-
|
|
1317
|
+
326,
|
|
1318
1318
|
"Controls the algorithm that computes wrapping points. Note that when in accessibility mode, advanced will be used for the best experience."
|
|
1319
1319
|
))
|
|
1320
1320
|
}
|
|
@@ -1346,14 +1346,14 @@ class EditorLightbulb extends BaseEditorOption {
|
|
|
1346
1346
|
enum: [ShowLightbulbIconMode.Off, ShowLightbulbIconMode.OnCode, ShowLightbulbIconMode.On],
|
|
1347
1347
|
default: defaults.enabled,
|
|
1348
1348
|
enumDescriptions: [
|
|
1349
|
-
( localize(
|
|
1350
|
-
( localize(
|
|
1349
|
+
( localize(327, 'Disable the code action menu.')),
|
|
1350
|
+
( localize(328, 'Show the code action menu when the cursor is on lines with code.')),
|
|
1351
1351
|
( localize(
|
|
1352
|
-
|
|
1352
|
+
329,
|
|
1353
1353
|
'Show the code action menu when the cursor is on lines with code or on empty lines.'
|
|
1354
1354
|
)),
|
|
1355
1355
|
],
|
|
1356
|
-
description: ( localize(
|
|
1356
|
+
description: ( localize(330, "Enables the Code Action lightbulb in the editor."))
|
|
1357
1357
|
}
|
|
1358
1358
|
});
|
|
1359
1359
|
}
|
|
@@ -1375,7 +1375,7 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1375
1375
|
type: 'boolean',
|
|
1376
1376
|
default: defaults.enabled,
|
|
1377
1377
|
description: ( localize(
|
|
1378
|
-
|
|
1378
|
+
331,
|
|
1379
1379
|
"Shows the nested current scopes during the scroll at the top of the editor."
|
|
1380
1380
|
))
|
|
1381
1381
|
},
|
|
@@ -1384,14 +1384,14 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1384
1384
|
default: defaults.maxLineCount,
|
|
1385
1385
|
minimum: 1,
|
|
1386
1386
|
maximum: 20,
|
|
1387
|
-
description: ( localize(
|
|
1387
|
+
description: ( localize(332, "Defines the maximum number of sticky lines to show."))
|
|
1388
1388
|
},
|
|
1389
1389
|
'editor.stickyScroll.defaultModel': {
|
|
1390
1390
|
type: 'string',
|
|
1391
1391
|
enum: ['outlineModel', 'foldingProviderModel', 'indentationModel'],
|
|
1392
1392
|
default: defaults.defaultModel,
|
|
1393
1393
|
description: ( localize(
|
|
1394
|
-
|
|
1394
|
+
333,
|
|
1395
1395
|
"Defines the model to use for determining which lines to stick. If the outline model does not exist, it will fall back on the folding provider model which falls back on the indentation model. This order is respected in all three cases."
|
|
1396
1396
|
))
|
|
1397
1397
|
},
|
|
@@ -1399,7 +1399,7 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1399
1399
|
type: 'boolean',
|
|
1400
1400
|
default: defaults.scrollWithEditor,
|
|
1401
1401
|
description: ( localize(
|
|
1402
|
-
|
|
1402
|
+
334,
|
|
1403
1403
|
"Enable scrolling of Sticky Scroll with the editor's horizontal scrollbar."
|
|
1404
1404
|
))
|
|
1405
1405
|
},
|
|
@@ -1425,28 +1425,28 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1425
1425
|
'editor.inlayHints.enabled': {
|
|
1426
1426
|
type: 'string',
|
|
1427
1427
|
default: defaults.enabled,
|
|
1428
|
-
description: ( localize(
|
|
1428
|
+
description: ( localize(335, "Enables the inlay hints in the editor.")),
|
|
1429
1429
|
enum: ['on', 'onUnlessPressed', 'offUnlessPressed', 'off'],
|
|
1430
1430
|
markdownEnumDescriptions: [
|
|
1431
|
-
( localize(
|
|
1431
|
+
( localize(336, "Inlay hints are enabled")),
|
|
1432
1432
|
( localize(
|
|
1433
|
-
|
|
1433
|
+
337,
|
|
1434
1434
|
"Inlay hints are showing by default and hide when holding {0}",
|
|
1435
1435
|
isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
|
|
1436
1436
|
)),
|
|
1437
1437
|
( localize(
|
|
1438
|
-
|
|
1438
|
+
338,
|
|
1439
1439
|
"Inlay hints are hidden by default and show when holding {0}",
|
|
1440
1440
|
isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
|
|
1441
1441
|
)),
|
|
1442
|
-
( localize(
|
|
1442
|
+
( localize(339, "Inlay hints are disabled")),
|
|
1443
1443
|
],
|
|
1444
1444
|
},
|
|
1445
1445
|
'editor.inlayHints.fontSize': {
|
|
1446
1446
|
type: 'number',
|
|
1447
1447
|
default: defaults.fontSize,
|
|
1448
1448
|
markdownDescription: ( localize(
|
|
1449
|
-
|
|
1449
|
+
340,
|
|
1450
1450
|
"Controls font size of inlay hints in the editor. As default the {0} is used when the configured value is less than {1} or greater than the editor font size.",
|
|
1451
1451
|
'`#editor.fontSize#`',
|
|
1452
1452
|
'`5`'
|
|
@@ -1456,7 +1456,7 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1456
1456
|
type: 'string',
|
|
1457
1457
|
default: defaults.fontFamily,
|
|
1458
1458
|
markdownDescription: ( localize(
|
|
1459
|
-
|
|
1459
|
+
341,
|
|
1460
1460
|
"Controls font family of inlay hints in the editor. When set to empty, the {0} is used.",
|
|
1461
1461
|
'`#editor.fontFamily#`'
|
|
1462
1462
|
))
|
|
@@ -1464,13 +1464,13 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1464
1464
|
'editor.inlayHints.padding': {
|
|
1465
1465
|
type: 'boolean',
|
|
1466
1466
|
default: defaults.padding,
|
|
1467
|
-
description: ( localize(
|
|
1467
|
+
description: ( localize(342, "Enables the padding around the inlay hints in the editor."))
|
|
1468
1468
|
},
|
|
1469
1469
|
'editor.inlayHints.maximumLength': {
|
|
1470
1470
|
type: 'number',
|
|
1471
1471
|
default: defaults.maximumLength,
|
|
1472
1472
|
markdownDescription: ( localize(
|
|
1473
|
-
|
|
1473
|
+
343,
|
|
1474
1474
|
"Maximum overall length of inlay hints, for a single line, before they get truncated by the editor. Set to `0` to never truncate"
|
|
1475
1475
|
))
|
|
1476
1476
|
}
|
|
@@ -1518,7 +1518,7 @@ class EditorLineDecorationsWidth extends BaseEditorOption {
|
|
|
1518
1518
|
class EditorLineHeight extends EditorFloatOption {
|
|
1519
1519
|
constructor() {
|
|
1520
1520
|
super(EditorOption.lineHeight, 'lineHeight', EDITOR_FONT_DEFAULTS.lineHeight, x => EditorFloatOption.clamp(x, 0, 150), { markdownDescription: ( localize(
|
|
1521
|
-
|
|
1521
|
+
344,
|
|
1522
1522
|
"Controls the line height. \n - Use 0 to automatically compute the line height from the font size.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than or equal to 8 will be used as effective values."
|
|
1523
1523
|
)) }, 0, 150);
|
|
1524
1524
|
}
|
|
@@ -1547,53 +1547,53 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1547
1547
|
'editor.minimap.enabled': {
|
|
1548
1548
|
type: 'boolean',
|
|
1549
1549
|
default: defaults.enabled,
|
|
1550
|
-
description: ( localize(
|
|
1550
|
+
description: ( localize(345, "Controls whether the minimap is shown."))
|
|
1551
1551
|
},
|
|
1552
1552
|
'editor.minimap.autohide': {
|
|
1553
1553
|
type: 'string',
|
|
1554
1554
|
enum: ['none', 'mouseover', 'scroll'],
|
|
1555
1555
|
enumDescriptions: [
|
|
1556
|
-
( localize(
|
|
1556
|
+
( localize(346, "The minimap is always shown.")),
|
|
1557
1557
|
( localize(
|
|
1558
|
-
|
|
1558
|
+
347,
|
|
1559
1559
|
"The minimap is hidden when mouse is not over the minimap and shown when mouse is over the minimap."
|
|
1560
1560
|
)),
|
|
1561
|
-
( localize(
|
|
1561
|
+
( localize(348, "The minimap is only shown when the editor is scrolled")),
|
|
1562
1562
|
],
|
|
1563
1563
|
default: defaults.autohide,
|
|
1564
|
-
description: ( localize(
|
|
1564
|
+
description: ( localize(349, "Controls whether the minimap is hidden automatically."))
|
|
1565
1565
|
},
|
|
1566
1566
|
'editor.minimap.size': {
|
|
1567
1567
|
type: 'string',
|
|
1568
1568
|
enum: ['proportional', 'fill', 'fit'],
|
|
1569
1569
|
enumDescriptions: [
|
|
1570
1570
|
( localize(
|
|
1571
|
-
|
|
1571
|
+
350,
|
|
1572
1572
|
"The minimap has the same size as the editor contents (and might scroll)."
|
|
1573
1573
|
)),
|
|
1574
1574
|
( localize(
|
|
1575
|
-
|
|
1575
|
+
351,
|
|
1576
1576
|
"The minimap will stretch or shrink as necessary to fill the height of the editor (no scrolling)."
|
|
1577
1577
|
)),
|
|
1578
1578
|
( localize(
|
|
1579
|
-
|
|
1579
|
+
352,
|
|
1580
1580
|
"The minimap will shrink as necessary to never be larger than the editor (no scrolling)."
|
|
1581
1581
|
)),
|
|
1582
1582
|
],
|
|
1583
1583
|
default: defaults.size,
|
|
1584
|
-
description: ( localize(
|
|
1584
|
+
description: ( localize(353, "Controls the size of the minimap."))
|
|
1585
1585
|
},
|
|
1586
1586
|
'editor.minimap.side': {
|
|
1587
1587
|
type: 'string',
|
|
1588
1588
|
enum: ['left', 'right'],
|
|
1589
1589
|
default: defaults.side,
|
|
1590
|
-
description: ( localize(
|
|
1590
|
+
description: ( localize(354, "Controls the side where to render the minimap."))
|
|
1591
1591
|
},
|
|
1592
1592
|
'editor.minimap.showSlider': {
|
|
1593
1593
|
type: 'string',
|
|
1594
1594
|
enum: ['always', 'mouseover'],
|
|
1595
1595
|
default: defaults.showSlider,
|
|
1596
|
-
description: ( localize(
|
|
1596
|
+
description: ( localize(355, "Controls when the minimap slider is shown."))
|
|
1597
1597
|
},
|
|
1598
1598
|
'editor.minimap.scale': {
|
|
1599
1599
|
type: 'number',
|
|
@@ -1601,18 +1601,18 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1601
1601
|
minimum: 1,
|
|
1602
1602
|
maximum: 3,
|
|
1603
1603
|
enum: [1, 2, 3],
|
|
1604
|
-
description: ( localize(
|
|
1604
|
+
description: ( localize(356, "Scale of content drawn in the minimap: 1, 2 or 3."))
|
|
1605
1605
|
},
|
|
1606
1606
|
'editor.minimap.renderCharacters': {
|
|
1607
1607
|
type: 'boolean',
|
|
1608
1608
|
default: defaults.renderCharacters,
|
|
1609
|
-
description: ( localize(
|
|
1609
|
+
description: ( localize(357, "Render the actual characters on a line as opposed to color blocks."))
|
|
1610
1610
|
},
|
|
1611
1611
|
'editor.minimap.maxColumn': {
|
|
1612
1612
|
type: 'number',
|
|
1613
1613
|
default: defaults.maxColumn,
|
|
1614
1614
|
description: ( localize(
|
|
1615
|
-
|
|
1615
|
+
358,
|
|
1616
1616
|
"Limit the width of the minimap to render at most a certain number of columns."
|
|
1617
1617
|
))
|
|
1618
1618
|
},
|
|
@@ -1620,7 +1620,7 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1620
1620
|
type: 'boolean',
|
|
1621
1621
|
default: defaults.showRegionSectionHeaders,
|
|
1622
1622
|
description: ( localize(
|
|
1623
|
-
|
|
1623
|
+
359,
|
|
1624
1624
|
"Controls whether named regions are shown as section headers in the minimap."
|
|
1625
1625
|
))
|
|
1626
1626
|
},
|
|
@@ -1628,7 +1628,7 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1628
1628
|
type: 'boolean',
|
|
1629
1629
|
default: defaults.showMarkSectionHeaders,
|
|
1630
1630
|
description: ( localize(
|
|
1631
|
-
|
|
1631
|
+
360,
|
|
1632
1632
|
"Controls whether MARK: comments are shown as section headers in the minimap."
|
|
1633
1633
|
))
|
|
1634
1634
|
},
|
|
@@ -1636,20 +1636,20 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1636
1636
|
type: 'string',
|
|
1637
1637
|
default: defaults.markSectionHeaderRegex,
|
|
1638
1638
|
description: ( localize(
|
|
1639
|
-
|
|
1639
|
+
361,
|
|
1640
1640
|
"Defines the regular expression used to find section headers in comments. The regex must contain a named match group `label` (written as `(?<label>.+)`) that encapsulates the section header, otherwise it will not work. Optionally you can include another match group named `separator`. Use \\n in the pattern to match multi-line headers."
|
|
1641
1641
|
)),
|
|
1642
1642
|
},
|
|
1643
1643
|
'editor.minimap.sectionHeaderFontSize': {
|
|
1644
1644
|
type: 'number',
|
|
1645
1645
|
default: defaults.sectionHeaderFontSize,
|
|
1646
|
-
description: ( localize(
|
|
1646
|
+
description: ( localize(362, "Controls the font size of section headers in the minimap."))
|
|
1647
1647
|
},
|
|
1648
1648
|
'editor.minimap.sectionHeaderLetterSpacing': {
|
|
1649
1649
|
type: 'number',
|
|
1650
1650
|
default: defaults.sectionHeaderLetterSpacing,
|
|
1651
1651
|
description: ( localize(
|
|
1652
|
-
|
|
1652
|
+
363,
|
|
1653
1653
|
"Controls the amount of space (in pixels) between characters of section header. This helps the readability of the header in small font sizes."
|
|
1654
1654
|
))
|
|
1655
1655
|
}
|
|
@@ -1701,7 +1701,7 @@ class EditorPadding extends BaseEditorOption {
|
|
|
1701
1701
|
minimum: 0,
|
|
1702
1702
|
maximum: 1000,
|
|
1703
1703
|
description: ( localize(
|
|
1704
|
-
|
|
1704
|
+
364,
|
|
1705
1705
|
"Controls the amount of space between the top edge of the editor and the first line."
|
|
1706
1706
|
))
|
|
1707
1707
|
},
|
|
@@ -1711,7 +1711,7 @@ class EditorPadding extends BaseEditorOption {
|
|
|
1711
1711
|
minimum: 0,
|
|
1712
1712
|
maximum: 1000,
|
|
1713
1713
|
description: ( localize(
|
|
1714
|
-
|
|
1714
|
+
365,
|
|
1715
1715
|
"Controls the amount of space between the bottom edge of the editor and the last line."
|
|
1716
1716
|
))
|
|
1717
1717
|
}
|
|
@@ -1739,7 +1739,7 @@ class EditorParameterHints extends BaseEditorOption {
|
|
|
1739
1739
|
type: 'boolean',
|
|
1740
1740
|
default: defaults.enabled,
|
|
1741
1741
|
description: ( localize(
|
|
1742
|
-
|
|
1742
|
+
366,
|
|
1743
1743
|
"Enables a pop-up that shows parameter documentation and type information as you type."
|
|
1744
1744
|
))
|
|
1745
1745
|
},
|
|
@@ -1747,7 +1747,7 @@ class EditorParameterHints extends BaseEditorOption {
|
|
|
1747
1747
|
type: 'boolean',
|
|
1748
1748
|
default: defaults.cycle,
|
|
1749
1749
|
description: ( localize(
|
|
1750
|
-
|
|
1750
|
+
367,
|
|
1751
1751
|
"Controls whether the parameter hints menu cycles or closes when reaching the end of the list."
|
|
1752
1752
|
))
|
|
1753
1753
|
},
|
|
@@ -1798,7 +1798,7 @@ class EditorQuickSuggestions extends BaseEditorOption {
|
|
|
1798
1798
|
{
|
|
1799
1799
|
type: 'string',
|
|
1800
1800
|
enum: ['on', 'inline', 'off'],
|
|
1801
|
-
enumDescriptions: [( localize(
|
|
1801
|
+
enumDescriptions: [( localize(368, "Quick suggestions show inside the suggest widget")), ( localize(369, "Quick suggestions show as ghost text")), ( localize(370, "Quick suggestions are disabled"))]
|
|
1802
1802
|
}
|
|
1803
1803
|
];
|
|
1804
1804
|
super(EditorOption.quickSuggestions, 'quickSuggestions', defaults, {
|
|
@@ -1808,22 +1808,22 @@ class EditorQuickSuggestions extends BaseEditorOption {
|
|
|
1808
1808
|
strings: {
|
|
1809
1809
|
anyOf: types,
|
|
1810
1810
|
default: defaults.strings,
|
|
1811
|
-
description: ( localize(
|
|
1811
|
+
description: ( localize(371, "Enable quick suggestions inside strings."))
|
|
1812
1812
|
},
|
|
1813
1813
|
comments: {
|
|
1814
1814
|
anyOf: types,
|
|
1815
1815
|
default: defaults.comments,
|
|
1816
|
-
description: ( localize(
|
|
1816
|
+
description: ( localize(372, "Enable quick suggestions inside comments."))
|
|
1817
1817
|
},
|
|
1818
1818
|
other: {
|
|
1819
1819
|
anyOf: types,
|
|
1820
1820
|
default: defaults.other,
|
|
1821
|
-
description: ( localize(
|
|
1821
|
+
description: ( localize(373, "Enable quick suggestions outside of strings and comments."))
|
|
1822
1822
|
},
|
|
1823
1823
|
},
|
|
1824
1824
|
default: defaults,
|
|
1825
1825
|
markdownDescription: ( localize(
|
|
1826
|
-
|
|
1826
|
+
374,
|
|
1827
1827
|
"Controls whether suggestions should automatically show up while typing. This can be controlled for typing in comments, strings, and other code. Quick suggestion can be configured to show as ghost text or with the suggest widget. Also be aware of the {0}-setting which controls if suggestions are triggered by special characters.",
|
|
1828
1828
|
'`#editor.suggestOnTriggerCharacters#`'
|
|
1829
1829
|
))
|
|
@@ -1882,13 +1882,13 @@ class EditorRenderLineNumbersOption extends BaseEditorOption {
|
|
|
1882
1882
|
type: 'string',
|
|
1883
1883
|
enum: ['off', 'on', 'relative', 'interval'],
|
|
1884
1884
|
enumDescriptions: [
|
|
1885
|
-
( localize(
|
|
1886
|
-
( localize(
|
|
1887
|
-
( localize(
|
|
1888
|
-
( localize(
|
|
1885
|
+
( localize(375, "Line numbers are not rendered.")),
|
|
1886
|
+
( localize(376, "Line numbers are rendered as absolute number.")),
|
|
1887
|
+
( localize(377, "Line numbers are rendered as distance in lines to cursor position.")),
|
|
1888
|
+
( localize(378, "Line numbers are rendered every 10 lines."))
|
|
1889
1889
|
],
|
|
1890
1890
|
default: 'on',
|
|
1891
|
-
description: ( localize(
|
|
1891
|
+
description: ( localize(379, "Controls the display of line numbers."))
|
|
1892
1892
|
});
|
|
1893
1893
|
}
|
|
1894
1894
|
validate(lineNumbers) {
|
|
@@ -1932,7 +1932,7 @@ class EditorRulers extends BaseEditorOption {
|
|
|
1932
1932
|
constructor() {
|
|
1933
1933
|
const defaults = [];
|
|
1934
1934
|
const columnSchema = { type: 'number', description: ( localize(
|
|
1935
|
-
|
|
1935
|
+
380,
|
|
1936
1936
|
"Number of monospace characters at which this editor ruler will render."
|
|
1937
1937
|
)) };
|
|
1938
1938
|
super(EditorOption.rulers, 'rulers', defaults, {
|
|
@@ -1948,7 +1948,7 @@ class EditorRulers extends BaseEditorOption {
|
|
|
1948
1948
|
column: columnSchema,
|
|
1949
1949
|
color: {
|
|
1950
1950
|
type: 'string',
|
|
1951
|
-
description: ( localize(
|
|
1951
|
+
description: ( localize(381, "Color of this editor ruler.")),
|
|
1952
1952
|
format: 'color-hex'
|
|
1953
1953
|
}
|
|
1954
1954
|
}
|
|
@@ -1957,7 +1957,7 @@ class EditorRulers extends BaseEditorOption {
|
|
|
1957
1957
|
},
|
|
1958
1958
|
default: defaults,
|
|
1959
1959
|
description: ( localize(
|
|
1960
|
-
|
|
1960
|
+
382,
|
|
1961
1961
|
"Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty."
|
|
1962
1962
|
))
|
|
1963
1963
|
});
|
|
@@ -2031,44 +2031,44 @@ class EditorScrollbar extends BaseEditorOption {
|
|
|
2031
2031
|
type: 'string',
|
|
2032
2032
|
enum: ['auto', 'visible', 'hidden'],
|
|
2033
2033
|
enumDescriptions: [
|
|
2034
|
-
( localize(
|
|
2035
|
-
( localize(
|
|
2036
|
-
( localize(
|
|
2034
|
+
( localize(383, "The vertical scrollbar will be visible only when necessary.")),
|
|
2035
|
+
( localize(384, "The vertical scrollbar will always be visible.")),
|
|
2036
|
+
( localize(385, "The vertical scrollbar will always be hidden.")),
|
|
2037
2037
|
],
|
|
2038
2038
|
default: 'auto',
|
|
2039
|
-
description: ( localize(
|
|
2039
|
+
description: ( localize(386, "Controls the visibility of the vertical scrollbar."))
|
|
2040
2040
|
},
|
|
2041
2041
|
'editor.scrollbar.horizontal': {
|
|
2042
2042
|
type: 'string',
|
|
2043
2043
|
enum: ['auto', 'visible', 'hidden'],
|
|
2044
2044
|
enumDescriptions: [
|
|
2045
|
-
( localize(
|
|
2046
|
-
( localize(
|
|
2047
|
-
( localize(
|
|
2045
|
+
( localize(387, "The horizontal scrollbar will be visible only when necessary.")),
|
|
2046
|
+
( localize(388, "The horizontal scrollbar will always be visible.")),
|
|
2047
|
+
( localize(389, "The horizontal scrollbar will always be hidden.")),
|
|
2048
2048
|
],
|
|
2049
2049
|
default: 'auto',
|
|
2050
|
-
description: ( localize(
|
|
2050
|
+
description: ( localize(390, "Controls the visibility of the horizontal scrollbar."))
|
|
2051
2051
|
},
|
|
2052
2052
|
'editor.scrollbar.verticalScrollbarSize': {
|
|
2053
2053
|
type: 'number',
|
|
2054
2054
|
default: defaults.verticalScrollbarSize,
|
|
2055
|
-
description: ( localize(
|
|
2055
|
+
description: ( localize(391, "The width of the vertical scrollbar."))
|
|
2056
2056
|
},
|
|
2057
2057
|
'editor.scrollbar.horizontalScrollbarSize': {
|
|
2058
2058
|
type: 'number',
|
|
2059
2059
|
default: defaults.horizontalScrollbarSize,
|
|
2060
|
-
description: ( localize(
|
|
2060
|
+
description: ( localize(392, "The height of the horizontal scrollbar."))
|
|
2061
2061
|
},
|
|
2062
2062
|
'editor.scrollbar.scrollByPage': {
|
|
2063
2063
|
type: 'boolean',
|
|
2064
2064
|
default: defaults.scrollByPage,
|
|
2065
|
-
description: ( localize(
|
|
2065
|
+
description: ( localize(393, "Controls whether clicks scroll by page or jump to click position."))
|
|
2066
2066
|
},
|
|
2067
2067
|
'editor.scrollbar.ignoreHorizontalScrollbarInContentHeight': {
|
|
2068
2068
|
type: 'boolean',
|
|
2069
2069
|
default: defaults.ignoreHorizontalScrollbarInContentHeight,
|
|
2070
2070
|
description: ( localize(
|
|
2071
|
-
|
|
2071
|
+
394,
|
|
2072
2072
|
"When set, the horizontal scrollbar will not increase the size of the editor's content."
|
|
2073
2073
|
))
|
|
2074
2074
|
}
|
|
@@ -2127,7 +2127,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2127
2127
|
enum: [true, false, inUntrustedWorkspace],
|
|
2128
2128
|
default: defaults.nonBasicASCII,
|
|
2129
2129
|
description: ( localize(
|
|
2130
|
-
|
|
2130
|
+
395,
|
|
2131
2131
|
"Controls whether all non-basic ASCII characters are highlighted. Only characters between U+0020 and U+007E, tab, line-feed and carriage-return are considered basic ASCII."
|
|
2132
2132
|
))
|
|
2133
2133
|
},
|
|
@@ -2136,7 +2136,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2136
2136
|
type: 'boolean',
|
|
2137
2137
|
default: defaults.invisibleCharacters,
|
|
2138
2138
|
description: ( localize(
|
|
2139
|
-
|
|
2139
|
+
396,
|
|
2140
2140
|
"Controls whether characters that just reserve space or have no width at all are highlighted."
|
|
2141
2141
|
))
|
|
2142
2142
|
},
|
|
@@ -2145,7 +2145,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2145
2145
|
type: 'boolean',
|
|
2146
2146
|
default: defaults.ambiguousCharacters,
|
|
2147
2147
|
description: ( localize(
|
|
2148
|
-
|
|
2148
|
+
397,
|
|
2149
2149
|
"Controls whether characters are highlighted that can be confused with basic ASCII characters, except those that are common in the current user locale."
|
|
2150
2150
|
))
|
|
2151
2151
|
},
|
|
@@ -2155,7 +2155,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2155
2155
|
enum: [true, false, inUntrustedWorkspace],
|
|
2156
2156
|
default: defaults.includeComments,
|
|
2157
2157
|
description: ( localize(
|
|
2158
|
-
|
|
2158
|
+
398,
|
|
2159
2159
|
"Controls whether characters in comments should also be subject to Unicode highlighting."
|
|
2160
2160
|
))
|
|
2161
2161
|
},
|
|
@@ -2165,7 +2165,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2165
2165
|
enum: [true, false, inUntrustedWorkspace],
|
|
2166
2166
|
default: defaults.includeStrings,
|
|
2167
2167
|
description: ( localize(
|
|
2168
|
-
|
|
2168
|
+
399,
|
|
2169
2169
|
"Controls whether characters in strings should also be subject to Unicode highlighting."
|
|
2170
2170
|
))
|
|
2171
2171
|
},
|
|
@@ -2173,7 +2173,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2173
2173
|
restricted: true,
|
|
2174
2174
|
type: 'object',
|
|
2175
2175
|
default: defaults.allowedCharacters,
|
|
2176
|
-
description: ( localize(
|
|
2176
|
+
description: ( localize(400, "Defines allowed characters that are not being highlighted.")),
|
|
2177
2177
|
additionalProperties: {
|
|
2178
2178
|
type: 'boolean'
|
|
2179
2179
|
}
|
|
@@ -2186,7 +2186,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2186
2186
|
},
|
|
2187
2187
|
default: defaults.allowedLocales,
|
|
2188
2188
|
description: ( localize(
|
|
2189
|
-
|
|
2189
|
+
401,
|
|
2190
2190
|
"Unicode characters that are common in allowed locales are not being highlighted."
|
|
2191
2191
|
))
|
|
2192
2192
|
},
|
|
@@ -2271,7 +2271,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2271
2271
|
type: 'boolean',
|
|
2272
2272
|
default: defaults.enabled,
|
|
2273
2273
|
description: ( localize(
|
|
2274
|
-
|
|
2274
|
+
402,
|
|
2275
2275
|
"Controls whether to automatically show inline suggestions in the editor."
|
|
2276
2276
|
))
|
|
2277
2277
|
},
|
|
@@ -2281,22 +2281,22 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2281
2281
|
enum: ['always', 'onHover', 'never'],
|
|
2282
2282
|
enumDescriptions: [
|
|
2283
2283
|
( localize(
|
|
2284
|
-
|
|
2284
|
+
403,
|
|
2285
2285
|
"Show the inline suggestion toolbar whenever an inline suggestion is shown."
|
|
2286
2286
|
)),
|
|
2287
2287
|
( localize(
|
|
2288
|
-
|
|
2288
|
+
404,
|
|
2289
2289
|
"Show the inline suggestion toolbar when hovering over an inline suggestion."
|
|
2290
2290
|
)),
|
|
2291
|
-
( localize(
|
|
2291
|
+
( localize(405, "Never show the inline suggestion toolbar.")),
|
|
2292
2292
|
],
|
|
2293
|
-
description: ( localize(
|
|
2293
|
+
description: ( localize(406, "Controls when to show the inline suggestion toolbar.")),
|
|
2294
2294
|
},
|
|
2295
2295
|
'editor.inlineSuggest.syntaxHighlightingEnabled': {
|
|
2296
2296
|
type: 'boolean',
|
|
2297
2297
|
default: defaults.syntaxHighlightingEnabled,
|
|
2298
2298
|
description: ( localize(
|
|
2299
|
-
|
|
2299
|
+
407,
|
|
2300
2300
|
"Controls whether to show syntax highlighting for inline suggestions in the editor."
|
|
2301
2301
|
)),
|
|
2302
2302
|
},
|
|
@@ -2304,7 +2304,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2304
2304
|
type: 'boolean',
|
|
2305
2305
|
default: defaults.suppressSuggestions,
|
|
2306
2306
|
description: ( localize(
|
|
2307
|
-
|
|
2307
|
+
408,
|
|
2308
2308
|
"Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available."
|
|
2309
2309
|
))
|
|
2310
2310
|
},
|
|
@@ -2312,7 +2312,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2312
2312
|
type: 'boolean',
|
|
2313
2313
|
default: defaults.suppressInSnippetMode,
|
|
2314
2314
|
description: ( localize(
|
|
2315
|
-
|
|
2315
|
+
409,
|
|
2316
2316
|
"Controls whether inline suggestions are suppressed when in snippet mode."
|
|
2317
2317
|
)),
|
|
2318
2318
|
},
|
|
@@ -2322,7 +2322,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2322
2322
|
minimum: 0,
|
|
2323
2323
|
maximum: 10000,
|
|
2324
2324
|
description: ( localize(
|
|
2325
|
-
|
|
2325
|
+
410,
|
|
2326
2326
|
"Controls the minimal delay in milliseconds after which inline suggestions are shown after typing."
|
|
2327
2327
|
)),
|
|
2328
2328
|
},
|
|
@@ -2331,7 +2331,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2331
2331
|
default: defaults.experimental.suppressInlineSuggestions,
|
|
2332
2332
|
tags: ['experimental'],
|
|
2333
2333
|
description: ( localize(
|
|
2334
|
-
|
|
2334
|
+
411,
|
|
2335
2335
|
"Suppresses inline completions for specified extension IDs -- comma separated."
|
|
2336
2336
|
)),
|
|
2337
2337
|
experiment: {
|
|
@@ -2343,7 +2343,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2343
2343
|
default: defaults.experimental.emptyResponseInformation,
|
|
2344
2344
|
tags: ['experimental'],
|
|
2345
2345
|
description: ( localize(
|
|
2346
|
-
|
|
2346
|
+
412,
|
|
2347
2347
|
"Controls whether to send request information from the inline suggestion provider."
|
|
2348
2348
|
)),
|
|
2349
2349
|
experiment: {
|
|
@@ -2355,7 +2355,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2355
2355
|
default: defaults.triggerCommandOnProviderChange,
|
|
2356
2356
|
tags: ['experimental'],
|
|
2357
2357
|
description: ( localize(
|
|
2358
|
-
|
|
2358
|
+
413,
|
|
2359
2359
|
"Controls whether to trigger a command when the inline suggestion provider changes."
|
|
2360
2360
|
)),
|
|
2361
2361
|
experiment: {
|
|
@@ -2368,7 +2368,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2368
2368
|
tags: ['experimental'],
|
|
2369
2369
|
enum: ['always', 'never', 'whenSuggestListIsIncomplete'],
|
|
2370
2370
|
description: ( localize(
|
|
2371
|
-
|
|
2371
|
+
414,
|
|
2372
2372
|
"Controls whether to show inline suggestions when there is a suggest conflict."
|
|
2373
2373
|
)),
|
|
2374
2374
|
experiment: {
|
|
@@ -2378,13 +2378,13 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2378
2378
|
'editor.inlineSuggest.fontFamily': {
|
|
2379
2379
|
type: 'string',
|
|
2380
2380
|
default: defaults.fontFamily,
|
|
2381
|
-
description: ( localize(
|
|
2381
|
+
description: ( localize(415, "Controls the font family of the inline suggestions."))
|
|
2382
2382
|
},
|
|
2383
2383
|
'editor.inlineSuggest.edits.allowCodeShifting': {
|
|
2384
2384
|
type: 'string',
|
|
2385
2385
|
default: defaults.edits.allowCodeShifting,
|
|
2386
2386
|
description: ( localize(
|
|
2387
|
-
|
|
2387
|
+
416,
|
|
2388
2388
|
"Controls whether showing a suggestion will shift the code to make space for the suggestion inline."
|
|
2389
2389
|
)),
|
|
2390
2390
|
enum: ['always', 'horizontal', 'never'],
|
|
@@ -2393,21 +2393,21 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2393
2393
|
'editor.inlineSuggest.edits.showLongDistanceHint': {
|
|
2394
2394
|
type: 'boolean',
|
|
2395
2395
|
default: defaults.edits.showLongDistanceHint,
|
|
2396
|
-
description: ( localize(
|
|
2396
|
+
description: ( localize(417, "Controls whether long distance inline suggestions are shown.")),
|
|
2397
2397
|
tags: ['nextEditSuggestions', 'experimental']
|
|
2398
2398
|
},
|
|
2399
2399
|
'editor.inlineSuggest.edits.renderSideBySide': {
|
|
2400
2400
|
type: 'string',
|
|
2401
2401
|
default: defaults.edits.renderSideBySide,
|
|
2402
|
-
description: ( localize(
|
|
2402
|
+
description: ( localize(418, "Controls whether larger suggestions can be shown side by side.")),
|
|
2403
2403
|
enum: ['auto', 'never'],
|
|
2404
2404
|
enumDescriptions: [
|
|
2405
2405
|
( localize(
|
|
2406
|
-
|
|
2406
|
+
419,
|
|
2407
2407
|
"Larger suggestions will show side by side if there is enough space, otherwise they will be shown below."
|
|
2408
2408
|
)),
|
|
2409
2409
|
( localize(
|
|
2410
|
-
|
|
2410
|
+
420,
|
|
2411
2411
|
"Larger suggestions are never shown side by side and will always be shown below."
|
|
2412
2412
|
)),
|
|
2413
2413
|
],
|
|
@@ -2417,7 +2417,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2417
2417
|
type: 'boolean',
|
|
2418
2418
|
default: defaults.edits.showCollapsed,
|
|
2419
2419
|
description: ( localize(
|
|
2420
|
-
|
|
2420
|
+
421,
|
|
2421
2421
|
"Controls whether the suggestion will show as collapsed until jumping to it."
|
|
2422
2422
|
)),
|
|
2423
2423
|
tags: ['nextEditSuggestions']
|
|
@@ -2480,7 +2480,7 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2480
2480
|
type: 'boolean',
|
|
2481
2481
|
default: defaults.enabled,
|
|
2482
2482
|
markdownDescription: ( localize(
|
|
2483
|
-
|
|
2483
|
+
422,
|
|
2484
2484
|
"Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.",
|
|
2485
2485
|
'`#workbench.colorCustomizations#`'
|
|
2486
2486
|
))
|
|
@@ -2489,7 +2489,7 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2489
2489
|
type: 'boolean',
|
|
2490
2490
|
default: defaults.independentColorPoolPerBracketType,
|
|
2491
2491
|
description: ( localize(
|
|
2492
|
-
|
|
2492
|
+
423,
|
|
2493
2493
|
"Controls whether each bracket type has its own independent color pool."
|
|
2494
2494
|
))
|
|
2495
2495
|
},
|
|
@@ -2520,54 +2520,54 @@ class GuideOptions extends BaseEditorOption {
|
|
|
2520
2520
|
type: ['boolean', 'string'],
|
|
2521
2521
|
enum: [true, 'active', false],
|
|
2522
2522
|
enumDescriptions: [
|
|
2523
|
-
( localize(
|
|
2524
|
-
( localize(
|
|
2525
|
-
( localize(
|
|
2523
|
+
( localize(424, "Enables bracket pair guides.")),
|
|
2524
|
+
( localize(425, "Enables bracket pair guides only for the active bracket pair.")),
|
|
2525
|
+
( localize(426, "Disables bracket pair guides.")),
|
|
2526
2526
|
],
|
|
2527
2527
|
default: defaults.bracketPairs,
|
|
2528
|
-
description: ( localize(
|
|
2528
|
+
description: ( localize(427, "Controls whether bracket pair guides are enabled or not."))
|
|
2529
2529
|
},
|
|
2530
2530
|
'editor.guides.bracketPairsHorizontal': {
|
|
2531
2531
|
type: ['boolean', 'string'],
|
|
2532
2532
|
enum: [true, 'active', false],
|
|
2533
2533
|
enumDescriptions: [
|
|
2534
2534
|
( localize(
|
|
2535
|
-
|
|
2535
|
+
428,
|
|
2536
2536
|
"Enables horizontal guides as addition to vertical bracket pair guides."
|
|
2537
2537
|
)),
|
|
2538
|
-
( localize(
|
|
2539
|
-
( localize(
|
|
2538
|
+
( localize(429, "Enables horizontal guides only for the active bracket pair.")),
|
|
2539
|
+
( localize(430, "Disables horizontal bracket pair guides.")),
|
|
2540
2540
|
],
|
|
2541
2541
|
default: defaults.bracketPairsHorizontal,
|
|
2542
|
-
description: ( localize(
|
|
2542
|
+
description: ( localize(431, "Controls whether horizontal bracket pair guides are enabled or not."))
|
|
2543
2543
|
},
|
|
2544
2544
|
'editor.guides.highlightActiveBracketPair': {
|
|
2545
2545
|
type: 'boolean',
|
|
2546
2546
|
default: defaults.highlightActiveBracketPair,
|
|
2547
2547
|
description: ( localize(
|
|
2548
|
-
|
|
2548
|
+
432,
|
|
2549
2549
|
"Controls whether the editor should highlight the active bracket pair."
|
|
2550
2550
|
))
|
|
2551
2551
|
},
|
|
2552
2552
|
'editor.guides.indentation': {
|
|
2553
2553
|
type: 'boolean',
|
|
2554
2554
|
default: defaults.indentation,
|
|
2555
|
-
description: ( localize(
|
|
2555
|
+
description: ( localize(433, "Controls whether the editor should render indent guides."))
|
|
2556
2556
|
},
|
|
2557
2557
|
'editor.guides.highlightActiveIndentation': {
|
|
2558
2558
|
type: ['boolean', 'string'],
|
|
2559
2559
|
enum: [true, 'always', false],
|
|
2560
2560
|
enumDescriptions: [
|
|
2561
|
-
( localize(
|
|
2561
|
+
( localize(434, "Highlights the active indent guide.")),
|
|
2562
2562
|
( localize(
|
|
2563
|
-
|
|
2563
|
+
435,
|
|
2564
2564
|
"Highlights the active indent guide even if bracket guides are highlighted."
|
|
2565
2565
|
)),
|
|
2566
|
-
( localize(
|
|
2566
|
+
( localize(436, "Do not highlight the active indent guide.")),
|
|
2567
2567
|
],
|
|
2568
2568
|
default: defaults.highlightActiveIndentation,
|
|
2569
2569
|
description: ( localize(
|
|
2570
|
-
|
|
2570
|
+
437,
|
|
2571
2571
|
"Controls whether the editor should highlight the active indent guide."
|
|
2572
2572
|
))
|
|
2573
2573
|
}
|
|
@@ -2643,12 +2643,12 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2643
2643
|
type: 'string',
|
|
2644
2644
|
enum: ['insert', 'replace'],
|
|
2645
2645
|
enumDescriptions: [
|
|
2646
|
-
( localize(
|
|
2647
|
-
( localize(
|
|
2646
|
+
( localize(438, "Insert suggestion without overwriting text right of the cursor.")),
|
|
2647
|
+
( localize(439, "Insert suggestion and overwrite text right of the cursor.")),
|
|
2648
2648
|
],
|
|
2649
2649
|
default: defaults.insertMode,
|
|
2650
2650
|
description: ( localize(
|
|
2651
|
-
|
|
2651
|
+
440,
|
|
2652
2652
|
"Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."
|
|
2653
2653
|
))
|
|
2654
2654
|
},
|
|
@@ -2656,7 +2656,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2656
2656
|
type: 'boolean',
|
|
2657
2657
|
default: defaults.filterGraceful,
|
|
2658
2658
|
description: ( localize(
|
|
2659
|
-
|
|
2659
|
+
441,
|
|
2660
2660
|
"Controls whether filtering and sorting suggestions accounts for small typos."
|
|
2661
2661
|
))
|
|
2662
2662
|
},
|
|
@@ -2664,7 +2664,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2664
2664
|
type: 'boolean',
|
|
2665
2665
|
default: defaults.localityBonus,
|
|
2666
2666
|
description: ( localize(
|
|
2667
|
-
|
|
2667
|
+
442,
|
|
2668
2668
|
"Controls whether sorting favors words that appear close to the cursor."
|
|
2669
2669
|
))
|
|
2670
2670
|
},
|
|
@@ -2672,7 +2672,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2672
2672
|
type: 'boolean',
|
|
2673
2673
|
default: defaults.shareSuggestSelections,
|
|
2674
2674
|
markdownDescription: ( localize(
|
|
2675
|
-
|
|
2675
|
+
443,
|
|
2676
2676
|
"Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."
|
|
2677
2677
|
))
|
|
2678
2678
|
},
|
|
@@ -2681,22 +2681,22 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2681
2681
|
enum: ['always', 'never', 'whenTriggerCharacter', 'whenQuickSuggestion'],
|
|
2682
2682
|
enumDescriptions: [
|
|
2683
2683
|
( localize(
|
|
2684
|
-
|
|
2684
|
+
444,
|
|
2685
2685
|
"Always select a suggestion when automatically triggering IntelliSense."
|
|
2686
2686
|
)),
|
|
2687
2687
|
( localize(
|
|
2688
|
-
|
|
2688
|
+
445,
|
|
2689
2689
|
"Never select a suggestion when automatically triggering IntelliSense."
|
|
2690
2690
|
)),
|
|
2691
2691
|
( localize(
|
|
2692
|
-
|
|
2692
|
+
446,
|
|
2693
2693
|
"Select a suggestion only when triggering IntelliSense from a trigger character."
|
|
2694
2694
|
)),
|
|
2695
|
-
( localize(
|
|
2695
|
+
( localize(447, "Select a suggestion only when triggering IntelliSense as you type.")),
|
|
2696
2696
|
],
|
|
2697
2697
|
default: defaults.selectionMode,
|
|
2698
2698
|
markdownDescription: ( localize(
|
|
2699
|
-
|
|
2699
|
+
448,
|
|
2700
2700
|
"Controls whether a suggestion is selected when the widget shows. Note that this only applies to automatically triggered suggestions ({0} and {1}) and that a suggestion is always selected when explicitly invoked, e.g via `Ctrl+Space`.",
|
|
2701
2701
|
'`#editor.quickSuggestions#`',
|
|
2702
2702
|
'`#editor.suggestOnTriggerCharacters#`'
|
|
@@ -2705,197 +2705,197 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2705
2705
|
'editor.suggest.snippetsPreventQuickSuggestions': {
|
|
2706
2706
|
type: 'boolean',
|
|
2707
2707
|
default: defaults.snippetsPreventQuickSuggestions,
|
|
2708
|
-
description: ( localize(
|
|
2708
|
+
description: ( localize(449, "Controls whether an active snippet prevents quick suggestions."))
|
|
2709
2709
|
},
|
|
2710
2710
|
'editor.suggest.showIcons': {
|
|
2711
2711
|
type: 'boolean',
|
|
2712
2712
|
default: defaults.showIcons,
|
|
2713
|
-
description: ( localize(
|
|
2713
|
+
description: ( localize(450, "Controls whether to show or hide icons in suggestions."))
|
|
2714
2714
|
},
|
|
2715
2715
|
'editor.suggest.showStatusBar': {
|
|
2716
2716
|
type: 'boolean',
|
|
2717
2717
|
default: defaults.showStatusBar,
|
|
2718
2718
|
description: ( localize(
|
|
2719
|
-
|
|
2719
|
+
451,
|
|
2720
2720
|
"Controls the visibility of the status bar at the bottom of the suggest widget."
|
|
2721
2721
|
))
|
|
2722
2722
|
},
|
|
2723
2723
|
'editor.suggest.preview': {
|
|
2724
2724
|
type: 'boolean',
|
|
2725
2725
|
default: defaults.preview,
|
|
2726
|
-
description: ( localize(
|
|
2726
|
+
description: ( localize(452, "Controls whether to preview the suggestion outcome in the editor."))
|
|
2727
2727
|
},
|
|
2728
2728
|
'editor.suggest.showInlineDetails': {
|
|
2729
2729
|
type: 'boolean',
|
|
2730
2730
|
default: defaults.showInlineDetails,
|
|
2731
2731
|
description: ( localize(
|
|
2732
|
-
|
|
2732
|
+
453,
|
|
2733
2733
|
"Controls whether suggest details show inline with the label or only in the details widget."
|
|
2734
2734
|
))
|
|
2735
2735
|
},
|
|
2736
2736
|
'editor.suggest.maxVisibleSuggestions': {
|
|
2737
2737
|
type: 'number',
|
|
2738
|
-
deprecationMessage: ( localize(
|
|
2738
|
+
deprecationMessage: ( localize(454, "This setting is deprecated. The suggest widget can now be resized.")),
|
|
2739
2739
|
},
|
|
2740
2740
|
'editor.suggest.filteredTypes': {
|
|
2741
2741
|
type: 'object',
|
|
2742
2742
|
deprecationMessage: ( localize(
|
|
2743
|
-
|
|
2743
|
+
455,
|
|
2744
2744
|
"This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead."
|
|
2745
2745
|
))
|
|
2746
2746
|
},
|
|
2747
2747
|
'editor.suggest.showMethods': {
|
|
2748
2748
|
type: 'boolean',
|
|
2749
2749
|
default: true,
|
|
2750
|
-
markdownDescription: ( localize(
|
|
2750
|
+
markdownDescription: ( localize(456, "When enabled IntelliSense shows `method`-suggestions."))
|
|
2751
2751
|
},
|
|
2752
2752
|
'editor.suggest.showFunctions': {
|
|
2753
2753
|
type: 'boolean',
|
|
2754
2754
|
default: true,
|
|
2755
|
-
markdownDescription: ( localize(
|
|
2755
|
+
markdownDescription: ( localize(457, "When enabled IntelliSense shows `function`-suggestions."))
|
|
2756
2756
|
},
|
|
2757
2757
|
'editor.suggest.showConstructors': {
|
|
2758
2758
|
type: 'boolean',
|
|
2759
2759
|
default: true,
|
|
2760
|
-
markdownDescription: ( localize(
|
|
2760
|
+
markdownDescription: ( localize(458, "When enabled IntelliSense shows `constructor`-suggestions."))
|
|
2761
2761
|
},
|
|
2762
2762
|
'editor.suggest.showDeprecated': {
|
|
2763
2763
|
type: 'boolean',
|
|
2764
2764
|
default: true,
|
|
2765
|
-
markdownDescription: ( localize(
|
|
2765
|
+
markdownDescription: ( localize(459, "When enabled IntelliSense shows `deprecated`-suggestions."))
|
|
2766
2766
|
},
|
|
2767
2767
|
'editor.suggest.matchOnWordStartOnly': {
|
|
2768
2768
|
type: 'boolean',
|
|
2769
2769
|
default: true,
|
|
2770
2770
|
markdownDescription: ( localize(
|
|
2771
|
-
|
|
2771
|
+
460,
|
|
2772
2772
|
"When enabled IntelliSense filtering requires that the first character matches on a word start. For example, `c` on `Console` or `WebContext` but _not_ on `description`. When disabled IntelliSense will show more results but still sorts them by match quality."
|
|
2773
2773
|
))
|
|
2774
2774
|
},
|
|
2775
2775
|
'editor.suggest.showFields': {
|
|
2776
2776
|
type: 'boolean',
|
|
2777
2777
|
default: true,
|
|
2778
|
-
markdownDescription: ( localize(
|
|
2778
|
+
markdownDescription: ( localize(461, "When enabled IntelliSense shows `field`-suggestions."))
|
|
2779
2779
|
},
|
|
2780
2780
|
'editor.suggest.showVariables': {
|
|
2781
2781
|
type: 'boolean',
|
|
2782
2782
|
default: true,
|
|
2783
|
-
markdownDescription: ( localize(
|
|
2783
|
+
markdownDescription: ( localize(462, "When enabled IntelliSense shows `variable`-suggestions."))
|
|
2784
2784
|
},
|
|
2785
2785
|
'editor.suggest.showClasses': {
|
|
2786
2786
|
type: 'boolean',
|
|
2787
2787
|
default: true,
|
|
2788
|
-
markdownDescription: ( localize(
|
|
2788
|
+
markdownDescription: ( localize(463, "When enabled IntelliSense shows `class`-suggestions."))
|
|
2789
2789
|
},
|
|
2790
2790
|
'editor.suggest.showStructs': {
|
|
2791
2791
|
type: 'boolean',
|
|
2792
2792
|
default: true,
|
|
2793
|
-
markdownDescription: ( localize(
|
|
2793
|
+
markdownDescription: ( localize(464, "When enabled IntelliSense shows `struct`-suggestions."))
|
|
2794
2794
|
},
|
|
2795
2795
|
'editor.suggest.showInterfaces': {
|
|
2796
2796
|
type: 'boolean',
|
|
2797
2797
|
default: true,
|
|
2798
|
-
markdownDescription: ( localize(
|
|
2798
|
+
markdownDescription: ( localize(465, "When enabled IntelliSense shows `interface`-suggestions."))
|
|
2799
2799
|
},
|
|
2800
2800
|
'editor.suggest.showModules': {
|
|
2801
2801
|
type: 'boolean',
|
|
2802
2802
|
default: true,
|
|
2803
|
-
markdownDescription: ( localize(
|
|
2803
|
+
markdownDescription: ( localize(466, "When enabled IntelliSense shows `module`-suggestions."))
|
|
2804
2804
|
},
|
|
2805
2805
|
'editor.suggest.showProperties': {
|
|
2806
2806
|
type: 'boolean',
|
|
2807
2807
|
default: true,
|
|
2808
|
-
markdownDescription: ( localize(
|
|
2808
|
+
markdownDescription: ( localize(467, "When enabled IntelliSense shows `property`-suggestions."))
|
|
2809
2809
|
},
|
|
2810
2810
|
'editor.suggest.showEvents': {
|
|
2811
2811
|
type: 'boolean',
|
|
2812
2812
|
default: true,
|
|
2813
|
-
markdownDescription: ( localize(
|
|
2813
|
+
markdownDescription: ( localize(468, "When enabled IntelliSense shows `event`-suggestions."))
|
|
2814
2814
|
},
|
|
2815
2815
|
'editor.suggest.showOperators': {
|
|
2816
2816
|
type: 'boolean',
|
|
2817
2817
|
default: true,
|
|
2818
|
-
markdownDescription: ( localize(
|
|
2818
|
+
markdownDescription: ( localize(469, "When enabled IntelliSense shows `operator`-suggestions."))
|
|
2819
2819
|
},
|
|
2820
2820
|
'editor.suggest.showUnits': {
|
|
2821
2821
|
type: 'boolean',
|
|
2822
2822
|
default: true,
|
|
2823
|
-
markdownDescription: ( localize(
|
|
2823
|
+
markdownDescription: ( localize(470, "When enabled IntelliSense shows `unit`-suggestions."))
|
|
2824
2824
|
},
|
|
2825
2825
|
'editor.suggest.showValues': {
|
|
2826
2826
|
type: 'boolean',
|
|
2827
2827
|
default: true,
|
|
2828
|
-
markdownDescription: ( localize(
|
|
2828
|
+
markdownDescription: ( localize(471, "When enabled IntelliSense shows `value`-suggestions."))
|
|
2829
2829
|
},
|
|
2830
2830
|
'editor.suggest.showConstants': {
|
|
2831
2831
|
type: 'boolean',
|
|
2832
2832
|
default: true,
|
|
2833
|
-
markdownDescription: ( localize(
|
|
2833
|
+
markdownDescription: ( localize(472, "When enabled IntelliSense shows `constant`-suggestions."))
|
|
2834
2834
|
},
|
|
2835
2835
|
'editor.suggest.showEnums': {
|
|
2836
2836
|
type: 'boolean',
|
|
2837
2837
|
default: true,
|
|
2838
|
-
markdownDescription: ( localize(
|
|
2838
|
+
markdownDescription: ( localize(473, "When enabled IntelliSense shows `enum`-suggestions."))
|
|
2839
2839
|
},
|
|
2840
2840
|
'editor.suggest.showEnumMembers': {
|
|
2841
2841
|
type: 'boolean',
|
|
2842
2842
|
default: true,
|
|
2843
|
-
markdownDescription: ( localize(
|
|
2843
|
+
markdownDescription: ( localize(474, "When enabled IntelliSense shows `enumMember`-suggestions."))
|
|
2844
2844
|
},
|
|
2845
2845
|
'editor.suggest.showKeywords': {
|
|
2846
2846
|
type: 'boolean',
|
|
2847
2847
|
default: true,
|
|
2848
|
-
markdownDescription: ( localize(
|
|
2848
|
+
markdownDescription: ( localize(475, "When enabled IntelliSense shows `keyword`-suggestions."))
|
|
2849
2849
|
},
|
|
2850
2850
|
'editor.suggest.showWords': {
|
|
2851
2851
|
type: 'boolean',
|
|
2852
2852
|
default: true,
|
|
2853
|
-
markdownDescription: ( localize(
|
|
2853
|
+
markdownDescription: ( localize(476, "When enabled IntelliSense shows `text`-suggestions."))
|
|
2854
2854
|
},
|
|
2855
2855
|
'editor.suggest.showColors': {
|
|
2856
2856
|
type: 'boolean',
|
|
2857
2857
|
default: true,
|
|
2858
|
-
markdownDescription: ( localize(
|
|
2858
|
+
markdownDescription: ( localize(477, "When enabled IntelliSense shows `color`-suggestions."))
|
|
2859
2859
|
},
|
|
2860
2860
|
'editor.suggest.showFiles': {
|
|
2861
2861
|
type: 'boolean',
|
|
2862
2862
|
default: true,
|
|
2863
|
-
markdownDescription: ( localize(
|
|
2863
|
+
markdownDescription: ( localize(478, "When enabled IntelliSense shows `file`-suggestions."))
|
|
2864
2864
|
},
|
|
2865
2865
|
'editor.suggest.showReferences': {
|
|
2866
2866
|
type: 'boolean',
|
|
2867
2867
|
default: true,
|
|
2868
|
-
markdownDescription: ( localize(
|
|
2868
|
+
markdownDescription: ( localize(479, "When enabled IntelliSense shows `reference`-suggestions."))
|
|
2869
2869
|
},
|
|
2870
2870
|
'editor.suggest.showCustomcolors': {
|
|
2871
2871
|
type: 'boolean',
|
|
2872
2872
|
default: true,
|
|
2873
|
-
markdownDescription: ( localize(
|
|
2873
|
+
markdownDescription: ( localize(480, "When enabled IntelliSense shows `customcolor`-suggestions."))
|
|
2874
2874
|
},
|
|
2875
2875
|
'editor.suggest.showFolders': {
|
|
2876
2876
|
type: 'boolean',
|
|
2877
2877
|
default: true,
|
|
2878
|
-
markdownDescription: ( localize(
|
|
2878
|
+
markdownDescription: ( localize(481, "When enabled IntelliSense shows `folder`-suggestions."))
|
|
2879
2879
|
},
|
|
2880
2880
|
'editor.suggest.showTypeParameters': {
|
|
2881
2881
|
type: 'boolean',
|
|
2882
2882
|
default: true,
|
|
2883
|
-
markdownDescription: ( localize(
|
|
2883
|
+
markdownDescription: ( localize(482, "When enabled IntelliSense shows `typeParameter`-suggestions."))
|
|
2884
2884
|
},
|
|
2885
2885
|
'editor.suggest.showSnippets': {
|
|
2886
2886
|
type: 'boolean',
|
|
2887
2887
|
default: true,
|
|
2888
|
-
markdownDescription: ( localize(
|
|
2888
|
+
markdownDescription: ( localize(483, "When enabled IntelliSense shows `snippet`-suggestions."))
|
|
2889
2889
|
},
|
|
2890
2890
|
'editor.suggest.showUsers': {
|
|
2891
2891
|
type: 'boolean',
|
|
2892
2892
|
default: true,
|
|
2893
|
-
markdownDescription: ( localize(
|
|
2893
|
+
markdownDescription: ( localize(484, "When enabled IntelliSense shows `user`-suggestions."))
|
|
2894
2894
|
},
|
|
2895
2895
|
'editor.suggest.showIssues': {
|
|
2896
2896
|
type: 'boolean',
|
|
2897
2897
|
default: true,
|
|
2898
|
-
markdownDescription: ( localize(
|
|
2898
|
+
markdownDescription: ( localize(485, "When enabled IntelliSense shows `issues`-suggestions."))
|
|
2899
2899
|
}
|
|
2900
2900
|
});
|
|
2901
2901
|
}
|
|
@@ -2955,13 +2955,13 @@ class SmartSelect extends BaseEditorOption {
|
|
|
2955
2955
|
selectSubwords: true,
|
|
2956
2956
|
}, {
|
|
2957
2957
|
'editor.smartSelect.selectLeadingAndTrailingWhitespace': {
|
|
2958
|
-
description: ( localize(
|
|
2958
|
+
description: ( localize(486, "Whether leading and trailing whitespace should always be selected.")),
|
|
2959
2959
|
default: true,
|
|
2960
2960
|
type: 'boolean'
|
|
2961
2961
|
},
|
|
2962
2962
|
'editor.smartSelect.selectSubwords': {
|
|
2963
2963
|
description: ( localize(
|
|
2964
|
-
|
|
2964
|
+
487,
|
|
2965
2965
|
"Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."
|
|
2966
2966
|
)),
|
|
2967
2967
|
default: true,
|
|
@@ -2994,7 +2994,7 @@ class WordSegmenterLocales extends BaseEditorOption {
|
|
|
2994
2994
|
}
|
|
2995
2995
|
],
|
|
2996
2996
|
description: ( localize(
|
|
2997
|
-
|
|
2997
|
+
488,
|
|
2998
2998
|
"Locales to be used for word segmentation when doing word related navigations or operations. Specify the BCP 47 language tag of the word you wish to recognize (e.g., ja, zh-CN, zh-Hant-TW, etc.)."
|
|
2999
2999
|
)),
|
|
3000
3000
|
type: 'array',
|
|
@@ -3040,12 +3040,12 @@ class WrappingIndentOption extends BaseEditorOption {
|
|
|
3040
3040
|
type: 'string',
|
|
3041
3041
|
enum: ['none', 'same', 'indent', 'deepIndent'],
|
|
3042
3042
|
enumDescriptions: [
|
|
3043
|
-
( localize(
|
|
3044
|
-
( localize(
|
|
3045
|
-
( localize(
|
|
3046
|
-
( localize(
|
|
3043
|
+
( localize(489, "No indentation. Wrapped lines begin at column 1.")),
|
|
3044
|
+
( localize(490, "Wrapped lines get the same indentation as the parent.")),
|
|
3045
|
+
( localize(491, "Wrapped lines get +1 indentation toward the parent.")),
|
|
3046
|
+
( localize(492, "Wrapped lines get +2 indentation toward the parent.")),
|
|
3047
3047
|
],
|
|
3048
|
-
description: ( localize(
|
|
3048
|
+
description: ( localize(493, "Controls the indentation of wrapped lines.")),
|
|
3049
3049
|
default: 'same'
|
|
3050
3050
|
}
|
|
3051
3051
|
});
|
|
@@ -3094,14 +3094,14 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
3094
3094
|
type: 'boolean',
|
|
3095
3095
|
default: defaults.enabled,
|
|
3096
3096
|
markdownDescription: ( localize(
|
|
3097
|
-
|
|
3097
|
+
494,
|
|
3098
3098
|
"Controls whether you can drag and drop a file into a text editor by holding down the `Shift` key (instead of opening the file in an editor)."
|
|
3099
3099
|
)),
|
|
3100
3100
|
},
|
|
3101
3101
|
'editor.dropIntoEditor.showDropSelector': {
|
|
3102
3102
|
type: 'string',
|
|
3103
3103
|
markdownDescription: ( localize(
|
|
3104
|
-
|
|
3104
|
+
495,
|
|
3105
3105
|
"Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped."
|
|
3106
3106
|
)),
|
|
3107
3107
|
enum: [
|
|
@@ -3110,11 +3110,11 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
3110
3110
|
],
|
|
3111
3111
|
enumDescriptions: [
|
|
3112
3112
|
( localize(
|
|
3113
|
-
|
|
3113
|
+
496,
|
|
3114
3114
|
"Show the drop selector widget after a file is dropped into the editor."
|
|
3115
3115
|
)),
|
|
3116
3116
|
( localize(
|
|
3117
|
-
|
|
3117
|
+
497,
|
|
3118
3118
|
"Never show the drop selector widget. Instead the default drop provider is always used."
|
|
3119
3119
|
)),
|
|
3120
3120
|
],
|
|
@@ -3140,12 +3140,12 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
3140
3140
|
'editor.pasteAs.enabled': {
|
|
3141
3141
|
type: 'boolean',
|
|
3142
3142
|
default: defaults.enabled,
|
|
3143
|
-
markdownDescription: ( localize(
|
|
3143
|
+
markdownDescription: ( localize(498, "Controls whether you can paste content in different ways.")),
|
|
3144
3144
|
},
|
|
3145
3145
|
'editor.pasteAs.showPasteSelector': {
|
|
3146
3146
|
type: 'string',
|
|
3147
3147
|
markdownDescription: ( localize(
|
|
3148
|
-
|
|
3148
|
+
499,
|
|
3149
3149
|
"Controls if a widget is shown when pasting content in to the editor. This widget lets you control how the file is pasted."
|
|
3150
3150
|
)),
|
|
3151
3151
|
enum: [
|
|
@@ -3154,11 +3154,11 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
3154
3154
|
],
|
|
3155
3155
|
enumDescriptions: [
|
|
3156
3156
|
( localize(
|
|
3157
|
-
|
|
3157
|
+
500,
|
|
3158
3158
|
"Show the paste selector widget after content is pasted into the editor."
|
|
3159
3159
|
)),
|
|
3160
3160
|
( localize(
|
|
3161
|
-
|
|
3161
|
+
501,
|
|
3162
3162
|
"Never show the paste selector widget. Instead the default pasting behavior is always used."
|
|
3163
3163
|
)),
|
|
3164
3164
|
],
|
|
@@ -3364,7 +3364,7 @@ const EditorOptions = {
|
|
|
3364
3364
|
'acceptSuggestionOnCommitCharacter',
|
|
3365
3365
|
true,
|
|
3366
3366
|
{ markdownDescription: ( localize(
|
|
3367
|
-
|
|
3367
|
+
502,
|
|
3368
3368
|
"Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character."
|
|
3369
3369
|
)) }
|
|
3370
3370
|
))),
|
|
@@ -3377,13 +3377,13 @@ const EditorOptions = {
|
|
|
3377
3377
|
markdownEnumDescriptions: [
|
|
3378
3378
|
'',
|
|
3379
3379
|
( localize(
|
|
3380
|
-
|
|
3380
|
+
503,
|
|
3381
3381
|
"Only accept a suggestion with `Enter` when it makes a textual change."
|
|
3382
3382
|
)),
|
|
3383
3383
|
''
|
|
3384
3384
|
],
|
|
3385
3385
|
markdownDescription: ( localize(
|
|
3386
|
-
|
|
3386
|
+
504,
|
|
3387
3387
|
"Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions."
|
|
3388
3388
|
))
|
|
3389
3389
|
}
|
|
@@ -3397,7 +3397,7 @@ const EditorOptions = {
|
|
|
3397
3397
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3398
3398
|
{
|
|
3399
3399
|
description: ( localize(
|
|
3400
|
-
|
|
3400
|
+
505,
|
|
3401
3401
|
"Controls the number of lines in the editor that can be read out by a screen reader at once. When we detect a screen reader we automatically set the default to be 500. Warning: this has a performance implication for numbers larger than the default."
|
|
3402
3402
|
)),
|
|
3403
3403
|
tags: ['accessibility']
|
|
@@ -3406,12 +3406,12 @@ const EditorOptions = {
|
|
|
3406
3406
|
allowOverflow: register(( new EditorBooleanOption(EditorOption.allowOverflow, 'allowOverflow', true))),
|
|
3407
3407
|
allowVariableLineHeights: register(( new EditorBooleanOption(EditorOption.allowVariableLineHeights, 'allowVariableLineHeights', true, {
|
|
3408
3408
|
description: ( localize(
|
|
3409
|
-
|
|
3409
|
+
506,
|
|
3410
3410
|
"Controls whether to allow using variable line heights in the editor."
|
|
3411
3411
|
))
|
|
3412
3412
|
}))),
|
|
3413
3413
|
allowVariableFonts: register(( new EditorBooleanOption(EditorOption.allowVariableFonts, 'allowVariableFonts', true, {
|
|
3414
|
-
description: ( localize(
|
|
3414
|
+
description: ( localize(507, "Controls whether to allow using variable fonts in the editor."))
|
|
3415
3415
|
}))),
|
|
3416
3416
|
allowVariableFontsInAccessibilityMode: register(( new EditorBooleanOption(
|
|
3417
3417
|
EditorOption.allowVariableFontsInAccessibilityMode,
|
|
@@ -3419,13 +3419,13 @@ const EditorOptions = {
|
|
|
3419
3419
|
false,
|
|
3420
3420
|
{
|
|
3421
3421
|
description: ( localize(
|
|
3422
|
-
|
|
3422
|
+
508,
|
|
3423
3423
|
"Controls whether to allow using variable fonts in the editor in the accessibility mode."
|
|
3424
3424
|
)),
|
|
3425
3425
|
tags: ['accessibility']
|
|
3426
3426
|
}
|
|
3427
3427
|
))),
|
|
3428
|
-
ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, 'ariaLabel', ( localize(
|
|
3428
|
+
ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, 'ariaLabel', ( localize(509, "Editor content"))))),
|
|
3429
3429
|
ariaRequired: register(( new EditorBooleanOption(EditorOption.ariaRequired, 'ariaRequired', false, undefined))),
|
|
3430
3430
|
screenReaderAnnounceInlineSuggestion: register(( new EditorBooleanOption(
|
|
3431
3431
|
EditorOption.screenReaderAnnounceInlineSuggestion,
|
|
@@ -3433,7 +3433,7 @@ const EditorOptions = {
|
|
|
3433
3433
|
true,
|
|
3434
3434
|
{
|
|
3435
3435
|
description: ( localize(
|
|
3436
|
-
|
|
3436
|
+
510,
|
|
3437
3437
|
"Control whether inline suggestions are announced by a screen reader."
|
|
3438
3438
|
)),
|
|
3439
3439
|
tags: ['accessibility']
|
|
@@ -3448,17 +3448,17 @@ const EditorOptions = {
|
|
|
3448
3448
|
enumDescriptions: [
|
|
3449
3449
|
'',
|
|
3450
3450
|
( localize(
|
|
3451
|
-
|
|
3451
|
+
511,
|
|
3452
3452
|
"Use language configurations to determine when to autoclose brackets."
|
|
3453
3453
|
)),
|
|
3454
3454
|
( localize(
|
|
3455
|
-
|
|
3455
|
+
512,
|
|
3456
3456
|
"Autoclose brackets only when the cursor is to the left of whitespace."
|
|
3457
3457
|
)),
|
|
3458
3458
|
'',
|
|
3459
3459
|
],
|
|
3460
3460
|
description: ( localize(
|
|
3461
|
-
|
|
3461
|
+
513,
|
|
3462
3462
|
"Controls whether the editor should automatically close brackets after the user adds an opening bracket."
|
|
3463
3463
|
))
|
|
3464
3464
|
}
|
|
@@ -3472,17 +3472,17 @@ const EditorOptions = {
|
|
|
3472
3472
|
enumDescriptions: [
|
|
3473
3473
|
'',
|
|
3474
3474
|
( localize(
|
|
3475
|
-
|
|
3475
|
+
514,
|
|
3476
3476
|
"Use language configurations to determine when to autoclose comments."
|
|
3477
3477
|
)),
|
|
3478
3478
|
( localize(
|
|
3479
|
-
|
|
3479
|
+
515,
|
|
3480
3480
|
"Autoclose comments only when the cursor is to the left of whitespace."
|
|
3481
3481
|
)),
|
|
3482
3482
|
'',
|
|
3483
3483
|
],
|
|
3484
3484
|
description: ( localize(
|
|
3485
|
-
|
|
3485
|
+
516,
|
|
3486
3486
|
"Controls whether the editor should automatically close comments after the user adds an opening comment."
|
|
3487
3487
|
))
|
|
3488
3488
|
}
|
|
@@ -3496,13 +3496,13 @@ const EditorOptions = {
|
|
|
3496
3496
|
enumDescriptions: [
|
|
3497
3497
|
'',
|
|
3498
3498
|
( localize(
|
|
3499
|
-
|
|
3499
|
+
517,
|
|
3500
3500
|
"Remove adjacent closing quotes or brackets only if they were automatically inserted."
|
|
3501
3501
|
)),
|
|
3502
3502
|
'',
|
|
3503
3503
|
],
|
|
3504
3504
|
description: ( localize(
|
|
3505
|
-
|
|
3505
|
+
518,
|
|
3506
3506
|
"Controls whether the editor should remove adjacent closing quotes or brackets when deleting."
|
|
3507
3507
|
))
|
|
3508
3508
|
}
|
|
@@ -3516,13 +3516,13 @@ const EditorOptions = {
|
|
|
3516
3516
|
enumDescriptions: [
|
|
3517
3517
|
'',
|
|
3518
3518
|
( localize(
|
|
3519
|
-
|
|
3519
|
+
519,
|
|
3520
3520
|
"Type over closing quotes or brackets only if they were automatically inserted."
|
|
3521
3521
|
)),
|
|
3522
3522
|
'',
|
|
3523
3523
|
],
|
|
3524
3524
|
description: ( localize(
|
|
3525
|
-
|
|
3525
|
+
520,
|
|
3526
3526
|
"Controls whether the editor should type over closing quotes or brackets."
|
|
3527
3527
|
))
|
|
3528
3528
|
}
|
|
@@ -3535,12 +3535,12 @@ const EditorOptions = {
|
|
|
3535
3535
|
{
|
|
3536
3536
|
enumDescriptions: [
|
|
3537
3537
|
'',
|
|
3538
|
-
( localize(
|
|
3539
|
-
( localize(
|
|
3538
|
+
( localize(521, "Use language configurations to determine when to autoclose quotes.")),
|
|
3539
|
+
( localize(522, "Autoclose quotes only when the cursor is to the left of whitespace.")),
|
|
3540
3540
|
'',
|
|
3541
3541
|
],
|
|
3542
3542
|
description: ( localize(
|
|
3543
|
-
|
|
3543
|
+
523,
|
|
3544
3544
|
"Controls whether the editor should automatically close quotes after the user adds an opening quote."
|
|
3545
3545
|
))
|
|
3546
3546
|
}
|
|
@@ -3554,23 +3554,23 @@ const EditorOptions = {
|
|
|
3554
3554
|
_autoIndentFromString,
|
|
3555
3555
|
{
|
|
3556
3556
|
enumDescriptions: [
|
|
3557
|
-
( localize(
|
|
3558
|
-
( localize(
|
|
3557
|
+
( localize(524, "The editor will not insert indentation automatically.")),
|
|
3558
|
+
( localize(525, "The editor will keep the current line's indentation.")),
|
|
3559
3559
|
( localize(
|
|
3560
|
-
|
|
3560
|
+
526,
|
|
3561
3561
|
"The editor will keep the current line's indentation and honor language defined brackets."
|
|
3562
3562
|
)),
|
|
3563
3563
|
( localize(
|
|
3564
|
-
|
|
3564
|
+
527,
|
|
3565
3565
|
"The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages."
|
|
3566
3566
|
)),
|
|
3567
3567
|
( localize(
|
|
3568
|
-
|
|
3568
|
+
528,
|
|
3569
3569
|
"The editor will keep the current line's indentation, honor language defined brackets, invoke special onEnterRules defined by languages, and honor indentationRules defined by languages."
|
|
3570
3570
|
)),
|
|
3571
3571
|
],
|
|
3572
3572
|
description: ( localize(
|
|
3573
|
-
|
|
3573
|
+
529,
|
|
3574
3574
|
"Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines."
|
|
3575
3575
|
))
|
|
3576
3576
|
}
|
|
@@ -3580,7 +3580,7 @@ const EditorOptions = {
|
|
|
3580
3580
|
'autoIndentOnPaste',
|
|
3581
3581
|
false,
|
|
3582
3582
|
{ description: ( localize(
|
|
3583
|
-
|
|
3583
|
+
530,
|
|
3584
3584
|
"Controls whether the editor should automatically auto-indent the pasted content."
|
|
3585
3585
|
)) }
|
|
3586
3586
|
))),
|
|
@@ -3589,7 +3589,7 @@ const EditorOptions = {
|
|
|
3589
3589
|
'autoIndentOnPasteWithinString',
|
|
3590
3590
|
true,
|
|
3591
3591
|
{ description: ( localize(
|
|
3592
|
-
|
|
3592
|
+
531,
|
|
3593
3593
|
"Controls whether the editor should automatically auto-indent the pasted content when pasted within a string. This takes effect when autoIndentOnPaste is true."
|
|
3594
3594
|
)) }
|
|
3595
3595
|
))),
|
|
@@ -3602,15 +3602,15 @@ const EditorOptions = {
|
|
|
3602
3602
|
{
|
|
3603
3603
|
enumDescriptions: [
|
|
3604
3604
|
( localize(
|
|
3605
|
-
|
|
3605
|
+
532,
|
|
3606
3606
|
"Use language configurations to determine when to automatically surround selections."
|
|
3607
3607
|
)),
|
|
3608
|
-
( localize(
|
|
3609
|
-
( localize(
|
|
3608
|
+
( localize(533, "Surround with quotes but not brackets.")),
|
|
3609
|
+
( localize(534, "Surround with brackets but not quotes.")),
|
|
3610
3610
|
''
|
|
3611
3611
|
],
|
|
3612
3612
|
description: ( localize(
|
|
3613
|
-
|
|
3613
|
+
535,
|
|
3614
3614
|
"Controls whether the editor should automatically surround selections when typing quotes or brackets."
|
|
3615
3615
|
))
|
|
3616
3616
|
}
|
|
@@ -3622,16 +3622,16 @@ const EditorOptions = {
|
|
|
3622
3622
|
'stickyTabStops',
|
|
3623
3623
|
false,
|
|
3624
3624
|
{ description: ( localize(
|
|
3625
|
-
|
|
3625
|
+
536,
|
|
3626
3626
|
"Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."
|
|
3627
3627
|
)) }
|
|
3628
3628
|
))),
|
|
3629
|
-
codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, 'codeLens', true, { description: ( localize(
|
|
3629
|
+
codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, 'codeLens', true, { description: ( localize(537, "Controls whether the editor shows CodeLens.")) }))),
|
|
3630
3630
|
codeLensFontFamily: register(( new EditorStringOption(
|
|
3631
3631
|
EditorOption.codeLensFontFamily,
|
|
3632
3632
|
'codeLensFontFamily',
|
|
3633
3633
|
'',
|
|
3634
|
-
{ description: ( localize(
|
|
3634
|
+
{ description: ( localize(538, "Controls the font family for CodeLens.")) }
|
|
3635
3635
|
))),
|
|
3636
3636
|
codeLensFontSize: register(( new EditorIntOption(EditorOption.codeLensFontSize, 'codeLensFontSize', 0, 0, 100, {
|
|
3637
3637
|
type: 'number',
|
|
@@ -3639,7 +3639,7 @@ const EditorOptions = {
|
|
|
3639
3639
|
minimum: 0,
|
|
3640
3640
|
maximum: 100,
|
|
3641
3641
|
markdownDescription: ( localize(
|
|
3642
|
-
|
|
3642
|
+
539,
|
|
3643
3643
|
"Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."
|
|
3644
3644
|
))
|
|
3645
3645
|
}))),
|
|
@@ -3648,7 +3648,7 @@ const EditorOptions = {
|
|
|
3648
3648
|
'colorDecorators',
|
|
3649
3649
|
true,
|
|
3650
3650
|
{ description: ( localize(
|
|
3651
|
-
|
|
3651
|
+
540,
|
|
3652
3652
|
"Controls whether the editor should render the inline color decorators and color picker."
|
|
3653
3653
|
)) }
|
|
3654
3654
|
))),
|
|
@@ -3660,14 +3660,14 @@ const EditorOptions = {
|
|
|
3660
3660
|
{
|
|
3661
3661
|
enumDescriptions: [
|
|
3662
3662
|
( localize(
|
|
3663
|
-
|
|
3663
|
+
541,
|
|
3664
3664
|
"Make the color picker appear both on click and hover of the color decorator"
|
|
3665
3665
|
)),
|
|
3666
|
-
( localize(
|
|
3667
|
-
( localize(
|
|
3666
|
+
( localize(542, "Make the color picker appear on hover of the color decorator")),
|
|
3667
|
+
( localize(543, "Make the color picker appear on click of the color decorator"))
|
|
3668
3668
|
],
|
|
3669
3669
|
description: ( localize(
|
|
3670
|
-
|
|
3670
|
+
544,
|
|
3671
3671
|
"Controls the condition to make a color picker appear from a color decorator."
|
|
3672
3672
|
))
|
|
3673
3673
|
}
|
|
@@ -3680,7 +3680,7 @@ const EditorOptions = {
|
|
|
3680
3680
|
1000000,
|
|
3681
3681
|
{
|
|
3682
3682
|
markdownDescription: ( localize(
|
|
3683
|
-
|
|
3683
|
+
545,
|
|
3684
3684
|
"Controls the max number of color decorators that can be rendered in an editor at once."
|
|
3685
3685
|
))
|
|
3686
3686
|
}
|
|
@@ -3690,7 +3690,7 @@ const EditorOptions = {
|
|
|
3690
3690
|
'columnSelection',
|
|
3691
3691
|
false,
|
|
3692
3692
|
{ description: ( localize(
|
|
3693
|
-
|
|
3693
|
+
546,
|
|
3694
3694
|
"Enable that the selection with the mouse and keys is doing column selection."
|
|
3695
3695
|
)) }
|
|
3696
3696
|
))),
|
|
@@ -3701,7 +3701,7 @@ const EditorOptions = {
|
|
|
3701
3701
|
'copyWithSyntaxHighlighting',
|
|
3702
3702
|
true,
|
|
3703
3703
|
{ description: ( localize(
|
|
3704
|
-
|
|
3704
|
+
547,
|
|
3705
3705
|
"Controls whether syntax highlighting should be copied into the clipboard."
|
|
3706
3706
|
)) }
|
|
3707
3707
|
))),
|
|
@@ -3712,7 +3712,7 @@ const EditorOptions = {
|
|
|
3712
3712
|
'blink',
|
|
3713
3713
|
['blink', 'smooth', 'phase', 'expand', 'solid'],
|
|
3714
3714
|
cursorBlinkingStyleFromString,
|
|
3715
|
-
{ description: ( localize(
|
|
3715
|
+
{ description: ( localize(548, "Control the cursor animation style.")) }
|
|
3716
3716
|
))),
|
|
3717
3717
|
cursorSmoothCaretAnimation: register(( new EditorStringEnumOption(
|
|
3718
3718
|
EditorOption.cursorSmoothCaretAnimation,
|
|
@@ -3721,14 +3721,14 @@ const EditorOptions = {
|
|
|
3721
3721
|
['off', 'explicit', 'on'],
|
|
3722
3722
|
{
|
|
3723
3723
|
enumDescriptions: [
|
|
3724
|
-
( localize(
|
|
3724
|
+
( localize(549, "Smooth caret animation is disabled.")),
|
|
3725
3725
|
( localize(
|
|
3726
|
-
|
|
3726
|
+
550,
|
|
3727
3727
|
"Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture."
|
|
3728
3728
|
)),
|
|
3729
|
-
( localize(
|
|
3729
|
+
( localize(551, "Smooth caret animation is always enabled."))
|
|
3730
3730
|
],
|
|
3731
|
-
description: ( localize(
|
|
3731
|
+
description: ( localize(552, "Controls whether the smooth caret animation should be enabled."))
|
|
3732
3732
|
}
|
|
3733
3733
|
))),
|
|
3734
3734
|
cursorStyle: register(( new EditorEnumOption(
|
|
@@ -3738,7 +3738,7 @@ const EditorOptions = {
|
|
|
3738
3738
|
'line',
|
|
3739
3739
|
['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'],
|
|
3740
3740
|
cursorStyleFromString,
|
|
3741
|
-
{ description: ( localize(
|
|
3741
|
+
{ description: ( localize(553, "Controls the cursor style in insert input mode.")) }
|
|
3742
3742
|
))),
|
|
3743
3743
|
overtypeCursorStyle: register(( new EditorEnumOption(
|
|
3744
3744
|
EditorOption.overtypeCursorStyle,
|
|
@@ -3747,7 +3747,7 @@ const EditorOptions = {
|
|
|
3747
3747
|
'block',
|
|
3748
3748
|
['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'],
|
|
3749
3749
|
cursorStyleFromString,
|
|
3750
|
-
{ description: ( localize(
|
|
3750
|
+
{ description: ( localize(554, "Controls the cursor style in overtype input mode.")) }
|
|
3751
3751
|
))),
|
|
3752
3752
|
cursorSurroundingLines: register(( new EditorIntOption(
|
|
3753
3753
|
EditorOption.cursorSurroundingLines,
|
|
@@ -3756,7 +3756,7 @@ const EditorOptions = {
|
|
|
3756
3756
|
0,
|
|
3757
3757
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3758
3758
|
{ description: ( localize(
|
|
3759
|
-
|
|
3759
|
+
555,
|
|
3760
3760
|
"Controls the minimal number of visible leading lines (minimum 0) and trailing lines (minimum 1) surrounding the cursor. Known as 'scrollOff' or 'scrollOffset' in some other editors."
|
|
3761
3761
|
)) }
|
|
3762
3762
|
))),
|
|
@@ -3768,12 +3768,12 @@ const EditorOptions = {
|
|
|
3768
3768
|
{
|
|
3769
3769
|
enumDescriptions: [
|
|
3770
3770
|
( localize(
|
|
3771
|
-
|
|
3771
|
+
556,
|
|
3772
3772
|
"`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."
|
|
3773
3773
|
)),
|
|
3774
|
-
( localize(
|
|
3774
|
+
( localize(557, "`cursorSurroundingLines` is enforced always."))
|
|
3775
3775
|
],
|
|
3776
|
-
markdownDescription: ( localize(
|
|
3776
|
+
markdownDescription: ( localize(558, "Controls when `#editor.cursorSurroundingLines#` should be enforced."))
|
|
3777
3777
|
}
|
|
3778
3778
|
))),
|
|
3779
3779
|
cursorWidth: register(( new EditorIntOption(
|
|
@@ -3783,7 +3783,7 @@ const EditorOptions = {
|
|
|
3783
3783
|
0,
|
|
3784
3784
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3785
3785
|
{ markdownDescription: ( localize(
|
|
3786
|
-
|
|
3786
|
+
559,
|
|
3787
3787
|
"Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`."
|
|
3788
3788
|
)) }
|
|
3789
3789
|
))),
|
|
@@ -3794,7 +3794,7 @@ const EditorOptions = {
|
|
|
3794
3794
|
0,
|
|
3795
3795
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3796
3796
|
{ markdownDescription: ( localize(
|
|
3797
|
-
|
|
3797
|
+
560,
|
|
3798
3798
|
"Controls the height of the cursor when `#editor.cursorStyle#` is set to `line`. Cursor's max height depends on line height."
|
|
3799
3799
|
)) }
|
|
3800
3800
|
))),
|
|
@@ -3810,7 +3810,7 @@ const EditorOptions = {
|
|
|
3810
3810
|
'dragAndDrop',
|
|
3811
3811
|
true,
|
|
3812
3812
|
{ description: ( localize(
|
|
3813
|
-
|
|
3813
|
+
561,
|
|
3814
3814
|
"Controls whether the editor should allow moving selections via drag and drop."
|
|
3815
3815
|
)) }
|
|
3816
3816
|
))),
|
|
@@ -3818,7 +3818,7 @@ const EditorOptions = {
|
|
|
3818
3818
|
dropIntoEditor: register(( new EditorDropIntoEditor())),
|
|
3819
3819
|
editContext: register(( new EditorBooleanOption(EditorOption.editContext, 'editContext', true, {
|
|
3820
3820
|
description: ( localize(
|
|
3821
|
-
|
|
3821
|
+
562,
|
|
3822
3822
|
"Sets whether the EditContext API should be used instead of the text area to power input in the editor."
|
|
3823
3823
|
)),
|
|
3824
3824
|
included: isChrome || isEdge || isNative
|
|
@@ -3829,7 +3829,7 @@ const EditorOptions = {
|
|
|
3829
3829
|
false,
|
|
3830
3830
|
{
|
|
3831
3831
|
markdownDescription: ( localize(
|
|
3832
|
-
|
|
3832
|
+
563,
|
|
3833
3833
|
"Whether to render rich screen reader content when the `#editor.editContext#` setting is enabled."
|
|
3834
3834
|
)),
|
|
3835
3835
|
}
|
|
@@ -3843,11 +3843,11 @@ const EditorOptions = {
|
|
|
3843
3843
|
{
|
|
3844
3844
|
tags: ['experimental'],
|
|
3845
3845
|
enumDescriptions: [
|
|
3846
|
-
( localize(
|
|
3847
|
-
( localize(
|
|
3846
|
+
( localize(564, "Use regular DOM-based rendering.")),
|
|
3847
|
+
( localize(565, "Use GPU acceleration.")),
|
|
3848
3848
|
],
|
|
3849
3849
|
description: ( localize(
|
|
3850
|
-
|
|
3850
|
+
566,
|
|
3851
3851
|
"Controls whether to use the experimental GPU acceleration to render the editor."
|
|
3852
3852
|
))
|
|
3853
3853
|
}
|
|
@@ -3859,12 +3859,12 @@ const EditorOptions = {
|
|
|
3859
3859
|
['svg', 'font', 'off'],
|
|
3860
3860
|
{
|
|
3861
3861
|
enumDescriptions: [
|
|
3862
|
-
( localize(
|
|
3863
|
-
( localize(
|
|
3864
|
-
( localize(
|
|
3862
|
+
( localize(567, "Use a new rendering method with svgs.")),
|
|
3863
|
+
( localize(568, "Use a new rendering method with font characters.")),
|
|
3864
|
+
( localize(569, "Use the stable rendering method.")),
|
|
3865
3865
|
],
|
|
3866
3866
|
description: ( localize(
|
|
3867
|
-
|
|
3867
|
+
570,
|
|
3868
3868
|
"Controls whether whitespace is rendered with a new, experimental method."
|
|
3869
3869
|
))
|
|
3870
3870
|
}
|
|
@@ -3875,11 +3875,11 @@ const EditorOptions = {
|
|
|
3875
3875
|
'fastScrollSensitivity',
|
|
3876
3876
|
5,
|
|
3877
3877
|
x => (x <= 0 ? 5 : x),
|
|
3878
|
-
{ markdownDescription: ( localize(
|
|
3878
|
+
{ markdownDescription: ( localize(571, "Scrolling speed multiplier when pressing `Alt`.")) }
|
|
3879
3879
|
))),
|
|
3880
3880
|
find: register(( new EditorFind())),
|
|
3881
3881
|
fixedOverflowWidgets: register(( new EditorBooleanOption(EditorOption.fixedOverflowWidgets, 'fixedOverflowWidgets', false))),
|
|
3882
|
-
folding: register(( new EditorBooleanOption(EditorOption.folding, 'folding', true, { description: ( localize(
|
|
3882
|
+
folding: register(( new EditorBooleanOption(EditorOption.folding, 'folding', true, { description: ( localize(572, "Controls whether the editor has code folding enabled.")) }))),
|
|
3883
3883
|
foldingStrategy: register(( new EditorStringEnumOption(
|
|
3884
3884
|
EditorOption.foldingStrategy,
|
|
3885
3885
|
'foldingStrategy',
|
|
@@ -3888,25 +3888,25 @@ const EditorOptions = {
|
|
|
3888
3888
|
{
|
|
3889
3889
|
enumDescriptions: [
|
|
3890
3890
|
( localize(
|
|
3891
|
-
|
|
3891
|
+
573,
|
|
3892
3892
|
"Use a language-specific folding strategy if available, else the indentation-based one."
|
|
3893
3893
|
)),
|
|
3894
|
-
( localize(
|
|
3894
|
+
( localize(574, "Use the indentation-based folding strategy.")),
|
|
3895
3895
|
],
|
|
3896
|
-
description: ( localize(
|
|
3896
|
+
description: ( localize(575, "Controls the strategy for computing folding ranges."))
|
|
3897
3897
|
}
|
|
3898
3898
|
))),
|
|
3899
3899
|
foldingHighlight: register(( new EditorBooleanOption(
|
|
3900
3900
|
EditorOption.foldingHighlight,
|
|
3901
3901
|
'foldingHighlight',
|
|
3902
3902
|
true,
|
|
3903
|
-
{ description: ( localize(
|
|
3903
|
+
{ description: ( localize(576, "Controls whether the editor should highlight folded ranges.")) }
|
|
3904
3904
|
))),
|
|
3905
3905
|
foldingImportsByDefault: register(( new EditorBooleanOption(
|
|
3906
3906
|
EditorOption.foldingImportsByDefault,
|
|
3907
3907
|
'foldingImportsByDefault',
|
|
3908
3908
|
false,
|
|
3909
|
-
{ description: ( localize(
|
|
3909
|
+
{ description: ( localize(577, "Controls whether the editor automatically collapses import ranges.")) }
|
|
3910
3910
|
))),
|
|
3911
3911
|
foldingMaximumRegions: register(( new EditorIntOption(
|
|
3912
3912
|
EditorOption.foldingMaximumRegions,
|
|
@@ -3915,7 +3915,7 @@ const EditorOptions = {
|
|
|
3915
3915
|
10,
|
|
3916
3916
|
65000,
|
|
3917
3917
|
{ description: ( localize(
|
|
3918
|
-
|
|
3918
|
+
578,
|
|
3919
3919
|
"The maximum number of foldable regions. Increasing this value may result in the editor becoming less responsive when the current source has a large number of foldable regions."
|
|
3920
3920
|
)) }
|
|
3921
3921
|
))),
|
|
@@ -3924,7 +3924,7 @@ const EditorOptions = {
|
|
|
3924
3924
|
'unfoldOnClickAfterEndOfLine',
|
|
3925
3925
|
false,
|
|
3926
3926
|
{ description: ( localize(
|
|
3927
|
-
|
|
3927
|
+
579,
|
|
3928
3928
|
"Controls whether clicking on the empty content after a folded line will unfold the line."
|
|
3929
3929
|
)) }
|
|
3930
3930
|
))),
|
|
@@ -3932,7 +3932,7 @@ const EditorOptions = {
|
|
|
3932
3932
|
EditorOption.fontFamily,
|
|
3933
3933
|
'fontFamily',
|
|
3934
3934
|
EDITOR_FONT_DEFAULTS.fontFamily,
|
|
3935
|
-
{ description: ( localize(
|
|
3935
|
+
{ description: ( localize(580, "Controls the font family.")) }
|
|
3936
3936
|
))),
|
|
3937
3937
|
fontInfo: register(( new EditorFontInfo())),
|
|
3938
3938
|
fontLigatures2: register(( new EditorFontLigatures())),
|
|
@@ -3944,7 +3944,7 @@ const EditorOptions = {
|
|
|
3944
3944
|
'formatOnPaste',
|
|
3945
3945
|
false,
|
|
3946
3946
|
{ description: ( localize(
|
|
3947
|
-
|
|
3947
|
+
581,
|
|
3948
3948
|
"Controls whether the editor should automatically format the pasted content. A formatter must be available and the formatter should be able to format a range in a document."
|
|
3949
3949
|
)) }
|
|
3950
3950
|
))),
|
|
@@ -3953,7 +3953,7 @@ const EditorOptions = {
|
|
|
3953
3953
|
'formatOnType',
|
|
3954
3954
|
false,
|
|
3955
3955
|
{ description: ( localize(
|
|
3956
|
-
|
|
3956
|
+
582,
|
|
3957
3957
|
"Controls whether the editor should automatically format the line after typing."
|
|
3958
3958
|
)) }
|
|
3959
3959
|
))),
|
|
@@ -3962,7 +3962,7 @@ const EditorOptions = {
|
|
|
3962
3962
|
'glyphMargin',
|
|
3963
3963
|
true,
|
|
3964
3964
|
{ description: ( localize(
|
|
3965
|
-
|
|
3965
|
+
583,
|
|
3966
3966
|
"Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."
|
|
3967
3967
|
)) }
|
|
3968
3968
|
))),
|
|
@@ -3971,7 +3971,7 @@ const EditorOptions = {
|
|
|
3971
3971
|
EditorOption.hideCursorInOverviewRuler,
|
|
3972
3972
|
'hideCursorInOverviewRuler',
|
|
3973
3973
|
false,
|
|
3974
|
-
{ description: ( localize(
|
|
3974
|
+
{ description: ( localize(584, "Controls whether the cursor should be hidden in the overview ruler.")) }
|
|
3975
3975
|
))),
|
|
3976
3976
|
hover: register(( new EditorHover())),
|
|
3977
3977
|
inDiffEditor: register(( new EditorBooleanOption(EditorOption.inDiffEditor, 'inDiffEditor', false))),
|
|
@@ -3979,14 +3979,14 @@ const EditorOptions = {
|
|
|
3979
3979
|
EditorOption.inertialScroll,
|
|
3980
3980
|
'inertialScroll',
|
|
3981
3981
|
false,
|
|
3982
|
-
{ description: ( localize(
|
|
3982
|
+
{ description: ( localize(585, "Make scrolling inertial - mostly useful with touchpad on linux.")) }
|
|
3983
3983
|
))),
|
|
3984
3984
|
letterSpacing: register(( new EditorFloatOption(
|
|
3985
3985
|
EditorOption.letterSpacing,
|
|
3986
3986
|
'letterSpacing',
|
|
3987
3987
|
EDITOR_FONT_DEFAULTS.letterSpacing,
|
|
3988
3988
|
x => EditorFloatOption.clamp(x, -5, 20),
|
|
3989
|
-
{ description: ( localize(
|
|
3989
|
+
{ description: ( localize(586, "Controls the letter spacing in pixels.")) }
|
|
3990
3990
|
))),
|
|
3991
3991
|
lightbulb: register(( new EditorLightbulb())),
|
|
3992
3992
|
lineDecorationsWidth: register(( new EditorLineDecorationsWidth())),
|
|
@@ -3998,12 +3998,12 @@ const EditorOptions = {
|
|
|
3998
3998
|
'linkedEditing',
|
|
3999
3999
|
false,
|
|
4000
4000
|
{ description: ( localize(
|
|
4001
|
-
|
|
4001
|
+
587,
|
|
4002
4002
|
"Controls whether the editor has linked editing enabled. Depending on the language, related symbols such as HTML tags, are updated while editing."
|
|
4003
4003
|
)) }
|
|
4004
4004
|
))),
|
|
4005
4005
|
links: register(( new EditorBooleanOption(EditorOption.links, 'links', true, { description: ( localize(
|
|
4006
|
-
|
|
4006
|
+
588,
|
|
4007
4007
|
"Controls whether the editor should detect links and make them clickable."
|
|
4008
4008
|
)) }))),
|
|
4009
4009
|
matchBrackets: register(( new EditorStringEnumOption(
|
|
@@ -4011,7 +4011,7 @@ const EditorOptions = {
|
|
|
4011
4011
|
'matchBrackets',
|
|
4012
4012
|
'always',
|
|
4013
4013
|
['always', 'near', 'never'],
|
|
4014
|
-
{ description: ( localize(
|
|
4014
|
+
{ description: ( localize(589, "Highlight matching brackets.")) }
|
|
4015
4015
|
))),
|
|
4016
4016
|
minimap: register(( new EditorMinimap())),
|
|
4017
4017
|
mouseStyle: register(( new EditorStringEnumOption(EditorOption.mouseStyle, 'mouseStyle', 'text', ['text', 'default', 'copy']))),
|
|
@@ -4021,18 +4021,18 @@ const EditorOptions = {
|
|
|
4021
4021
|
1,
|
|
4022
4022
|
x => (x === 0 ? 1 : x),
|
|
4023
4023
|
{ markdownDescription: ( localize(
|
|
4024
|
-
|
|
4024
|
+
590,
|
|
4025
4025
|
"A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."
|
|
4026
4026
|
)) }
|
|
4027
4027
|
))),
|
|
4028
4028
|
mouseWheelZoom: register(( new EditorBooleanOption(EditorOption.mouseWheelZoom, 'mouseWheelZoom', false, {
|
|
4029
4029
|
markdownDescription: isMacintosh
|
|
4030
4030
|
? ( localize(
|
|
4031
|
-
|
|
4031
|
+
591,
|
|
4032
4032
|
"Zoom the font of the editor when using mouse wheel and holding `Cmd`."
|
|
4033
4033
|
))
|
|
4034
4034
|
: ( localize(
|
|
4035
|
-
|
|
4035
|
+
592,
|
|
4036
4036
|
"Zoom the font of the editor when using mouse wheel and holding `Ctrl`."
|
|
4037
4037
|
))
|
|
4038
4038
|
}))),
|
|
@@ -4040,7 +4040,7 @@ const EditorOptions = {
|
|
|
4040
4040
|
EditorOption.multiCursorMergeOverlapping,
|
|
4041
4041
|
'multiCursorMergeOverlapping',
|
|
4042
4042
|
true,
|
|
4043
|
-
{ description: ( localize(
|
|
4043
|
+
{ description: ( localize(593, "Merge multiple cursors when they are overlapping.")) }
|
|
4044
4044
|
))),
|
|
4045
4045
|
multiCursorModifier: register(( new EditorEnumOption(
|
|
4046
4046
|
EditorOption.multiCursorModifier,
|
|
@@ -4051,11 +4051,11 @@ const EditorOptions = {
|
|
|
4051
4051
|
_multiCursorModifierFromString,
|
|
4052
4052
|
{
|
|
4053
4053
|
markdownEnumDescriptions: [
|
|
4054
|
-
( localize(
|
|
4055
|
-
( localize(
|
|
4054
|
+
( localize(594, "Maps to `Control` on Windows and Linux and to `Command` on macOS.")),
|
|
4055
|
+
( localize(595, "Maps to `Alt` on Windows and Linux and to `Option` on macOS."))
|
|
4056
4056
|
],
|
|
4057
4057
|
markdownDescription: ( localize(
|
|
4058
|
-
|
|
4058
|
+
596,
|
|
4059
4059
|
"The modifier to be used to add multiple cursors with the mouse. The Go to Definition and Open Link mouse gestures will adapt such that they do not conflict with the [multicursor modifier](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier)."
|
|
4060
4060
|
))
|
|
4061
4061
|
}
|
|
@@ -4066,7 +4066,7 @@ const EditorOptions = {
|
|
|
4066
4066
|
'default',
|
|
4067
4067
|
['default', 'openLink', 'ctrlLeftClick'],
|
|
4068
4068
|
{ description: ( localize(
|
|
4069
|
-
|
|
4069
|
+
597,
|
|
4070
4070
|
"Controls what happens when middle mouse button is clicked in the editor."
|
|
4071
4071
|
)) }
|
|
4072
4072
|
))),
|
|
@@ -4077,18 +4077,18 @@ const EditorOptions = {
|
|
|
4077
4077
|
['spread', 'full'],
|
|
4078
4078
|
{
|
|
4079
4079
|
markdownEnumDescriptions: [
|
|
4080
|
-
( localize(
|
|
4081
|
-
( localize(
|
|
4080
|
+
( localize(598, "Each cursor pastes a single line of the text.")),
|
|
4081
|
+
( localize(599, "Each cursor pastes the full text."))
|
|
4082
4082
|
],
|
|
4083
4083
|
markdownDescription: ( localize(
|
|
4084
|
-
|
|
4084
|
+
600,
|
|
4085
4085
|
"Controls pasting when the line count of the pasted text matches the cursor count."
|
|
4086
4086
|
))
|
|
4087
4087
|
}
|
|
4088
4088
|
))),
|
|
4089
4089
|
multiCursorLimit: register(( new EditorIntOption(EditorOption.multiCursorLimit, 'multiCursorLimit', 10000, 1, 100000, {
|
|
4090
4090
|
markdownDescription: ( localize(
|
|
4091
|
-
|
|
4091
|
+
601,
|
|
4092
4092
|
"Controls the max number of cursors that can be in an active editor at once."
|
|
4093
4093
|
))
|
|
4094
4094
|
}))),
|
|
@@ -4099,12 +4099,12 @@ const EditorOptions = {
|
|
|
4099
4099
|
['off', 'singleFile', 'multiFile'],
|
|
4100
4100
|
{
|
|
4101
4101
|
markdownEnumDescriptions: [
|
|
4102
|
-
( localize(
|
|
4103
|
-
( localize(
|
|
4104
|
-
( localize(
|
|
4102
|
+
( localize(602, "Does not highlight occurrences.")),
|
|
4103
|
+
( localize(603, "Highlights occurrences only in the current file.")),
|
|
4104
|
+
( localize(604, "Experimental: Highlights occurrences across all valid open files."))
|
|
4105
4105
|
],
|
|
4106
4106
|
markdownDescription: ( localize(
|
|
4107
|
-
|
|
4107
|
+
605,
|
|
4108
4108
|
"Controls whether occurrences should be highlighted across open files."
|
|
4109
4109
|
))
|
|
4110
4110
|
}
|
|
@@ -4117,7 +4117,7 @@ const EditorOptions = {
|
|
|
4117
4117
|
2000,
|
|
4118
4118
|
{
|
|
4119
4119
|
description: ( localize(
|
|
4120
|
-
|
|
4120
|
+
606,
|
|
4121
4121
|
"Controls the delay in milliseconds after which occurrences are highlighted."
|
|
4122
4122
|
)),
|
|
4123
4123
|
tags: ['preview']
|
|
@@ -4127,14 +4127,14 @@ const EditorOptions = {
|
|
|
4127
4127
|
EditorOption.overtypeOnPaste,
|
|
4128
4128
|
'overtypeOnPaste',
|
|
4129
4129
|
true,
|
|
4130
|
-
{ description: ( localize(
|
|
4130
|
+
{ description: ( localize(607, "Controls whether pasting should overtype.")) }
|
|
4131
4131
|
))),
|
|
4132
4132
|
overviewRulerBorder: register(( new EditorBooleanOption(
|
|
4133
4133
|
EditorOption.overviewRulerBorder,
|
|
4134
4134
|
'overviewRulerBorder',
|
|
4135
4135
|
true,
|
|
4136
4136
|
{ description: ( localize(
|
|
4137
|
-
|
|
4137
|
+
608,
|
|
4138
4138
|
"Controls whether a border should be drawn around the overview ruler."
|
|
4139
4139
|
)) }
|
|
4140
4140
|
))),
|
|
@@ -4149,11 +4149,11 @@ const EditorOptions = {
|
|
|
4149
4149
|
['tree', 'editor'],
|
|
4150
4150
|
{
|
|
4151
4151
|
enumDescriptions: [
|
|
4152
|
-
( localize(
|
|
4153
|
-
( localize(
|
|
4152
|
+
( localize(609, "Focus the tree when opening peek")),
|
|
4153
|
+
( localize(610, "Focus the editor when opening peek"))
|
|
4154
4154
|
],
|
|
4155
4155
|
description: ( localize(
|
|
4156
|
-
|
|
4156
|
+
611,
|
|
4157
4157
|
"Controls whether to focus the inline editor or the tree in the peek widget."
|
|
4158
4158
|
))
|
|
4159
4159
|
}
|
|
@@ -4164,7 +4164,7 @@ const EditorOptions = {
|
|
|
4164
4164
|
'definitionLinkOpensInPeek',
|
|
4165
4165
|
false,
|
|
4166
4166
|
{ description: ( localize(
|
|
4167
|
-
|
|
4167
|
+
612,
|
|
4168
4168
|
"Controls whether the Go to Definition mouse gesture always opens the peek widget."
|
|
4169
4169
|
)) }
|
|
4170
4170
|
))),
|
|
@@ -4177,7 +4177,7 @@ const EditorOptions = {
|
|
|
4177
4177
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4178
4178
|
{
|
|
4179
4179
|
description: ( localize(
|
|
4180
|
-
|
|
4180
|
+
613,
|
|
4181
4181
|
"Controls the delay in milliseconds after which quick suggestions will show up."
|
|
4182
4182
|
)),
|
|
4183
4183
|
experiment: {
|
|
@@ -4191,20 +4191,20 @@ const EditorOptions = {
|
|
|
4191
4191
|
EditorOption.renameOnType,
|
|
4192
4192
|
'renameOnType',
|
|
4193
4193
|
false,
|
|
4194
|
-
{ description: ( localize(
|
|
4194
|
+
{ description: ( localize(614, "Controls whether the editor auto renames on type.")), markdownDeprecationMessage: ( localize(615, "Deprecated, use `#editor.linkedEditing#` instead.")) }
|
|
4195
4195
|
))),
|
|
4196
4196
|
renderControlCharacters: register(( new EditorBooleanOption(
|
|
4197
4197
|
EditorOption.renderControlCharacters,
|
|
4198
4198
|
'renderControlCharacters',
|
|
4199
4199
|
true,
|
|
4200
|
-
{ description: ( localize(
|
|
4200
|
+
{ description: ( localize(616, "Controls whether the editor should render control characters.")), restricted: true }
|
|
4201
4201
|
))),
|
|
4202
4202
|
renderFinalNewline: register(( new EditorStringEnumOption(
|
|
4203
4203
|
EditorOption.renderFinalNewline,
|
|
4204
4204
|
'renderFinalNewline',
|
|
4205
4205
|
(isLinux ? 'dimmed' : 'on'),
|
|
4206
4206
|
['off', 'on', 'dimmed'],
|
|
4207
|
-
{ description: ( localize(
|
|
4207
|
+
{ description: ( localize(617, "Render last line number when the file ends with a newline.")) }
|
|
4208
4208
|
))),
|
|
4209
4209
|
renderLineHighlight: register(( new EditorStringEnumOption(
|
|
4210
4210
|
EditorOption.renderLineHighlight,
|
|
@@ -4216,9 +4216,9 @@ const EditorOptions = {
|
|
|
4216
4216
|
'',
|
|
4217
4217
|
'',
|
|
4218
4218
|
'',
|
|
4219
|
-
( localize(
|
|
4219
|
+
( localize(618, "Highlights both the gutter and the current line.")),
|
|
4220
4220
|
],
|
|
4221
|
-
description: ( localize(
|
|
4221
|
+
description: ( localize(619, "Controls how the editor should render the current line highlight."))
|
|
4222
4222
|
}
|
|
4223
4223
|
))),
|
|
4224
4224
|
renderLineHighlightOnlyWhenFocus: register(( new EditorBooleanOption(
|
|
@@ -4226,7 +4226,7 @@ const EditorOptions = {
|
|
|
4226
4226
|
'renderLineHighlightOnlyWhenFocus',
|
|
4227
4227
|
false,
|
|
4228
4228
|
{ description: ( localize(
|
|
4229
|
-
|
|
4229
|
+
620,
|
|
4230
4230
|
"Controls if the editor should render the current line highlight only when the editor is focused."
|
|
4231
4231
|
)) }
|
|
4232
4232
|
))),
|
|
@@ -4245,14 +4245,14 @@ const EditorOptions = {
|
|
|
4245
4245
|
enumDescriptions: [
|
|
4246
4246
|
'',
|
|
4247
4247
|
( localize(
|
|
4248
|
-
|
|
4248
|
+
621,
|
|
4249
4249
|
"Render whitespace characters except for single spaces between words."
|
|
4250
4250
|
)),
|
|
4251
|
-
( localize(
|
|
4252
|
-
( localize(
|
|
4251
|
+
( localize(622, "Render whitespace characters only on selected text.")),
|
|
4252
|
+
( localize(623, "Render only trailing whitespace characters.")),
|
|
4253
4253
|
''
|
|
4254
4254
|
],
|
|
4255
|
-
description: ( localize(
|
|
4255
|
+
description: ( localize(624, "Controls how the editor should render whitespace characters."))
|
|
4256
4256
|
}
|
|
4257
4257
|
))),
|
|
4258
4258
|
revealHorizontalRightPadding: register(( new EditorIntOption(
|
|
@@ -4266,7 +4266,7 @@ const EditorOptions = {
|
|
|
4266
4266
|
EditorOption.roundedSelection,
|
|
4267
4267
|
'roundedSelection',
|
|
4268
4268
|
true,
|
|
4269
|
-
{ description: ( localize(
|
|
4269
|
+
{ description: ( localize(625, "Controls whether selections should have rounded corners.")) }
|
|
4270
4270
|
))),
|
|
4271
4271
|
rulers: register(( new EditorRulers())),
|
|
4272
4272
|
scrollbar: register(( new EditorScrollbar())),
|
|
@@ -4277,7 +4277,7 @@ const EditorOptions = {
|
|
|
4277
4277
|
0,
|
|
4278
4278
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4279
4279
|
{ description: ( localize(
|
|
4280
|
-
|
|
4280
|
+
626,
|
|
4281
4281
|
"Controls the number of extra characters beyond which the editor will scroll horizontally."
|
|
4282
4282
|
)) }
|
|
4283
4283
|
))),
|
|
@@ -4285,14 +4285,14 @@ const EditorOptions = {
|
|
|
4285
4285
|
EditorOption.scrollBeyondLastLine,
|
|
4286
4286
|
'scrollBeyondLastLine',
|
|
4287
4287
|
true,
|
|
4288
|
-
{ description: ( localize(
|
|
4288
|
+
{ description: ( localize(627, "Controls whether the editor will scroll beyond the last line.")) }
|
|
4289
4289
|
))),
|
|
4290
4290
|
scrollOnMiddleClick: register(( new EditorBooleanOption(
|
|
4291
4291
|
EditorOption.scrollOnMiddleClick,
|
|
4292
4292
|
'scrollOnMiddleClick',
|
|
4293
4293
|
false,
|
|
4294
4294
|
{ description: ( localize(
|
|
4295
|
-
|
|
4295
|
+
628,
|
|
4296
4296
|
"Controls whether the editor will scroll when the middle button is pressed."
|
|
4297
4297
|
)) }
|
|
4298
4298
|
))),
|
|
@@ -4301,12 +4301,12 @@ const EditorOptions = {
|
|
|
4301
4301
|
'scrollPredominantAxis',
|
|
4302
4302
|
true,
|
|
4303
4303
|
{ description: ( localize(
|
|
4304
|
-
|
|
4304
|
+
629,
|
|
4305
4305
|
"Scroll only along the predominant axis when scrolling both vertically and horizontally at the same time. Prevents horizontal drift when scrolling vertically on a trackpad."
|
|
4306
4306
|
)) }
|
|
4307
4307
|
))),
|
|
4308
4308
|
selectionClipboard: register(( new EditorBooleanOption(EditorOption.selectionClipboard, 'selectionClipboard', true, {
|
|
4309
|
-
description: ( localize(
|
|
4309
|
+
description: ( localize(630, "Controls whether the Linux primary clipboard should be supported.")),
|
|
4310
4310
|
included: isLinux
|
|
4311
4311
|
}))),
|
|
4312
4312
|
selectionHighlight: register(( new EditorBooleanOption(
|
|
@@ -4314,7 +4314,7 @@ const EditorOptions = {
|
|
|
4314
4314
|
'selectionHighlight',
|
|
4315
4315
|
true,
|
|
4316
4316
|
{ description: ( localize(
|
|
4317
|
-
|
|
4317
|
+
631,
|
|
4318
4318
|
"Controls whether the editor should highlight matches similar to the selection."
|
|
4319
4319
|
)) }
|
|
4320
4320
|
))),
|
|
@@ -4325,7 +4325,7 @@ const EditorOptions = {
|
|
|
4325
4325
|
0,
|
|
4326
4326
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4327
4327
|
{ description: ( localize(
|
|
4328
|
-
|
|
4328
|
+
632,
|
|
4329
4329
|
"Controls how many characters can be in the selection before similiar matches are not highlighted. Set to zero for unlimited."
|
|
4330
4330
|
)) }
|
|
4331
4331
|
))),
|
|
@@ -4334,7 +4334,7 @@ const EditorOptions = {
|
|
|
4334
4334
|
'selectionHighlightMultiline',
|
|
4335
4335
|
false,
|
|
4336
4336
|
{ description: ( localize(
|
|
4337
|
-
|
|
4337
|
+
633,
|
|
4338
4338
|
"Controls whether the editor should highlight selection matches that span multiple lines."
|
|
4339
4339
|
)) }
|
|
4340
4340
|
))),
|
|
@@ -4346,19 +4346,19 @@ const EditorOptions = {
|
|
|
4346
4346
|
['always', 'never', 'mouseover'],
|
|
4347
4347
|
{
|
|
4348
4348
|
enumDescriptions: [
|
|
4349
|
-
( localize(
|
|
4350
|
-
( localize(
|
|
4351
|
-
( localize(
|
|
4349
|
+
( localize(634, "Always show the folding controls.")),
|
|
4350
|
+
( localize(635, "Never show the folding controls and reduce the gutter size.")),
|
|
4351
|
+
( localize(636, "Only show the folding controls when the mouse is over the gutter.")),
|
|
4352
4352
|
],
|
|
4353
|
-
description: ( localize(
|
|
4353
|
+
description: ( localize(637, "Controls when the folding controls on the gutter are shown."))
|
|
4354
4354
|
}
|
|
4355
4355
|
))),
|
|
4356
|
-
showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, 'showUnused', true, { description: ( localize(
|
|
4356
|
+
showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, 'showUnused', true, { description: ( localize(638, "Controls fading out of unused code.")) }))),
|
|
4357
4357
|
showDeprecated: register(( new EditorBooleanOption(
|
|
4358
4358
|
EditorOption.showDeprecated,
|
|
4359
4359
|
'showDeprecated',
|
|
4360
4360
|
true,
|
|
4361
|
-
{ description: ( localize(
|
|
4361
|
+
{ description: ( localize(639, "Controls strikethrough deprecated variables.")) }
|
|
4362
4362
|
))),
|
|
4363
4363
|
inlayHints: register(( new EditorInlayHints())),
|
|
4364
4364
|
snippetSuggestions: register(( new EditorStringEnumOption(
|
|
@@ -4368,13 +4368,13 @@ const EditorOptions = {
|
|
|
4368
4368
|
['top', 'bottom', 'inline', 'none'],
|
|
4369
4369
|
{
|
|
4370
4370
|
enumDescriptions: [
|
|
4371
|
-
( localize(
|
|
4372
|
-
( localize(
|
|
4373
|
-
( localize(
|
|
4374
|
-
( localize(
|
|
4371
|
+
( localize(640, "Show snippet suggestions on top of other suggestions.")),
|
|
4372
|
+
( localize(641, "Show snippet suggestions below other suggestions.")),
|
|
4373
|
+
( localize(642, "Show snippets suggestions with other suggestions.")),
|
|
4374
|
+
( localize(643, "Do not show snippet suggestions.")),
|
|
4375
4375
|
],
|
|
4376
4376
|
description: ( localize(
|
|
4377
|
-
|
|
4377
|
+
644,
|
|
4378
4378
|
"Controls whether snippets are shown with other suggestions and how they are sorted."
|
|
4379
4379
|
))
|
|
4380
4380
|
}
|
|
@@ -4384,7 +4384,7 @@ const EditorOptions = {
|
|
|
4384
4384
|
EditorOption.smoothScrolling,
|
|
4385
4385
|
'smoothScrolling',
|
|
4386
4386
|
false,
|
|
4387
|
-
{ description: ( localize(
|
|
4387
|
+
{ description: ( localize(645, "Controls whether the editor will scroll using an animation.")) }
|
|
4388
4388
|
))),
|
|
4389
4389
|
stopRenderingLineAfter: register(( new EditorIntOption(
|
|
4390
4390
|
EditorOption.stopRenderingLineAfter,
|
|
@@ -4400,7 +4400,7 @@ const EditorOptions = {
|
|
|
4400
4400
|
'inlineCompletionsAccessibilityVerbose',
|
|
4401
4401
|
false,
|
|
4402
4402
|
{ description: ( localize(
|
|
4403
|
-
|
|
4403
|
+
646,
|
|
4404
4404
|
"Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."
|
|
4405
4405
|
)) }
|
|
4406
4406
|
))),
|
|
@@ -4411,7 +4411,7 @@ const EditorOptions = {
|
|
|
4411
4411
|
0,
|
|
4412
4412
|
1000,
|
|
4413
4413
|
{ markdownDescription: ( localize(
|
|
4414
|
-
|
|
4414
|
+
647,
|
|
4415
4415
|
"Font size for the suggest widget. When set to {0}, the value of {1} is used.",
|
|
4416
4416
|
'`0`',
|
|
4417
4417
|
'`#editor.fontSize#`'
|
|
@@ -4424,7 +4424,7 @@ const EditorOptions = {
|
|
|
4424
4424
|
0,
|
|
4425
4425
|
1000,
|
|
4426
4426
|
{ markdownDescription: ( localize(
|
|
4427
|
-
|
|
4427
|
+
648,
|
|
4428
4428
|
"Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.",
|
|
4429
4429
|
'`0`',
|
|
4430
4430
|
'`#editor.lineHeight#`'
|
|
@@ -4435,7 +4435,7 @@ const EditorOptions = {
|
|
|
4435
4435
|
'suggestOnTriggerCharacters',
|
|
4436
4436
|
true,
|
|
4437
4437
|
{ description: ( localize(
|
|
4438
|
-
|
|
4438
|
+
649,
|
|
4439
4439
|
"Controls whether suggestions should automatically show up when typing trigger characters."
|
|
4440
4440
|
)) }
|
|
4441
4441
|
))),
|
|
@@ -4446,18 +4446,18 @@ const EditorOptions = {
|
|
|
4446
4446
|
['first', 'recentlyUsed', 'recentlyUsedByPrefix'],
|
|
4447
4447
|
{
|
|
4448
4448
|
markdownEnumDescriptions: [
|
|
4449
|
-
( localize(
|
|
4449
|
+
( localize(650, "Always select the first suggestion.")),
|
|
4450
4450
|
( localize(
|
|
4451
|
-
|
|
4451
|
+
651,
|
|
4452
4452
|
"Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently."
|
|
4453
4453
|
)),
|
|
4454
4454
|
( localize(
|
|
4455
|
-
|
|
4455
|
+
652,
|
|
4456
4456
|
"Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`."
|
|
4457
4457
|
)),
|
|
4458
4458
|
],
|
|
4459
4459
|
description: ( localize(
|
|
4460
|
-
|
|
4460
|
+
653,
|
|
4461
4461
|
"Controls how suggestions are pre-selected when showing the suggest list."
|
|
4462
4462
|
))
|
|
4463
4463
|
}
|
|
@@ -4470,16 +4470,16 @@ const EditorOptions = {
|
|
|
4470
4470
|
{
|
|
4471
4471
|
enumDescriptions: [
|
|
4472
4472
|
( localize(
|
|
4473
|
-
|
|
4473
|
+
654,
|
|
4474
4474
|
"Tab complete will insert the best matching suggestion when pressing tab."
|
|
4475
4475
|
)),
|
|
4476
|
-
( localize(
|
|
4476
|
+
( localize(655, "Disable tab completions.")),
|
|
4477
4477
|
( localize(
|
|
4478
|
-
|
|
4478
|
+
656,
|
|
4479
4479
|
"Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."
|
|
4480
4480
|
)),
|
|
4481
4481
|
],
|
|
4482
|
-
description: ( localize(
|
|
4482
|
+
description: ( localize(657, "Enables tab completions."))
|
|
4483
4483
|
}
|
|
4484
4484
|
))),
|
|
4485
4485
|
tabIndex: register(( new EditorIntOption(EditorOption.tabIndex, 'tabIndex', 0, -1, Constants.MAX_SAFE_SMALL_INTEGER))),
|
|
@@ -4488,7 +4488,7 @@ const EditorOptions = {
|
|
|
4488
4488
|
'trimWhitespaceOnDelete',
|
|
4489
4489
|
false,
|
|
4490
4490
|
{ description: ( localize(
|
|
4491
|
-
|
|
4491
|
+
658,
|
|
4492
4492
|
"Controls whether the editor will also delete the next line's indentation whitespace when deleting a newline."
|
|
4493
4493
|
)) }
|
|
4494
4494
|
))),
|
|
@@ -4500,11 +4500,11 @@ const EditorOptions = {
|
|
|
4500
4500
|
['auto', 'off', 'prompt'],
|
|
4501
4501
|
{
|
|
4502
4502
|
enumDescriptions: [
|
|
4503
|
-
( localize(
|
|
4504
|
-
( localize(
|
|
4505
|
-
( localize(
|
|
4503
|
+
( localize(659, "Unusual line terminators are automatically removed.")),
|
|
4504
|
+
( localize(660, "Unusual line terminators are ignored.")),
|
|
4505
|
+
( localize(661, "Unusual line terminators prompt to be removed.")),
|
|
4506
4506
|
],
|
|
4507
|
-
description: ( localize(
|
|
4507
|
+
description: ( localize(662, "Remove unusual line terminators that might cause problems."))
|
|
4508
4508
|
}
|
|
4509
4509
|
))),
|
|
4510
4510
|
useShadowDOM: register(( new EditorBooleanOption(EditorOption.useShadowDOM, 'useShadowDOM', true))),
|
|
@@ -4513,20 +4513,20 @@ const EditorOptions = {
|
|
|
4513
4513
|
'useTabStops',
|
|
4514
4514
|
true,
|
|
4515
4515
|
{ description: ( localize(
|
|
4516
|
-
|
|
4516
|
+
663,
|
|
4517
4517
|
"Spaces and tabs are inserted and deleted in alignment with tab stops."
|
|
4518
4518
|
)) }
|
|
4519
4519
|
))),
|
|
4520
4520
|
wordBreak: register(( new EditorStringEnumOption(EditorOption.wordBreak, 'wordBreak', 'normal', ['normal', 'keepAll'], {
|
|
4521
4521
|
markdownEnumDescriptions: [
|
|
4522
|
-
( localize(
|
|
4522
|
+
( localize(664, "Use the default line break rule.")),
|
|
4523
4523
|
( localize(
|
|
4524
|
-
|
|
4524
|
+
665,
|
|
4525
4525
|
"Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for normal."
|
|
4526
4526
|
)),
|
|
4527
4527
|
],
|
|
4528
4528
|
description: ( localize(
|
|
4529
|
-
|
|
4529
|
+
666,
|
|
4530
4530
|
"Controls the word break rules used for Chinese/Japanese/Korean (CJK) text."
|
|
4531
4531
|
))
|
|
4532
4532
|
}))),
|
|
@@ -4536,7 +4536,7 @@ const EditorOptions = {
|
|
|
4536
4536
|
'wordSeparators',
|
|
4537
4537
|
USUAL_WORD_SEPARATORS,
|
|
4538
4538
|
{ description: ( localize(
|
|
4539
|
-
|
|
4539
|
+
667,
|
|
4540
4540
|
"Characters that will be used as word separators when doing word related navigations or operations."
|
|
4541
4541
|
)) }
|
|
4542
4542
|
))),
|
|
@@ -4547,15 +4547,15 @@ const EditorOptions = {
|
|
|
4547
4547
|
['off', 'on', 'wordWrapColumn', 'bounded'],
|
|
4548
4548
|
{
|
|
4549
4549
|
markdownEnumDescriptions: [
|
|
4550
|
-
( localize(
|
|
4551
|
-
( localize(
|
|
4552
|
-
( localize(
|
|
4550
|
+
( localize(668, "Lines will never wrap.")),
|
|
4551
|
+
( localize(669, "Lines will wrap at the viewport width.")),
|
|
4552
|
+
( localize(670, "Lines will wrap at `#editor.wordWrapColumn#`.")),
|
|
4553
4553
|
( localize(
|
|
4554
|
-
|
|
4554
|
+
671,
|
|
4555
4555
|
"Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`."
|
|
4556
4556
|
)),
|
|
4557
4557
|
],
|
|
4558
|
-
description: ( localize(
|
|
4558
|
+
description: ( localize(672, "Controls how lines should wrap."))
|
|
4559
4559
|
}
|
|
4560
4560
|
))),
|
|
4561
4561
|
wordWrapBreakAfterCharacters: register(( new EditorStringOption(
|
|
@@ -4576,7 +4576,7 @@ const EditorOptions = {
|
|
|
4576
4576
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4577
4577
|
{
|
|
4578
4578
|
markdownDescription: ( localize(
|
|
4579
|
-
|
|
4579
|
+
673,
|
|
4580
4580
|
"Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`."
|
|
4581
4581
|
))
|
|
4582
4582
|
}
|
|
@@ -4598,7 +4598,7 @@ const EditorOptions = {
|
|
|
4598
4598
|
'wrapOnEscapedLineFeeds',
|
|
4599
4599
|
false,
|
|
4600
4600
|
{ markdownDescription: ( localize(
|
|
4601
|
-
|
|
4601
|
+
674,
|
|
4602
4602
|
"Controls whether literal `\\n` shall trigger a wordWrap when `#editor.wordWrap#` is enabled.\n\nFor example:\n```c\nchar* str=\"hello\\nworld\"\n```\nwill be displayed as\n```c\nchar* str=\"hello\\n\n world\"\n```"
|
|
4603
4603
|
)) }
|
|
4604
4604
|
))),
|
|
@@ -4612,14 +4612,14 @@ const EditorOptions = {
|
|
|
4612
4612
|
{
|
|
4613
4613
|
enumDescriptions: [
|
|
4614
4614
|
( localize(
|
|
4615
|
-
|
|
4615
|
+
675,
|
|
4616
4616
|
"Show default color decorators only when no extension provides colors decorators."
|
|
4617
4617
|
)),
|
|
4618
|
-
( localize(
|
|
4619
|
-
( localize(
|
|
4618
|
+
( localize(676, "Always show default color decorators.")),
|
|
4619
|
+
( localize(677, "Never show default color decorators.")),
|
|
4620
4620
|
],
|
|
4621
4621
|
description: ( localize(
|
|
4622
|
-
|
|
4622
|
+
678,
|
|
4623
4623
|
"Controls whether inline color decorations should be shown using the default document color provider."
|
|
4624
4624
|
))
|
|
4625
4625
|
}
|
|
@@ -4630,7 +4630,7 @@ const EditorOptions = {
|
|
|
4630
4630
|
'tabFocusMode',
|
|
4631
4631
|
false,
|
|
4632
4632
|
{ markdownDescription: ( localize(
|
|
4633
|
-
|
|
4633
|
+
679,
|
|
4634
4634
|
"Controls whether the editor receives tabs or defers them to the workbench for navigation."
|
|
4635
4635
|
)) }
|
|
4636
4636
|
))),
|