@codingame/monaco-vscode-api 18.4.0 → 19.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/missing-services.js +1217 -2932
- package/monaco.js +0 -3
- package/package.json +8 -8
- package/services.d.ts +12 -8
- package/services.js +12 -7
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/dom.d.ts +83 -2
- package/vscode/src/vs/base/browser/dom.js +280 -3
- package/vscode/src/vs/base/browser/domStylesheets.d.ts +2 -0
- package/vscode/src/vs/base/browser/domStylesheets.js +11 -1
- package/vscode/src/vs/base/browser/markdownRenderer.d.ts +1 -0
- package/vscode/src/vs/base/browser/markdownRenderer.js +34 -18
- package/vscode/src/vs/base/browser/ui/button/button.js +4 -1
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/list/list.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/list/listView.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/list/listView.js +5 -5
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/list/listWidget.js +5 -1
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +3 -1
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +21 -4
- package/vscode/src/vs/base/common/arrays.d.ts +0 -1
- package/vscode/src/vs/base/common/arrays.js +1 -6
- package/vscode/src/vs/base/common/async.d.ts +1 -0
- package/vscode/src/vs/base/common/async.js +2 -1
- package/vscode/src/vs/base/common/buffer.d.ts +1 -0
- package/vscode/src/vs/base/common/buffer.js +3 -0
- package/vscode/src/vs/base/common/codicons.d.ts +7 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +7 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +7 -0
- package/vscode/src/vs/base/common/collections.d.ts +1 -0
- package/vscode/src/vs/base/common/collections.js +14 -1
- package/vscode/src/vs/base/common/color.js +2 -2
- package/vscode/src/vs/base/common/dataTransfer.d.ts +1 -1
- package/vscode/src/vs/base/common/decorators.d.ts +1 -1
- package/vscode/src/vs/base/common/event.d.ts +1 -1
- package/vscode/src/vs/base/common/glob.d.ts +1 -1
- package/vscode/src/vs/base/common/glob.js +2 -2
- package/vscode/src/vs/base/common/hotReloadHelpers.js +1 -1
- package/vscode/src/vs/base/common/iterator.d.ts +1 -1
- package/vscode/src/vs/base/common/network.d.ts +1 -0
- package/vscode/src/vs/base/common/network.js +1 -0
- package/vscode/src/vs/base/common/oauth.d.ts +34 -4
- package/vscode/src/vs/base/common/oauth.js +77 -6
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -2
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.js +8 -1
- package/vscode/src/vs/base/common/observableInternal/set.js +0 -1
- package/vscode/src/vs/base/common/performance.js +1 -1
- package/vscode/src/vs/base/common/product.d.ts +2 -1
- package/vscode/src/vs/base/common/types.d.ts +4 -8
- package/vscode/src/vs/base/common/types.js +3 -3
- package/vscode/src/vs/base/common/worker/webWorker.js +1 -1
- package/vscode/src/vs/editor/browser/config/migrateOptions.js +8 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +2 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +18 -14
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +5 -3
- package/vscode/src/vs/editor/browser/editorBrowser.d.ts +3 -1
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.d.ts +3 -1
- package/vscode/src/vs/editor/browser/gpu/atlas/textureAtlas.js +5 -4
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.d.ts +3 -1
- package/vscode/src/vs/editor/browser/gpu/raster/glyphRasterizer.js +3 -3
- package/vscode/src/vs/editor/browser/gpu/viewGpuContext.js +2 -3
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +6 -0
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +38 -1
- package/vscode/src/vs/editor/browser/services/abstractCodeEditorService.js +9 -1
- package/vscode/src/vs/editor/browser/services/bulkEditService.d.ts +2 -0
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +4 -0
- package/vscode/src/vs/editor/browser/services/editorWorkerService.js +18 -2
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.d.ts +32 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +141 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.service.d.ts +11 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.service.js +6 -0
- package/vscode/src/vs/editor/browser/view/domLineBreaksComputer.js +2 -2
- package/vscode/src/vs/editor/browser/view/viewController.js +5 -1
- package/vscode/src/vs/editor/browser/view.d.ts +1 -1
- package/vscode/src/vs/editor/browser/view.js +5 -5
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.d.ts +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.js +3 -3
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLine.js +14 -6
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLineOptions.d.ts +1 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLineOptions.js +3 -7
- package/vscode/src/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +12 -2
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +4 -2
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +8 -2
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +39 -9
- package/vscode/src/vs/editor/browser/widget/diffEditor/commands.js +12 -12
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css +52 -49
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +15 -15
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorEditors.js +3 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +2 -2
- 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/diffEditorViewModel.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +7 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/gutterFeature.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/hideUnchangedRegionsFeature.js +7 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/movedBlocksLinesFeature.js +5 -5
- 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/common/config/editorConfigurationSchema.js +54 -54
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +173 -160
- package/vscode/src/vs/editor/common/config/editorOptions.js +645 -570
- package/vscode/src/vs/editor/common/config/fontInfo.js +1 -1
- package/vscode/src/vs/editor/common/core/2d/point.d.ts +5 -0
- package/vscode/src/vs/editor/common/core/2d/point.js +23 -0
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/edits/edit.d.ts +6 -0
- package/vscode/src/vs/editor/common/core/edits/edit.js +41 -0
- package/vscode/src/vs/editor/common/core/edits/lineEdit.d.ts +17 -11
- package/vscode/src/vs/editor/common/core/edits/lineEdit.js +36 -9
- package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +63 -16
- package/vscode/src/vs/editor/common/core/edits/stringEdit.js +205 -48
- package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +5 -1
- package/vscode/src/vs/editor/common/core/edits/textEdit.js +18 -2
- package/vscode/src/vs/editor/common/core/text/abstractText.d.ts +3 -1
- package/vscode/src/vs/editor/common/core/text/abstractText.js +10 -1
- package/vscode/src/vs/editor/common/core/text/getPositionOffsetTransformerFromTextModel.js +2 -1
- package/vscode/src/vs/editor/common/core/text/positionToOffset.d.ts +2 -28
- package/vscode/src/vs/editor/common/core/text/positionToOffset.js +11 -92
- package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.d.ts +37 -0
- package/vscode/src/vs/editor/common/core/text/positionToOffsetImpl.js +104 -0
- package/vscode/src/vs/editor/common/cursor/cursor.d.ts +3 -2
- package/vscode/src/vs/editor/common/cursor/cursor.js +24 -16
- package/vscode/src/vs/editor/common/diff/defaultLinesDiffComputer/defaultLinesDiffComputer.js +3 -1
- package/vscode/src/vs/editor/common/diff/rangeMapping.d.ts +1 -0
- package/vscode/src/vs/editor/common/diff/rangeMapping.js +11 -1
- package/vscode/src/vs/editor/common/editorCommon.d.ts +2 -1
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languages/defaultDocumentColorsComputer.js +1 -1
- package/vscode/src/vs/editor/common/languages/languageConfiguration.d.ts +5 -1
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.d.ts +1 -0
- package/vscode/src/vs/editor/common/languages/languageConfigurationRegistry.js +7 -1
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +31 -27
- package/vscode/src/vs/editor/common/languages.js +57 -62
- package/vscode/src/vs/editor/common/model/editStack.d.ts +2 -1
- package/vscode/src/vs/editor/common/model/editStack.js +4 -3
- package/vscode/src/vs/editor/common/model/intervalTree.d.ts +2 -2
- package/vscode/src/vs/editor/common/model/intervalTree.js +24 -7
- package/vscode/src/vs/editor/common/model/textModel.d.ts +24 -10
- package/vscode/src/vs/editor/common/model/textModel.js +114 -53
- package/vscode/src/vs/editor/common/model/tokens/abstractSyntaxTokenBackend.js +1 -1
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterSyntaxTokenBackend.d.ts +0 -3
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterSyntaxTokenBackend.js +1 -13
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.d.ts +2 -0
- package/vscode/src/vs/editor/common/model/tokens/treeSitter/treeSitterTree.js +13 -2
- package/vscode/src/vs/editor/common/model.d.ts +8 -2
- package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +4 -0
- package/vscode/src/vs/editor/common/services/editorWebWorker.js +14 -0
- package/vscode/src/vs/editor/common/services/editorWorker.service.d.ts +4 -0
- package/vscode/src/vs/editor/common/services/findSectionHeaders.js +7 -0
- package/vscode/src/vs/editor/common/services/languageFeatures.service.d.ts +1 -2
- package/vscode/src/vs/editor/common/services/languageFeaturesService.d.ts +1 -2
- package/vscode/src/vs/editor/common/services/languageFeaturesService.js +0 -1
- package/vscode/src/vs/editor/common/services/model.service.d.ts +2 -1
- package/vscode/src/vs/editor/common/services/modelService.d.ts +2 -1
- package/vscode/src/vs/editor/common/services/modelService.js +3 -2
- package/vscode/src/vs/editor/common/services/textResourceConfiguration.service.d.ts +1 -1
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +159 -157
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +160 -159
- package/vscode/src/vs/editor/common/standaloneStrings.js +50 -49
- package/vscode/src/vs/editor/common/textModelEditReason.d.ts +94 -12
- package/vscode/src/vs/editor/common/textModelEditReason.js +86 -20
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +24 -0
- package/vscode/src/vs/editor/common/textModelEvents.js +33 -1
- package/vscode/src/vs/editor/common/tokens/lineTokens.d.ts +22 -1
- package/vscode/src/vs/editor/common/tokens/lineTokens.js +79 -2
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.d.ts +5 -1
- package/vscode/src/vs/editor/common/viewModel/viewModelDecorations.js +10 -4
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +3 -1
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +39 -12
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.d.ts +3 -3
- package/vscode/src/vs/editor/common/viewModel/viewModelLines.js +6 -6
- package/vscode/src/vs/editor/common/viewModel.d.ts +3 -1
- package/vscode/src/vs/editor/common/viewModel.js +2 -1
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.d.ts +11 -3
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.js +14 -1
- 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 +20 -20
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +3 -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/codelens/browser/codelensWidget.css +2 -7
- 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 +3 -3
- 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/comment/browser/lineCommentCommand.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/comment/browser/lineCommentCommand.js +9 -5
- 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 +29 -29
- 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 +14 -14
- 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 +10 -5
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- 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/markdownHoverParticipant.js +9 -9
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +10 -6
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +22 -47
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +19 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
- 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.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +11 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletions.contribution.js +3 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/animation.d.ts +7 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/animation.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.d.ts +3 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.js +35 -30
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.js +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/graph.d.ts +9 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/graph.js +66 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +12 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +144 -100
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +7 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +100 -49
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.d.ts +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +4 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +37 -29
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +39 -13
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +150 -162
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/utils.js +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +12 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +9 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +13 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +2 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +5 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +5 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +103 -62
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +25 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.js +13 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +4 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +7 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +16 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +3 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +34 -34
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +13 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +6 -7
- 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 +20 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +4 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +10 -7
- 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 +30 -30
- 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/middleScroll/browser/middleScroll.contribution.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScroll.contribution.js +5 -0
- package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScroll.css +20 -0
- package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScrollController.d.ts +9 -0
- package/vscode/src/vs/editor/contrib/middleScroll/browser/middleScrollController.js +132 -0
- 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 +9 -9
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +21 -17
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.css +0 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +14 -12
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.d.ts +2 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +5 -5
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +3 -2
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +24 -24
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +13 -13
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.js +18 -10
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.d.ts +4 -3
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +34 -39
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +5 -6
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +65 -70
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +13 -11
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestInlineCompletions.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestInlineCompletions.js +1 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +18 -18
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +4 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetStatus.js +1 -1
- 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 +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +5 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +79 -69
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +4 -4
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/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 +0 -1
- package/vscode/src/vs/platform/actions/common/actions.js +0 -1
- 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/configuration.js +4 -1
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +11 -11
- 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/common/dialogs.service.d.ts +1 -1
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/environment/common/argv.d.ts +11 -0
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +0 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +19 -19
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.service.d.ts +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +7 -7
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +9 -3
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +9 -3
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.d.ts +6 -1
- package/vscode/src/vs/platform/files/common/files.js +11 -7
- package/vscode/src/vs/platform/files/common/files.service.d.ts +1 -0
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.d.ts +2 -2
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/keybinding/common/keybinding.service.d.ts +2 -1
- package/vscode/src/vs/platform/languagePacks/common/languagePacks.service.d.ts +1 -1
- package/vscode/src/vs/platform/list/browser/listService.d.ts +1 -7
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.d.ts +4 -0
- package/vscode/src/vs/platform/log/common/log.js +15 -7
- package/vscode/src/vs/platform/markers/common/markerService.js +4 -3
- package/vscode/src/vs/platform/markers/common/markers.d.ts +2 -0
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.d.ts +9 -4
- package/vscode/src/vs/platform/mcp/common/mcpResourceScannerService.service.d.ts +10 -0
- package/vscode/src/vs/platform/mcp/common/mcpResourceScannerService.service.js +6 -0
- package/vscode/src/vs/platform/notification/common/notification.d.ts +1 -0
- package/vscode/src/vs/platform/notification/common/notification.js +12 -2
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +10 -10
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +7 -6
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +7 -12
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +2 -1
- package/vscode/src/vs/platform/remote/common/remoteAgentEnvironment.d.ts +1 -0
- package/vscode/src/vs/platform/remote/common/remoteAuthorityResolver.d.ts +2 -2
- package/vscode/src/vs/platform/request/common/request.d.ts +1 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/request/common/request.service.d.ts +1 -1
- package/vscode/src/vs/platform/telemetry/common/commonProperties.d.ts +1 -1
- package/vscode/src/vs/platform/telemetry/common/telemetry.d.ts +2 -0
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +1 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +2 -1
- package/vscode/src/vs/platform/terminal/common/terminal.service.d.ts +2 -1
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.d.ts +1 -0
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -94
- 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 +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +1 -1
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.d.ts +3 -1
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +6 -2
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.d.ts +2 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +7 -6
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +1 -1
- package/vscode/src/vs/platform/window/common/window.d.ts +1 -0
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +5 -7
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +25 -24
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +10 -4
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +109 -77
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +22 -0
- package/vscode/src/vs/workbench/api/common/extHostCommands.js +3 -0
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDocuments.d.ts +4 -2
- package/vscode/src/vs/workbench/api/common/extHostDocuments.js +35 -5
- package/vscode/src/vs/workbench/api/common/extHostEditorTabs.js +3 -3
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +3 -4
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +1 -5
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +34 -182
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +7 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +2 -3
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +3 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +71 -20
- package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +7 -5
- package/vscode/src/vs/workbench/api/common/extHostNotebookEditor.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +7 -3
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.d.ts +4 -3
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +5 -2
- package/vscode/src/vs/workbench/api/common/extHostTextEditor.js +3 -0
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +16 -7
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +20 -8
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +16 -13
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +11 -12
- package/vscode/src/vs/workbench/api/common/extHostWebviewMessaging.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -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 +31 -31
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/browser/contextkeys.d.ts +1 -0
- package/vscode/src/vs/workbench/browser/contextkeys.js +6 -1
- package/vscode/src/vs/workbench/browser/parts/editor/breadcrumbs.service.d.ts +1 -1
- package/vscode/src/vs/workbench/common/configuration.js +9 -9
- package/vscode/src/vs/workbench/common/contextkeys.d.ts +1 -0
- package/vscode/src/vs/workbench/common/contextkeys.js +73 -72
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +2 -1
- package/vscode/src/vs/workbench/common/editor.js +6 -6
- 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 +157 -160
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentResolveService.service.d.ts +18 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatAttachmentResolveService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatContentParts/chatContentParts.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +6 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +4 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +9 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +62 -41
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +24 -5
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +29 -9
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatSlashCommands.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.d.ts +152 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.js +160 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +11 -24
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +8 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +4 -4
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +4 -2
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +5 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +22 -7
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/codecs/base/frontMatterCodec/tokens/index.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/codecs/base/simpleCodec/tokens/tokens.d.ts +20 -0
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +2 -17
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/{types.d.ts → promptsService.d.ts} +14 -7
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/{types.service.d.ts → promptsService.service.d.ts} +6 -7
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +1 -1
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +15 -15
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +6 -6
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.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/commentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +73 -65
- package/vscode/src/vs/workbench/contrib/debug/common/debugUtils.js +7 -0
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.js +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/extensions/common/searchExtensionsTool.js +4 -4
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +3 -3
- 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/inlineChat/browser/inlineChatSessionService.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService.service.d.ts +1 -1
- 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/common/mcpTypes.d.ts +55 -9
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +29 -13
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +16 -6
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.js +2 -1
- package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.d.ts +119 -31
- package/vscode/src/vs/workbench/contrib/mcp/common/modelContextProtocol.js +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/browser/services/notebookEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +4 -4
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/preferences/common/preferences.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/remoteCodingAgents/common/remoteCodingAgentsService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/remoteCodingAgents/common/remoteCodingAgentsService.service.js +6 -0
- 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.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +10 -0
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +4 -3
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +13 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +6 -2
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/suggest/browser/terminalCompletionService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/testing/common/constants.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +13 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/webview/browser/webview.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/webviewPanel/browser/webviewWorkbenchService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +1 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +6 -4
- package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +4 -0
- package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.d.ts +132 -0
- package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.service.d.ts +20 -0
- package/vscode/src/vs/workbench/services/authentication/common/authenticationQuery.service.js +6 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.d.ts +6 -0
- package/vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.js +6 -0
- package/vscode/src/vs/workbench/services/editor/common/editorGroupsService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.d.ts +1 -1
- package/vscode/src/vs/workbench/services/editor/common/editorService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionHostProtocol.d.ts +1 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +84 -84
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.d.ts +2 -2
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.js +17 -17
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +5 -1
- package/vscode/src/vs/workbench/services/localization/common/locale.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.d.ts +16 -0
- package/vscode/src/vs/workbench/services/mcp/common/mcpWorkbenchManagementService.service.js +6 -0
- package/vscode/src/vs/workbench/services/outline/browser/outline.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
- 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 +3 -3
- package/vscode/src/vs/workbench/services/textfile/common/textfiles.d.ts +1 -1
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +13 -12
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyBackup.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyEditorService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +2 -2
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyService.service.d.ts +1 -1
- package/vscode-dts/vscode.proposed.authProviderSpecific.d.ts +30 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +10 -0
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +10 -0
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +139 -10
- package/vscode-dts/vscode.proposed.d.ts +3 -1
- package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +5 -0
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +21 -4
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +1 -0
- package/vscode-dts/vscode.proposed.remoteCodingAgents.d.ts +8 -0
- package/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts +2 -0
- package/vscode-dts/vscode.proposed.textDocumentChangeReason.d.ts +30 -0
- package/workbench.d.ts +1 -1
- package/vscode/src/vs/base/browser/domImpl/domObservable.d.ts +0 -3
- package/vscode/src/vs/base/browser/domImpl/domObservable.js +0 -16
- package/vscode/src/vs/base/browser/domImpl/n.d.ts +0 -83
- package/vscode/src/vs/base/browser/domImpl/n.js +0 -283
- package/vscode/src/vs/editor/common/codecs/frontMatterCodec/tokens/index.d.ts +0 -5
- package/vscode/src/vs/editor/common/codecs/simpleCodec/tokens/index.d.ts +0 -20
- package/vscode/src/vs/editor/common/tokens/tokenArray.d.ts +0 -25
- package/vscode/src/vs/editor/common/tokens/tokenArray.js +0 -84
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEditsAdapter.d.ts +0 -16
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEditsAdapter.js +0 -94
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +0 -243
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +0 -426
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.d.ts +0 -601
- package/vscode/src/vs/workbench/contrib/chat/common/chatModel.js +0 -1185
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.d.ts +0 -130
- package/vscode/src/vs/workbench/contrib/chat/common/chatParserTypes.js +0 -235
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.d.ts +0 -4
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/promptHeader/metadata/index.d.ts +0 -3
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfigPathsService.service.d.ts +0 -7
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfigPathsService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExpService.service.d.ts +0 -6
- package/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedExpService.service.js +0 -6
- package/vscode-dts/vscode.proposed.inlineEdit.d.ts +0 -103
- /package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/{types.service.js → promptsService.service.js} +0 -0
|
@@ -263,12 +263,6 @@ class EditorEnumOption extends BaseEditorOption {
|
|
|
263
263
|
return this._convert(input);
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
|
-
function stringArray(value, defaultValue) {
|
|
267
|
-
if (!Array.isArray(value)) {
|
|
268
|
-
return defaultValue;
|
|
269
|
-
}
|
|
270
|
-
return ( value.map(item => String(item)));
|
|
271
|
-
}
|
|
272
266
|
function _autoIndentFromString(autoIndent) {
|
|
273
267
|
switch (autoIndent) {
|
|
274
268
|
case 'none': return EditorAutoIndentStrategy.None;
|
|
@@ -284,14 +278,14 @@ class EditorAccessibilitySupport extends BaseEditorOption {
|
|
|
284
278
|
type: 'string',
|
|
285
279
|
enum: ['auto', 'on', 'off'],
|
|
286
280
|
enumDescriptions: [
|
|
287
|
-
( localize(
|
|
288
|
-
( localize(
|
|
289
|
-
( localize(
|
|
281
|
+
( localize(266, "Use platform APIs to detect when a Screen Reader is attached.")),
|
|
282
|
+
( localize(267, "Optimize for usage with a Screen Reader.")),
|
|
283
|
+
( localize(268, "Assume a screen reader is not attached.")),
|
|
290
284
|
],
|
|
291
285
|
default: 'auto',
|
|
292
286
|
tags: ['accessibility'],
|
|
293
287
|
description: ( localize(
|
|
294
|
-
|
|
288
|
+
269,
|
|
295
289
|
"Controls if the UI should run in a mode where it is optimized for screen readers."
|
|
296
290
|
))
|
|
297
291
|
});
|
|
@@ -321,13 +315,13 @@ class EditorComments extends BaseEditorOption {
|
|
|
321
315
|
'editor.comments.insertSpace': {
|
|
322
316
|
type: 'boolean',
|
|
323
317
|
default: defaults.insertSpace,
|
|
324
|
-
description: ( localize(
|
|
318
|
+
description: ( localize(270, "Controls whether a space character is inserted when commenting."))
|
|
325
319
|
},
|
|
326
320
|
'editor.comments.ignoreEmptyLines': {
|
|
327
321
|
type: 'boolean',
|
|
328
322
|
default: defaults.ignoreEmptyLines,
|
|
329
323
|
description: ( localize(
|
|
330
|
-
|
|
324
|
+
271,
|
|
331
325
|
'Controls if empty lines should be ignored with toggle, add or remove actions for line comments.'
|
|
332
326
|
))
|
|
333
327
|
},
|
|
@@ -421,7 +415,7 @@ class EditorClassName extends ComputedEditorOption {
|
|
|
421
415
|
class EditorEmptySelectionClipboard extends EditorBooleanOption {
|
|
422
416
|
constructor() {
|
|
423
417
|
super(EditorOption.emptySelectionClipboard, 'emptySelectionClipboard', true, { description: ( localize(
|
|
424
|
-
|
|
418
|
+
272,
|
|
425
419
|
"Controls whether copying without a selection copies the current line."
|
|
426
420
|
)) });
|
|
427
421
|
}
|
|
@@ -447,7 +441,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
447
441
|
type: 'boolean',
|
|
448
442
|
default: defaults.cursorMoveOnType,
|
|
449
443
|
description: ( localize(
|
|
450
|
-
|
|
444
|
+
273,
|
|
451
445
|
"Controls whether the cursor should jump to find matches while typing."
|
|
452
446
|
))
|
|
453
447
|
},
|
|
@@ -456,15 +450,15 @@ class EditorFind extends BaseEditorOption {
|
|
|
456
450
|
enum: ['never', 'always', 'selection'],
|
|
457
451
|
default: defaults.seedSearchStringFromSelection,
|
|
458
452
|
enumDescriptions: [
|
|
459
|
-
( localize(
|
|
453
|
+
( localize(274, 'Never seed search string from the editor selection.')),
|
|
460
454
|
( localize(
|
|
461
|
-
|
|
455
|
+
275,
|
|
462
456
|
'Always seed search string from the editor selection, including word at cursor position.'
|
|
463
457
|
)),
|
|
464
|
-
( localize(
|
|
458
|
+
( localize(276, 'Only seed search string from the editor selection.'))
|
|
465
459
|
],
|
|
466
460
|
description: ( localize(
|
|
467
|
-
|
|
461
|
+
277,
|
|
468
462
|
"Controls whether the search string in the Find Widget is seeded from the editor selection."
|
|
469
463
|
))
|
|
470
464
|
},
|
|
@@ -473,15 +467,15 @@ class EditorFind extends BaseEditorOption {
|
|
|
473
467
|
enum: ['never', 'always', 'multiline'],
|
|
474
468
|
default: defaults.autoFindInSelection,
|
|
475
469
|
enumDescriptions: [
|
|
476
|
-
( localize(
|
|
477
|
-
( localize(
|
|
470
|
+
( localize(278, 'Never turn on Find in Selection automatically (default).')),
|
|
471
|
+
( localize(279, 'Always turn on Find in Selection automatically.')),
|
|
478
472
|
( localize(
|
|
479
|
-
|
|
473
|
+
280,
|
|
480
474
|
'Turn on Find in Selection automatically when multiple lines of content are selected.'
|
|
481
475
|
))
|
|
482
476
|
],
|
|
483
477
|
description: ( localize(
|
|
484
|
-
|
|
478
|
+
281,
|
|
485
479
|
"Controls the condition for turning on Find in Selection automatically."
|
|
486
480
|
))
|
|
487
481
|
},
|
|
@@ -489,7 +483,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
489
483
|
type: 'boolean',
|
|
490
484
|
default: defaults.globalFindClipboard,
|
|
491
485
|
description: ( localize(
|
|
492
|
-
|
|
486
|
+
282,
|
|
493
487
|
"Controls whether the Find Widget should read or modify the shared find clipboard on macOS."
|
|
494
488
|
)),
|
|
495
489
|
included: isMacintosh
|
|
@@ -498,7 +492,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
498
492
|
type: 'boolean',
|
|
499
493
|
default: defaults.addExtraSpaceOnTop,
|
|
500
494
|
description: ( localize(
|
|
501
|
-
|
|
495
|
+
283,
|
|
502
496
|
"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."
|
|
503
497
|
))
|
|
504
498
|
},
|
|
@@ -506,7 +500,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
506
500
|
type: 'boolean',
|
|
507
501
|
default: defaults.loop,
|
|
508
502
|
description: ( localize(
|
|
509
|
-
|
|
503
|
+
284,
|
|
510
504
|
"Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found."
|
|
511
505
|
))
|
|
512
506
|
},
|
|
@@ -515,25 +509,25 @@ class EditorFind extends BaseEditorOption {
|
|
|
515
509
|
enum: ['never', 'workspace'],
|
|
516
510
|
default: 'workspace',
|
|
517
511
|
enumDescriptions: [
|
|
518
|
-
( localize(
|
|
519
|
-
( localize(
|
|
512
|
+
( localize(285, 'Do not store search history from the find widget.')),
|
|
513
|
+
( localize(286, 'Store search history across the active workspace')),
|
|
520
514
|
],
|
|
521
|
-
description: ( localize(
|
|
515
|
+
description: ( localize(287, "Controls how the find widget history should be stored"))
|
|
522
516
|
},
|
|
523
517
|
'editor.find.replaceHistory': {
|
|
524
518
|
type: 'string',
|
|
525
519
|
enum: ['never', 'workspace'],
|
|
526
520
|
default: 'workspace',
|
|
527
521
|
enumDescriptions: [
|
|
528
|
-
( localize(
|
|
529
|
-
( localize(
|
|
522
|
+
( localize(288, 'Do not store history from the replace widget.')),
|
|
523
|
+
( localize(289, 'Store replace history across the active workspace')),
|
|
530
524
|
],
|
|
531
|
-
description: ( localize(
|
|
525
|
+
description: ( localize(290, "Controls how the replace widget history should be stored"))
|
|
532
526
|
},
|
|
533
527
|
'editor.find.findOnType': {
|
|
534
528
|
type: 'boolean',
|
|
535
529
|
default: defaults.findOnType,
|
|
536
|
-
description: ( localize(
|
|
530
|
+
description: ( localize(291, "Controls whether the Find Widget should search as you type."))
|
|
537
531
|
},
|
|
538
532
|
});
|
|
539
533
|
}
|
|
@@ -568,20 +562,20 @@ class EditorFontLigatures extends BaseEditorOption {
|
|
|
568
562
|
{
|
|
569
563
|
type: 'boolean',
|
|
570
564
|
description: ( localize(
|
|
571
|
-
|
|
565
|
+
292,
|
|
572
566
|
"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."
|
|
573
567
|
)),
|
|
574
568
|
},
|
|
575
569
|
{
|
|
576
570
|
type: 'string',
|
|
577
571
|
description: ( localize(
|
|
578
|
-
|
|
572
|
+
293,
|
|
579
573
|
"Explicit 'font-feature-settings' CSS property. A boolean can be passed instead if one only needs to turn on/off ligatures."
|
|
580
574
|
))
|
|
581
575
|
}
|
|
582
576
|
],
|
|
583
577
|
description: ( localize(
|
|
584
|
-
|
|
578
|
+
294,
|
|
585
579
|
"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."
|
|
586
580
|
)),
|
|
587
581
|
default: false
|
|
@@ -615,20 +609,20 @@ class EditorFontVariations extends BaseEditorOption {
|
|
|
615
609
|
{
|
|
616
610
|
type: 'boolean',
|
|
617
611
|
description: ( localize(
|
|
618
|
-
|
|
612
|
+
295,
|
|
619
613
|
"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."
|
|
620
614
|
)),
|
|
621
615
|
},
|
|
622
616
|
{
|
|
623
617
|
type: 'string',
|
|
624
618
|
description: ( localize(
|
|
625
|
-
|
|
619
|
+
296,
|
|
626
620
|
"Explicit 'font-variation-settings' CSS property. A boolean can be passed instead if one only needs to translate font-weight to font-variation-settings."
|
|
627
621
|
))
|
|
628
622
|
}
|
|
629
623
|
],
|
|
630
624
|
description: ( localize(
|
|
631
|
-
|
|
625
|
+
297,
|
|
632
626
|
"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."
|
|
633
627
|
)),
|
|
634
628
|
default: false
|
|
@@ -674,12 +668,26 @@ class EffectiveCursorStyle extends ComputedEditorOption {
|
|
|
674
668
|
options.get(EditorOption.cursorStyle);
|
|
675
669
|
}
|
|
676
670
|
}
|
|
677
|
-
class
|
|
671
|
+
class EffectiveEditContextEnabled extends ComputedEditorOption {
|
|
678
672
|
constructor() {
|
|
679
|
-
super(EditorOption.
|
|
673
|
+
super(EditorOption.effectiveEditContext);
|
|
680
674
|
}
|
|
681
675
|
compute(env, options) {
|
|
682
|
-
return env.editContextSupported && options.get(EditorOption.
|
|
676
|
+
return env.editContextSupported && options.get(EditorOption.editContext);
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
class EffectiveAllowVariableFonts extends ComputedEditorOption {
|
|
680
|
+
constructor() {
|
|
681
|
+
super(EditorOption.effectiveAllowVariableFonts);
|
|
682
|
+
}
|
|
683
|
+
compute(env, options) {
|
|
684
|
+
const accessibilitySupport = env.accessibilitySupport;
|
|
685
|
+
if (accessibilitySupport === AccessibilitySupport.Enabled) {
|
|
686
|
+
return options.get(EditorOption.allowVariableFontsInAccessibilityMode);
|
|
687
|
+
}
|
|
688
|
+
else {
|
|
689
|
+
return options.get(EditorOption.allowVariableFonts);
|
|
690
|
+
}
|
|
683
691
|
}
|
|
684
692
|
}
|
|
685
693
|
class EditorFontSize extends SimpleEditorOption {
|
|
@@ -689,7 +697,7 @@ class EditorFontSize extends SimpleEditorOption {
|
|
|
689
697
|
minimum: 6,
|
|
690
698
|
maximum: 100,
|
|
691
699
|
default: EDITOR_FONT_DEFAULTS.fontSize,
|
|
692
|
-
description: ( localize(
|
|
700
|
+
description: ( localize(298, "Controls the font size in pixels."))
|
|
693
701
|
});
|
|
694
702
|
}
|
|
695
703
|
validate(input) {
|
|
@@ -715,7 +723,7 @@ class EditorFontWeight extends BaseEditorOption {
|
|
|
715
723
|
minimum: EditorFontWeight.MINIMUM_VALUE,
|
|
716
724
|
maximum: EditorFontWeight.MAXIMUM_VALUE,
|
|
717
725
|
errorMessage: ( localize(
|
|
718
|
-
|
|
726
|
+
299,
|
|
719
727
|
"Only \"normal\" and \"bold\" keywords or numbers between 1 and 1000 are allowed."
|
|
720
728
|
))
|
|
721
729
|
},
|
|
@@ -729,7 +737,7 @@ class EditorFontWeight extends BaseEditorOption {
|
|
|
729
737
|
],
|
|
730
738
|
default: EDITOR_FONT_DEFAULTS.fontWeight,
|
|
731
739
|
description: ( localize(
|
|
732
|
-
|
|
740
|
+
300,
|
|
733
741
|
"Controls the font weight. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."
|
|
734
742
|
))
|
|
735
743
|
});
|
|
@@ -763,50 +771,50 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
763
771
|
enum: ['peek', 'gotoAndPeek', 'goto'],
|
|
764
772
|
default: defaults.multiple,
|
|
765
773
|
enumDescriptions: [
|
|
766
|
-
( localize(
|
|
767
|
-
( localize(
|
|
768
|
-
( localize(
|
|
774
|
+
( localize(301, 'Show Peek view of the results (default)')),
|
|
775
|
+
( localize(302, 'Go to the primary result and show a Peek view')),
|
|
776
|
+
( localize(303, 'Go to the primary result and enable Peek-less navigation to others'))
|
|
769
777
|
]
|
|
770
778
|
};
|
|
771
779
|
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'];
|
|
772
780
|
super(EditorOption.gotoLocation, 'gotoLocation', defaults, {
|
|
773
781
|
'editor.gotoLocation.multiple': {
|
|
774
782
|
deprecationMessage: ( localize(
|
|
775
|
-
|
|
783
|
+
304,
|
|
776
784
|
"This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead."
|
|
777
785
|
)),
|
|
778
786
|
},
|
|
779
787
|
'editor.gotoLocation.multipleDefinitions': {
|
|
780
788
|
description: ( localize(
|
|
781
|
-
|
|
789
|
+
305,
|
|
782
790
|
"Controls the behavior the 'Go to Definition'-command when multiple target locations exist."
|
|
783
791
|
)),
|
|
784
792
|
...jsonSubset,
|
|
785
793
|
},
|
|
786
794
|
'editor.gotoLocation.multipleTypeDefinitions': {
|
|
787
795
|
description: ( localize(
|
|
788
|
-
|
|
796
|
+
306,
|
|
789
797
|
"Controls the behavior the 'Go to Type Definition'-command when multiple target locations exist."
|
|
790
798
|
)),
|
|
791
799
|
...jsonSubset,
|
|
792
800
|
},
|
|
793
801
|
'editor.gotoLocation.multipleDeclarations': {
|
|
794
802
|
description: ( localize(
|
|
795
|
-
|
|
803
|
+
307,
|
|
796
804
|
"Controls the behavior the 'Go to Declaration'-command when multiple target locations exist."
|
|
797
805
|
)),
|
|
798
806
|
...jsonSubset,
|
|
799
807
|
},
|
|
800
808
|
'editor.gotoLocation.multipleImplementations': {
|
|
801
809
|
description: ( localize(
|
|
802
|
-
|
|
810
|
+
308,
|
|
803
811
|
"Controls the behavior the 'Go to Implementations'-command when multiple target locations exist."
|
|
804
812
|
)),
|
|
805
813
|
...jsonSubset,
|
|
806
814
|
},
|
|
807
815
|
'editor.gotoLocation.multipleReferences': {
|
|
808
816
|
description: ( localize(
|
|
809
|
-
|
|
817
|
+
309,
|
|
810
818
|
"Controls the behavior the 'Go to References'-command when multiple target locations exist."
|
|
811
819
|
)),
|
|
812
820
|
...jsonSubset,
|
|
@@ -816,7 +824,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
816
824
|
default: defaults.alternativeDefinitionCommand,
|
|
817
825
|
enum: alternativeCommandOptions,
|
|
818
826
|
description: ( localize(
|
|
819
|
-
|
|
827
|
+
310,
|
|
820
828
|
"Alternative command id that is being executed when the result of 'Go to Definition' is the current location."
|
|
821
829
|
))
|
|
822
830
|
},
|
|
@@ -825,7 +833,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
825
833
|
default: defaults.alternativeTypeDefinitionCommand,
|
|
826
834
|
enum: alternativeCommandOptions,
|
|
827
835
|
description: ( localize(
|
|
828
|
-
|
|
836
|
+
311,
|
|
829
837
|
"Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location."
|
|
830
838
|
))
|
|
831
839
|
},
|
|
@@ -834,7 +842,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
834
842
|
default: defaults.alternativeDeclarationCommand,
|
|
835
843
|
enum: alternativeCommandOptions,
|
|
836
844
|
description: ( localize(
|
|
837
|
-
|
|
845
|
+
312,
|
|
838
846
|
"Alternative command id that is being executed when the result of 'Go to Declaration' is the current location."
|
|
839
847
|
))
|
|
840
848
|
},
|
|
@@ -843,7 +851,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
843
851
|
default: defaults.alternativeImplementationCommand,
|
|
844
852
|
enum: alternativeCommandOptions,
|
|
845
853
|
description: ( localize(
|
|
846
|
-
|
|
854
|
+
313,
|
|
847
855
|
"Alternative command id that is being executed when the result of 'Go to Implementation' is the current location."
|
|
848
856
|
))
|
|
849
857
|
},
|
|
@@ -852,7 +860,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
852
860
|
default: defaults.alternativeReferenceCommand,
|
|
853
861
|
enum: alternativeCommandOptions,
|
|
854
862
|
description: ( localize(
|
|
855
|
-
|
|
863
|
+
314,
|
|
856
864
|
"Alternative command id that is being executed when the result of 'Go to Reference' is the current location."
|
|
857
865
|
))
|
|
858
866
|
},
|
|
@@ -893,20 +901,20 @@ class EditorHover extends BaseEditorOption {
|
|
|
893
901
|
'editor.hover.enabled': {
|
|
894
902
|
type: 'boolean',
|
|
895
903
|
default: defaults.enabled,
|
|
896
|
-
description: ( localize(
|
|
904
|
+
description: ( localize(315, "Controls whether the hover is shown."))
|
|
897
905
|
},
|
|
898
906
|
'editor.hover.delay': {
|
|
899
907
|
type: 'number',
|
|
900
908
|
default: defaults.delay,
|
|
901
909
|
minimum: 0,
|
|
902
910
|
maximum: 10000,
|
|
903
|
-
description: ( localize(
|
|
911
|
+
description: ( localize(316, "Controls the delay in milliseconds after which the hover is shown."))
|
|
904
912
|
},
|
|
905
913
|
'editor.hover.sticky': {
|
|
906
914
|
type: 'boolean',
|
|
907
915
|
default: defaults.sticky,
|
|
908
916
|
description: ( localize(
|
|
909
|
-
|
|
917
|
+
317,
|
|
910
918
|
"Controls whether the hover should remain visible when mouse is moved over it."
|
|
911
919
|
))
|
|
912
920
|
},
|
|
@@ -915,14 +923,14 @@ class EditorHover extends BaseEditorOption {
|
|
|
915
923
|
minimum: 0,
|
|
916
924
|
default: defaults.hidingDelay,
|
|
917
925
|
description: ( localize(
|
|
918
|
-
|
|
926
|
+
318,
|
|
919
927
|
"Controls the delay in milliseconds after which the hover is hidden. Requires `editor.hover.sticky` to be enabled."
|
|
920
928
|
))
|
|
921
929
|
},
|
|
922
930
|
'editor.hover.above': {
|
|
923
931
|
type: 'boolean',
|
|
924
932
|
default: defaults.above,
|
|
925
|
-
description: ( localize(
|
|
933
|
+
description: ( localize(319, "Prefer showing hovers above the line, if there's space."))
|
|
926
934
|
},
|
|
927
935
|
});
|
|
928
936
|
}
|
|
@@ -1232,11 +1240,11 @@ class WrappingStrategy extends BaseEditorOption {
|
|
|
1232
1240
|
'editor.wrappingStrategy': {
|
|
1233
1241
|
enumDescriptions: [
|
|
1234
1242
|
( localize(
|
|
1235
|
-
|
|
1243
|
+
320,
|
|
1236
1244
|
"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."
|
|
1237
1245
|
)),
|
|
1238
1246
|
( localize(
|
|
1239
|
-
|
|
1247
|
+
321,
|
|
1240
1248
|
"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."
|
|
1241
1249
|
))
|
|
1242
1250
|
],
|
|
@@ -1244,7 +1252,7 @@ class WrappingStrategy extends BaseEditorOption {
|
|
|
1244
1252
|
enum: ['simple', 'advanced'],
|
|
1245
1253
|
default: 'simple',
|
|
1246
1254
|
description: ( localize(
|
|
1247
|
-
|
|
1255
|
+
322,
|
|
1248
1256
|
"Controls the algorithm that computes wrapping points. Note that when in accessibility mode, advanced will be used for the best experience."
|
|
1249
1257
|
))
|
|
1250
1258
|
}
|
|
@@ -1276,14 +1284,14 @@ class EditorLightbulb extends BaseEditorOption {
|
|
|
1276
1284
|
enum: [ShowLightbulbIconMode.Off, ShowLightbulbIconMode.OnCode, ShowLightbulbIconMode.On],
|
|
1277
1285
|
default: defaults.enabled,
|
|
1278
1286
|
enumDescriptions: [
|
|
1279
|
-
( localize(
|
|
1280
|
-
( localize(
|
|
1287
|
+
( localize(323, 'Disable the code action menu.')),
|
|
1288
|
+
( localize(324, 'Show the code action menu when the cursor is on lines with code.')),
|
|
1281
1289
|
( localize(
|
|
1282
|
-
|
|
1290
|
+
325,
|
|
1283
1291
|
'Show the code action menu when the cursor is on lines with code or on empty lines.'
|
|
1284
1292
|
)),
|
|
1285
1293
|
],
|
|
1286
|
-
description: ( localize(
|
|
1294
|
+
description: ( localize(326, "Enables the Code Action lightbulb in the editor."))
|
|
1287
1295
|
}
|
|
1288
1296
|
});
|
|
1289
1297
|
}
|
|
@@ -1305,7 +1313,7 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1305
1313
|
type: 'boolean',
|
|
1306
1314
|
default: defaults.enabled,
|
|
1307
1315
|
description: ( localize(
|
|
1308
|
-
|
|
1316
|
+
327,
|
|
1309
1317
|
"Shows the nested current scopes during the scroll at the top of the editor."
|
|
1310
1318
|
))
|
|
1311
1319
|
},
|
|
@@ -1314,14 +1322,14 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1314
1322
|
default: defaults.maxLineCount,
|
|
1315
1323
|
minimum: 1,
|
|
1316
1324
|
maximum: 20,
|
|
1317
|
-
description: ( localize(
|
|
1325
|
+
description: ( localize(328, "Defines the maximum number of sticky lines to show."))
|
|
1318
1326
|
},
|
|
1319
1327
|
'editor.stickyScroll.defaultModel': {
|
|
1320
1328
|
type: 'string',
|
|
1321
1329
|
enum: ['outlineModel', 'foldingProviderModel', 'indentationModel'],
|
|
1322
1330
|
default: defaults.defaultModel,
|
|
1323
1331
|
description: ( localize(
|
|
1324
|
-
|
|
1332
|
+
329,
|
|
1325
1333
|
"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."
|
|
1326
1334
|
))
|
|
1327
1335
|
},
|
|
@@ -1329,7 +1337,7 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1329
1337
|
type: 'boolean',
|
|
1330
1338
|
default: defaults.scrollWithEditor,
|
|
1331
1339
|
description: ( localize(
|
|
1332
|
-
|
|
1340
|
+
330,
|
|
1333
1341
|
"Enable scrolling of Sticky Scroll with the editor's horizontal scrollbar."
|
|
1334
1342
|
))
|
|
1335
1343
|
},
|
|
@@ -1355,28 +1363,28 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1355
1363
|
'editor.inlayHints.enabled': {
|
|
1356
1364
|
type: 'string',
|
|
1357
1365
|
default: defaults.enabled,
|
|
1358
|
-
description: ( localize(
|
|
1366
|
+
description: ( localize(331, "Enables the inlay hints in the editor.")),
|
|
1359
1367
|
enum: ['on', 'onUnlessPressed', 'offUnlessPressed', 'off'],
|
|
1360
1368
|
markdownEnumDescriptions: [
|
|
1361
|
-
( localize(
|
|
1369
|
+
( localize(332, "Inlay hints are enabled")),
|
|
1362
1370
|
( localize(
|
|
1363
|
-
|
|
1371
|
+
333,
|
|
1364
1372
|
"Inlay hints are showing by default and hide when holding {0}",
|
|
1365
1373
|
isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
|
|
1366
1374
|
)),
|
|
1367
1375
|
( localize(
|
|
1368
|
-
|
|
1376
|
+
334,
|
|
1369
1377
|
"Inlay hints are hidden by default and show when holding {0}",
|
|
1370
1378
|
isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
|
|
1371
1379
|
)),
|
|
1372
|
-
( localize(
|
|
1380
|
+
( localize(335, "Inlay hints are disabled")),
|
|
1373
1381
|
],
|
|
1374
1382
|
},
|
|
1375
1383
|
'editor.inlayHints.fontSize': {
|
|
1376
1384
|
type: 'number',
|
|
1377
1385
|
default: defaults.fontSize,
|
|
1378
1386
|
markdownDescription: ( localize(
|
|
1379
|
-
|
|
1387
|
+
336,
|
|
1380
1388
|
"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.",
|
|
1381
1389
|
'`#editor.fontSize#`',
|
|
1382
1390
|
'`5`'
|
|
@@ -1386,7 +1394,7 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1386
1394
|
type: 'string',
|
|
1387
1395
|
default: defaults.fontFamily,
|
|
1388
1396
|
markdownDescription: ( localize(
|
|
1389
|
-
|
|
1397
|
+
337,
|
|
1390
1398
|
"Controls font family of inlay hints in the editor. When set to empty, the {0} is used.",
|
|
1391
1399
|
'`#editor.fontFamily#`'
|
|
1392
1400
|
))
|
|
@@ -1394,13 +1402,13 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1394
1402
|
'editor.inlayHints.padding': {
|
|
1395
1403
|
type: 'boolean',
|
|
1396
1404
|
default: defaults.padding,
|
|
1397
|
-
description: ( localize(
|
|
1405
|
+
description: ( localize(338, "Enables the padding around the inlay hints in the editor."))
|
|
1398
1406
|
},
|
|
1399
1407
|
'editor.inlayHints.maximumLength': {
|
|
1400
1408
|
type: 'number',
|
|
1401
1409
|
default: defaults.maximumLength,
|
|
1402
1410
|
markdownDescription: ( localize(
|
|
1403
|
-
|
|
1411
|
+
339,
|
|
1404
1412
|
"Maximum overall length of inlay hints, for a single line, before they get truncated by the editor. Set to `0` to never truncate"
|
|
1405
1413
|
))
|
|
1406
1414
|
}
|
|
@@ -1448,7 +1456,7 @@ class EditorLineDecorationsWidth extends BaseEditorOption {
|
|
|
1448
1456
|
class EditorLineHeight extends EditorFloatOption {
|
|
1449
1457
|
constructor() {
|
|
1450
1458
|
super(EditorOption.lineHeight, 'lineHeight', EDITOR_FONT_DEFAULTS.lineHeight, x => EditorFloatOption.clamp(x, 0, 150), { markdownDescription: ( localize(
|
|
1451
|
-
|
|
1459
|
+
340,
|
|
1452
1460
|
"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."
|
|
1453
1461
|
)) });
|
|
1454
1462
|
}
|
|
@@ -1477,44 +1485,44 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1477
1485
|
'editor.minimap.enabled': {
|
|
1478
1486
|
type: 'boolean',
|
|
1479
1487
|
default: defaults.enabled,
|
|
1480
|
-
description: ( localize(
|
|
1488
|
+
description: ( localize(341, "Controls whether the minimap is shown."))
|
|
1481
1489
|
},
|
|
1482
1490
|
'editor.minimap.autohide': {
|
|
1483
1491
|
type: 'boolean',
|
|
1484
1492
|
default: defaults.autohide,
|
|
1485
|
-
description: ( localize(
|
|
1493
|
+
description: ( localize(342, "Controls whether the minimap is hidden automatically."))
|
|
1486
1494
|
},
|
|
1487
1495
|
'editor.minimap.size': {
|
|
1488
1496
|
type: 'string',
|
|
1489
1497
|
enum: ['proportional', 'fill', 'fit'],
|
|
1490
1498
|
enumDescriptions: [
|
|
1491
1499
|
( localize(
|
|
1492
|
-
|
|
1500
|
+
343,
|
|
1493
1501
|
"The minimap has the same size as the editor contents (and might scroll)."
|
|
1494
1502
|
)),
|
|
1495
1503
|
( localize(
|
|
1496
|
-
|
|
1504
|
+
344,
|
|
1497
1505
|
"The minimap will stretch or shrink as necessary to fill the height of the editor (no scrolling)."
|
|
1498
1506
|
)),
|
|
1499
1507
|
( localize(
|
|
1500
|
-
|
|
1508
|
+
345,
|
|
1501
1509
|
"The minimap will shrink as necessary to never be larger than the editor (no scrolling)."
|
|
1502
1510
|
)),
|
|
1503
1511
|
],
|
|
1504
1512
|
default: defaults.size,
|
|
1505
|
-
description: ( localize(
|
|
1513
|
+
description: ( localize(346, "Controls the size of the minimap."))
|
|
1506
1514
|
},
|
|
1507
1515
|
'editor.minimap.side': {
|
|
1508
1516
|
type: 'string',
|
|
1509
1517
|
enum: ['left', 'right'],
|
|
1510
1518
|
default: defaults.side,
|
|
1511
|
-
description: ( localize(
|
|
1519
|
+
description: ( localize(347, "Controls the side where to render the minimap."))
|
|
1512
1520
|
},
|
|
1513
1521
|
'editor.minimap.showSlider': {
|
|
1514
1522
|
type: 'string',
|
|
1515
1523
|
enum: ['always', 'mouseover'],
|
|
1516
1524
|
default: defaults.showSlider,
|
|
1517
|
-
description: ( localize(
|
|
1525
|
+
description: ( localize(348, "Controls when the minimap slider is shown."))
|
|
1518
1526
|
},
|
|
1519
1527
|
'editor.minimap.scale': {
|
|
1520
1528
|
type: 'number',
|
|
@@ -1522,18 +1530,18 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1522
1530
|
minimum: 1,
|
|
1523
1531
|
maximum: 3,
|
|
1524
1532
|
enum: [1, 2, 3],
|
|
1525
|
-
description: ( localize(
|
|
1533
|
+
description: ( localize(349, "Scale of content drawn in the minimap: 1, 2 or 3."))
|
|
1526
1534
|
},
|
|
1527
1535
|
'editor.minimap.renderCharacters': {
|
|
1528
1536
|
type: 'boolean',
|
|
1529
1537
|
default: defaults.renderCharacters,
|
|
1530
|
-
description: ( localize(
|
|
1538
|
+
description: ( localize(350, "Render the actual characters on a line as opposed to color blocks."))
|
|
1531
1539
|
},
|
|
1532
1540
|
'editor.minimap.maxColumn': {
|
|
1533
1541
|
type: 'number',
|
|
1534
1542
|
default: defaults.maxColumn,
|
|
1535
1543
|
description: ( localize(
|
|
1536
|
-
|
|
1544
|
+
351,
|
|
1537
1545
|
"Limit the width of the minimap to render at most a certain number of columns."
|
|
1538
1546
|
))
|
|
1539
1547
|
},
|
|
@@ -1541,7 +1549,7 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1541
1549
|
type: 'boolean',
|
|
1542
1550
|
default: defaults.showRegionSectionHeaders,
|
|
1543
1551
|
description: ( localize(
|
|
1544
|
-
|
|
1552
|
+
352,
|
|
1545
1553
|
"Controls whether named regions are shown as section headers in the minimap."
|
|
1546
1554
|
))
|
|
1547
1555
|
},
|
|
@@ -1549,7 +1557,7 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1549
1557
|
type: 'boolean',
|
|
1550
1558
|
default: defaults.showMarkSectionHeaders,
|
|
1551
1559
|
description: ( localize(
|
|
1552
|
-
|
|
1560
|
+
353,
|
|
1553
1561
|
"Controls whether MARK: comments are shown as section headers in the minimap."
|
|
1554
1562
|
))
|
|
1555
1563
|
},
|
|
@@ -1557,20 +1565,20 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1557
1565
|
type: 'string',
|
|
1558
1566
|
default: defaults.markSectionHeaderRegex,
|
|
1559
1567
|
description: ( localize(
|
|
1560
|
-
|
|
1568
|
+
354,
|
|
1561
1569
|
"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."
|
|
1562
1570
|
)),
|
|
1563
1571
|
},
|
|
1564
1572
|
'editor.minimap.sectionHeaderFontSize': {
|
|
1565
1573
|
type: 'number',
|
|
1566
1574
|
default: defaults.sectionHeaderFontSize,
|
|
1567
|
-
description: ( localize(
|
|
1575
|
+
description: ( localize(355, "Controls the font size of section headers in the minimap."))
|
|
1568
1576
|
},
|
|
1569
1577
|
'editor.minimap.sectionHeaderLetterSpacing': {
|
|
1570
1578
|
type: 'number',
|
|
1571
1579
|
default: defaults.sectionHeaderLetterSpacing,
|
|
1572
1580
|
description: ( localize(
|
|
1573
|
-
|
|
1581
|
+
356,
|
|
1574
1582
|
"Controls the amount of space (in pixels) between characters of section header. This helps the readability of the header in small font sizes."
|
|
1575
1583
|
))
|
|
1576
1584
|
}
|
|
@@ -1622,7 +1630,7 @@ class EditorPadding extends BaseEditorOption {
|
|
|
1622
1630
|
minimum: 0,
|
|
1623
1631
|
maximum: 1000,
|
|
1624
1632
|
description: ( localize(
|
|
1625
|
-
|
|
1633
|
+
357,
|
|
1626
1634
|
"Controls the amount of space between the top edge of the editor and the first line."
|
|
1627
1635
|
))
|
|
1628
1636
|
},
|
|
@@ -1632,7 +1640,7 @@ class EditorPadding extends BaseEditorOption {
|
|
|
1632
1640
|
minimum: 0,
|
|
1633
1641
|
maximum: 1000,
|
|
1634
1642
|
description: ( localize(
|
|
1635
|
-
|
|
1643
|
+
358,
|
|
1636
1644
|
"Controls the amount of space between the bottom edge of the editor and the last line."
|
|
1637
1645
|
))
|
|
1638
1646
|
}
|
|
@@ -1660,7 +1668,7 @@ class EditorParameterHints extends BaseEditorOption {
|
|
|
1660
1668
|
type: 'boolean',
|
|
1661
1669
|
default: defaults.enabled,
|
|
1662
1670
|
description: ( localize(
|
|
1663
|
-
|
|
1671
|
+
359,
|
|
1664
1672
|
"Enables a pop-up that shows parameter documentation and type information as you type."
|
|
1665
1673
|
))
|
|
1666
1674
|
},
|
|
@@ -1668,7 +1676,7 @@ class EditorParameterHints extends BaseEditorOption {
|
|
|
1668
1676
|
type: 'boolean',
|
|
1669
1677
|
default: defaults.cycle,
|
|
1670
1678
|
description: ( localize(
|
|
1671
|
-
|
|
1679
|
+
360,
|
|
1672
1680
|
"Controls whether the parameter hints menu cycles or closes when reaching the end of the list."
|
|
1673
1681
|
))
|
|
1674
1682
|
},
|
|
@@ -1719,7 +1727,7 @@ class EditorQuickSuggestions extends BaseEditorOption {
|
|
|
1719
1727
|
{
|
|
1720
1728
|
type: 'string',
|
|
1721
1729
|
enum: ['on', 'inline', 'off'],
|
|
1722
|
-
enumDescriptions: [( localize(
|
|
1730
|
+
enumDescriptions: [( localize(361, "Quick suggestions show inside the suggest widget")), ( localize(362, "Quick suggestions show as ghost text")), ( localize(363, "Quick suggestions are disabled"))]
|
|
1723
1731
|
}
|
|
1724
1732
|
];
|
|
1725
1733
|
super(EditorOption.quickSuggestions, 'quickSuggestions', defaults, {
|
|
@@ -1729,22 +1737,22 @@ class EditorQuickSuggestions extends BaseEditorOption {
|
|
|
1729
1737
|
strings: {
|
|
1730
1738
|
anyOf: types,
|
|
1731
1739
|
default: defaults.strings,
|
|
1732
|
-
description: ( localize(
|
|
1740
|
+
description: ( localize(364, "Enable quick suggestions inside strings."))
|
|
1733
1741
|
},
|
|
1734
1742
|
comments: {
|
|
1735
1743
|
anyOf: types,
|
|
1736
1744
|
default: defaults.comments,
|
|
1737
|
-
description: ( localize(
|
|
1745
|
+
description: ( localize(365, "Enable quick suggestions inside comments."))
|
|
1738
1746
|
},
|
|
1739
1747
|
other: {
|
|
1740
1748
|
anyOf: types,
|
|
1741
1749
|
default: defaults.other,
|
|
1742
|
-
description: ( localize(
|
|
1750
|
+
description: ( localize(366, "Enable quick suggestions outside of strings and comments."))
|
|
1743
1751
|
},
|
|
1744
1752
|
},
|
|
1745
1753
|
default: defaults,
|
|
1746
1754
|
markdownDescription: ( localize(
|
|
1747
|
-
|
|
1755
|
+
367,
|
|
1748
1756
|
"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.",
|
|
1749
1757
|
'`#editor.suggestOnTriggerCharacters#`'
|
|
1750
1758
|
))
|
|
@@ -1803,13 +1811,13 @@ class EditorRenderLineNumbersOption extends BaseEditorOption {
|
|
|
1803
1811
|
type: 'string',
|
|
1804
1812
|
enum: ['off', 'on', 'relative', 'interval'],
|
|
1805
1813
|
enumDescriptions: [
|
|
1806
|
-
( localize(
|
|
1807
|
-
( localize(
|
|
1808
|
-
( localize(
|
|
1809
|
-
( localize(
|
|
1814
|
+
( localize(368, "Line numbers are not rendered.")),
|
|
1815
|
+
( localize(369, "Line numbers are rendered as absolute number.")),
|
|
1816
|
+
( localize(370, "Line numbers are rendered as distance in lines to cursor position.")),
|
|
1817
|
+
( localize(371, "Line numbers are rendered every 10 lines."))
|
|
1810
1818
|
],
|
|
1811
1819
|
default: 'on',
|
|
1812
|
-
description: ( localize(
|
|
1820
|
+
description: ( localize(372, "Controls the display of line numbers."))
|
|
1813
1821
|
});
|
|
1814
1822
|
}
|
|
1815
1823
|
validate(lineNumbers) {
|
|
@@ -1846,11 +1854,14 @@ function filterValidationDecorations(options) {
|
|
|
1846
1854
|
}
|
|
1847
1855
|
return renderValidationDecorations === 'on' ? false : true;
|
|
1848
1856
|
}
|
|
1857
|
+
function filterFontDecorations(options) {
|
|
1858
|
+
return !options.get(EditorOption.effectiveAllowVariableFonts);
|
|
1859
|
+
}
|
|
1849
1860
|
class EditorRulers extends BaseEditorOption {
|
|
1850
1861
|
constructor() {
|
|
1851
1862
|
const defaults = [];
|
|
1852
1863
|
const columnSchema = { type: 'number', description: ( localize(
|
|
1853
|
-
|
|
1864
|
+
373,
|
|
1854
1865
|
"Number of monospace characters at which this editor ruler will render."
|
|
1855
1866
|
)) };
|
|
1856
1867
|
super(EditorOption.rulers, 'rulers', defaults, {
|
|
@@ -1866,7 +1877,7 @@ class EditorRulers extends BaseEditorOption {
|
|
|
1866
1877
|
column: columnSchema,
|
|
1867
1878
|
color: {
|
|
1868
1879
|
type: 'string',
|
|
1869
|
-
description: ( localize(
|
|
1880
|
+
description: ( localize(374, "Color of this editor ruler.")),
|
|
1870
1881
|
format: 'color-hex'
|
|
1871
1882
|
}
|
|
1872
1883
|
}
|
|
@@ -1875,7 +1886,7 @@ class EditorRulers extends BaseEditorOption {
|
|
|
1875
1886
|
},
|
|
1876
1887
|
default: defaults,
|
|
1877
1888
|
description: ( localize(
|
|
1878
|
-
|
|
1889
|
+
375,
|
|
1879
1890
|
"Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty."
|
|
1880
1891
|
))
|
|
1881
1892
|
});
|
|
@@ -1949,44 +1960,44 @@ class EditorScrollbar extends BaseEditorOption {
|
|
|
1949
1960
|
type: 'string',
|
|
1950
1961
|
enum: ['auto', 'visible', 'hidden'],
|
|
1951
1962
|
enumDescriptions: [
|
|
1952
|
-
( localize(
|
|
1953
|
-
( localize(
|
|
1954
|
-
( localize(
|
|
1963
|
+
( localize(376, "The vertical scrollbar will be visible only when necessary.")),
|
|
1964
|
+
( localize(377, "The vertical scrollbar will always be visible.")),
|
|
1965
|
+
( localize(378, "The vertical scrollbar will always be hidden.")),
|
|
1955
1966
|
],
|
|
1956
1967
|
default: 'auto',
|
|
1957
|
-
description: ( localize(
|
|
1968
|
+
description: ( localize(379, "Controls the visibility of the vertical scrollbar."))
|
|
1958
1969
|
},
|
|
1959
1970
|
'editor.scrollbar.horizontal': {
|
|
1960
1971
|
type: 'string',
|
|
1961
1972
|
enum: ['auto', 'visible', 'hidden'],
|
|
1962
1973
|
enumDescriptions: [
|
|
1963
|
-
( localize(
|
|
1964
|
-
( localize(
|
|
1965
|
-
( localize(
|
|
1974
|
+
( localize(380, "The horizontal scrollbar will be visible only when necessary.")),
|
|
1975
|
+
( localize(381, "The horizontal scrollbar will always be visible.")),
|
|
1976
|
+
( localize(382, "The horizontal scrollbar will always be hidden.")),
|
|
1966
1977
|
],
|
|
1967
1978
|
default: 'auto',
|
|
1968
|
-
description: ( localize(
|
|
1979
|
+
description: ( localize(383, "Controls the visibility of the horizontal scrollbar."))
|
|
1969
1980
|
},
|
|
1970
1981
|
'editor.scrollbar.verticalScrollbarSize': {
|
|
1971
1982
|
type: 'number',
|
|
1972
1983
|
default: defaults.verticalScrollbarSize,
|
|
1973
|
-
description: ( localize(
|
|
1984
|
+
description: ( localize(384, "The width of the vertical scrollbar."))
|
|
1974
1985
|
},
|
|
1975
1986
|
'editor.scrollbar.horizontalScrollbarSize': {
|
|
1976
1987
|
type: 'number',
|
|
1977
1988
|
default: defaults.horizontalScrollbarSize,
|
|
1978
|
-
description: ( localize(
|
|
1989
|
+
description: ( localize(385, "The height of the horizontal scrollbar."))
|
|
1979
1990
|
},
|
|
1980
1991
|
'editor.scrollbar.scrollByPage': {
|
|
1981
1992
|
type: 'boolean',
|
|
1982
1993
|
default: defaults.scrollByPage,
|
|
1983
|
-
description: ( localize(
|
|
1994
|
+
description: ( localize(386, "Controls whether clicks scroll by page or jump to click position."))
|
|
1984
1995
|
},
|
|
1985
1996
|
'editor.scrollbar.ignoreHorizontalScrollbarInContentHeight': {
|
|
1986
1997
|
type: 'boolean',
|
|
1987
1998
|
default: defaults.ignoreHorizontalScrollbarInContentHeight,
|
|
1988
1999
|
description: ( localize(
|
|
1989
|
-
|
|
2000
|
+
387,
|
|
1990
2001
|
"When set, the horizontal scrollbar will not increase the size of the editor's content."
|
|
1991
2002
|
))
|
|
1992
2003
|
}
|
|
@@ -2045,7 +2056,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2045
2056
|
enum: [true, false, inUntrustedWorkspace],
|
|
2046
2057
|
default: defaults.nonBasicASCII,
|
|
2047
2058
|
description: ( localize(
|
|
2048
|
-
|
|
2059
|
+
388,
|
|
2049
2060
|
"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."
|
|
2050
2061
|
))
|
|
2051
2062
|
},
|
|
@@ -2054,7 +2065,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2054
2065
|
type: 'boolean',
|
|
2055
2066
|
default: defaults.invisibleCharacters,
|
|
2056
2067
|
description: ( localize(
|
|
2057
|
-
|
|
2068
|
+
389,
|
|
2058
2069
|
"Controls whether characters that just reserve space or have no width at all are highlighted."
|
|
2059
2070
|
))
|
|
2060
2071
|
},
|
|
@@ -2063,7 +2074,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2063
2074
|
type: 'boolean',
|
|
2064
2075
|
default: defaults.ambiguousCharacters,
|
|
2065
2076
|
description: ( localize(
|
|
2066
|
-
|
|
2077
|
+
390,
|
|
2067
2078
|
"Controls whether characters are highlighted that can be confused with basic ASCII characters, except those that are common in the current user locale."
|
|
2068
2079
|
))
|
|
2069
2080
|
},
|
|
@@ -2073,7 +2084,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2073
2084
|
enum: [true, false, inUntrustedWorkspace],
|
|
2074
2085
|
default: defaults.includeComments,
|
|
2075
2086
|
description: ( localize(
|
|
2076
|
-
|
|
2087
|
+
391,
|
|
2077
2088
|
"Controls whether characters in comments should also be subject to Unicode highlighting."
|
|
2078
2089
|
))
|
|
2079
2090
|
},
|
|
@@ -2083,7 +2094,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2083
2094
|
enum: [true, false, inUntrustedWorkspace],
|
|
2084
2095
|
default: defaults.includeStrings,
|
|
2085
2096
|
description: ( localize(
|
|
2086
|
-
|
|
2097
|
+
392,
|
|
2087
2098
|
"Controls whether characters in strings should also be subject to Unicode highlighting."
|
|
2088
2099
|
))
|
|
2089
2100
|
},
|
|
@@ -2091,7 +2102,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2091
2102
|
restricted: true,
|
|
2092
2103
|
type: 'object',
|
|
2093
2104
|
default: defaults.allowedCharacters,
|
|
2094
|
-
description: ( localize(
|
|
2105
|
+
description: ( localize(393, "Defines allowed characters that are not being highlighted.")),
|
|
2095
2106
|
additionalProperties: {
|
|
2096
2107
|
type: 'boolean'
|
|
2097
2108
|
}
|
|
@@ -2104,7 +2115,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2104
2115
|
},
|
|
2105
2116
|
default: defaults.allowedLocales,
|
|
2106
2117
|
description: ( localize(
|
|
2107
|
-
|
|
2118
|
+
394,
|
|
2108
2119
|
"Unicode characters that are common in allowed locales are not being highlighted."
|
|
2109
2120
|
))
|
|
2110
2121
|
},
|
|
@@ -2173,10 +2184,10 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2173
2184
|
showCollapsed: false,
|
|
2174
2185
|
renderSideBySide: 'auto',
|
|
2175
2186
|
allowCodeShifting: 'always',
|
|
2176
|
-
useMultiLineGhostText: true
|
|
2177
2187
|
},
|
|
2178
2188
|
experimental: {
|
|
2179
|
-
suppressInlineSuggestions:
|
|
2189
|
+
suppressInlineSuggestions: '',
|
|
2190
|
+
triggerCommandOnProviderChange: true,
|
|
2180
2191
|
},
|
|
2181
2192
|
};
|
|
2182
2193
|
super(EditorOption.inlineSuggest, 'inlineSuggest', defaults, {
|
|
@@ -2184,7 +2195,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2184
2195
|
type: 'boolean',
|
|
2185
2196
|
default: defaults.enabled,
|
|
2186
2197
|
description: ( localize(
|
|
2187
|
-
|
|
2198
|
+
395,
|
|
2188
2199
|
"Controls whether to automatically show inline suggestions in the editor."
|
|
2189
2200
|
))
|
|
2190
2201
|
},
|
|
@@ -2194,22 +2205,22 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2194
2205
|
enum: ['always', 'onHover', 'never'],
|
|
2195
2206
|
enumDescriptions: [
|
|
2196
2207
|
( localize(
|
|
2197
|
-
|
|
2208
|
+
396,
|
|
2198
2209
|
"Show the inline suggestion toolbar whenever an inline suggestion is shown."
|
|
2199
2210
|
)),
|
|
2200
2211
|
( localize(
|
|
2201
|
-
|
|
2212
|
+
397,
|
|
2202
2213
|
"Show the inline suggestion toolbar when hovering over an inline suggestion."
|
|
2203
2214
|
)),
|
|
2204
|
-
( localize(
|
|
2215
|
+
( localize(398, "Never show the inline suggestion toolbar.")),
|
|
2205
2216
|
],
|
|
2206
|
-
description: ( localize(
|
|
2217
|
+
description: ( localize(399, "Controls when to show the inline suggestion toolbar.")),
|
|
2207
2218
|
},
|
|
2208
2219
|
'editor.inlineSuggest.syntaxHighlightingEnabled': {
|
|
2209
2220
|
type: 'boolean',
|
|
2210
2221
|
default: defaults.syntaxHighlightingEnabled,
|
|
2211
2222
|
description: ( localize(
|
|
2212
|
-
|
|
2223
|
+
400,
|
|
2213
2224
|
"Controls whether to show syntax highlighting for inline suggestions in the editor."
|
|
2214
2225
|
)),
|
|
2215
2226
|
},
|
|
@@ -2217,26 +2228,38 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2217
2228
|
type: 'boolean',
|
|
2218
2229
|
default: defaults.suppressSuggestions,
|
|
2219
2230
|
description: ( localize(
|
|
2220
|
-
|
|
2231
|
+
401,
|
|
2221
2232
|
"Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available."
|
|
2222
2233
|
))
|
|
2223
2234
|
},
|
|
2224
2235
|
'editor.inlineSuggest.experimental.suppressInlineSuggestions': {
|
|
2225
|
-
type: '
|
|
2236
|
+
type: 'string',
|
|
2237
|
+
default: defaults.experimental.suppressInlineSuggestions,
|
|
2226
2238
|
tags: ['experimental', 'onExp'],
|
|
2227
|
-
|
|
2228
|
-
|
|
2239
|
+
description: ( localize(
|
|
2240
|
+
402,
|
|
2241
|
+
"Suppresses inline completions for specified extension IDs -- comma separated."
|
|
2242
|
+
))
|
|
2243
|
+
},
|
|
2244
|
+
'editor.inlineSuggest.experimental.triggerCommandOnProviderChange': {
|
|
2245
|
+
type: 'boolean',
|
|
2246
|
+
default: defaults.experimental.triggerCommandOnProviderChange,
|
|
2247
|
+
tags: ['experimental', 'onExp'],
|
|
2248
|
+
description: ( localize(
|
|
2249
|
+
403,
|
|
2250
|
+
"Controls whether to trigger a command when the inline suggestion provider changes."
|
|
2251
|
+
))
|
|
2229
2252
|
},
|
|
2230
2253
|
'editor.inlineSuggest.fontFamily': {
|
|
2231
2254
|
type: 'string',
|
|
2232
2255
|
default: defaults.fontFamily,
|
|
2233
|
-
description: ( localize(
|
|
2256
|
+
description: ( localize(404, "Controls the font family of the inline suggestions."))
|
|
2234
2257
|
},
|
|
2235
2258
|
'editor.inlineSuggest.edits.allowCodeShifting': {
|
|
2236
2259
|
type: 'string',
|
|
2237
2260
|
default: defaults.edits.allowCodeShifting,
|
|
2238
2261
|
description: ( localize(
|
|
2239
|
-
|
|
2262
|
+
405,
|
|
2240
2263
|
"Controls whether showing a suggestion will shift the code to make space for the suggestion inline."
|
|
2241
2264
|
)),
|
|
2242
2265
|
enum: ['always', 'horizontal', 'never'],
|
|
@@ -2245,15 +2268,15 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2245
2268
|
'editor.inlineSuggest.edits.renderSideBySide': {
|
|
2246
2269
|
type: 'string',
|
|
2247
2270
|
default: defaults.edits.renderSideBySide,
|
|
2248
|
-
description: ( localize(
|
|
2271
|
+
description: ( localize(406, "Controls whether larger suggestions can be shown side by side.")),
|
|
2249
2272
|
enum: ['auto', 'never'],
|
|
2250
2273
|
enumDescriptions: [
|
|
2251
2274
|
( localize(
|
|
2252
|
-
|
|
2275
|
+
407,
|
|
2253
2276
|
"Larger suggestions will show side by side if there is enough space, otherwise they will be shown below."
|
|
2254
2277
|
)),
|
|
2255
2278
|
( localize(
|
|
2256
|
-
|
|
2279
|
+
408,
|
|
2257
2280
|
"Larger suggestions are never shown side by side and will always be shown below."
|
|
2258
2281
|
)),
|
|
2259
2282
|
],
|
|
@@ -2263,7 +2286,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2263
2286
|
type: 'boolean',
|
|
2264
2287
|
default: defaults.edits.showCollapsed,
|
|
2265
2288
|
description: ( localize(
|
|
2266
|
-
|
|
2289
|
+
409,
|
|
2267
2290
|
"Controls whether the suggestion will show as collapsed until jumping to it."
|
|
2268
2291
|
)),
|
|
2269
2292
|
tags: ['nextEditSuggestions']
|
|
@@ -2288,10 +2311,10 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2288
2311
|
showCollapsed: boolean(input.edits?.showCollapsed, this.defaultValue.edits.showCollapsed),
|
|
2289
2312
|
allowCodeShifting: stringSet(input.edits?.allowCodeShifting, this.defaultValue.edits.allowCodeShifting, ['always', 'horizontal', 'never']),
|
|
2290
2313
|
renderSideBySide: stringSet(input.edits?.renderSideBySide, this.defaultValue.edits.renderSideBySide, ['never', 'auto']),
|
|
2291
|
-
useMultiLineGhostText: boolean(input.edits?.useMultiLineGhostText, this.defaultValue.edits.useMultiLineGhostText),
|
|
2292
2314
|
},
|
|
2293
2315
|
experimental: {
|
|
2294
|
-
suppressInlineSuggestions:
|
|
2316
|
+
suppressInlineSuggestions: EditorStringOption.string(input.experimental?.suppressInlineSuggestions, this.defaultValue.experimental.suppressInlineSuggestions),
|
|
2317
|
+
triggerCommandOnProviderChange: boolean(input.experimental?.triggerCommandOnProviderChange, this.defaultValue.experimental.triggerCommandOnProviderChange),
|
|
2295
2318
|
},
|
|
2296
2319
|
};
|
|
2297
2320
|
}
|
|
@@ -2307,7 +2330,7 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2307
2330
|
type: 'boolean',
|
|
2308
2331
|
default: defaults.enabled,
|
|
2309
2332
|
markdownDescription: ( localize(
|
|
2310
|
-
|
|
2333
|
+
410,
|
|
2311
2334
|
"Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.",
|
|
2312
2335
|
'`#workbench.colorCustomizations#`'
|
|
2313
2336
|
))
|
|
@@ -2316,7 +2339,7 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2316
2339
|
type: 'boolean',
|
|
2317
2340
|
default: defaults.independentColorPoolPerBracketType,
|
|
2318
2341
|
description: ( localize(
|
|
2319
|
-
|
|
2342
|
+
411,
|
|
2320
2343
|
"Controls whether each bracket type has its own independent color pool."
|
|
2321
2344
|
))
|
|
2322
2345
|
},
|
|
@@ -2347,54 +2370,54 @@ class GuideOptions extends BaseEditorOption {
|
|
|
2347
2370
|
type: ['boolean', 'string'],
|
|
2348
2371
|
enum: [true, 'active', false],
|
|
2349
2372
|
enumDescriptions: [
|
|
2350
|
-
( localize(
|
|
2351
|
-
( localize(
|
|
2352
|
-
( localize(
|
|
2373
|
+
( localize(412, "Enables bracket pair guides.")),
|
|
2374
|
+
( localize(413, "Enables bracket pair guides only for the active bracket pair.")),
|
|
2375
|
+
( localize(414, "Disables bracket pair guides.")),
|
|
2353
2376
|
],
|
|
2354
2377
|
default: defaults.bracketPairs,
|
|
2355
|
-
description: ( localize(
|
|
2378
|
+
description: ( localize(415, "Controls whether bracket pair guides are enabled or not."))
|
|
2356
2379
|
},
|
|
2357
2380
|
'editor.guides.bracketPairsHorizontal': {
|
|
2358
2381
|
type: ['boolean', 'string'],
|
|
2359
2382
|
enum: [true, 'active', false],
|
|
2360
2383
|
enumDescriptions: [
|
|
2361
2384
|
( localize(
|
|
2362
|
-
|
|
2385
|
+
416,
|
|
2363
2386
|
"Enables horizontal guides as addition to vertical bracket pair guides."
|
|
2364
2387
|
)),
|
|
2365
|
-
( localize(
|
|
2366
|
-
( localize(
|
|
2388
|
+
( localize(417, "Enables horizontal guides only for the active bracket pair.")),
|
|
2389
|
+
( localize(418, "Disables horizontal bracket pair guides.")),
|
|
2367
2390
|
],
|
|
2368
2391
|
default: defaults.bracketPairsHorizontal,
|
|
2369
|
-
description: ( localize(
|
|
2392
|
+
description: ( localize(419, "Controls whether horizontal bracket pair guides are enabled or not."))
|
|
2370
2393
|
},
|
|
2371
2394
|
'editor.guides.highlightActiveBracketPair': {
|
|
2372
2395
|
type: 'boolean',
|
|
2373
2396
|
default: defaults.highlightActiveBracketPair,
|
|
2374
2397
|
description: ( localize(
|
|
2375
|
-
|
|
2398
|
+
420,
|
|
2376
2399
|
"Controls whether the editor should highlight the active bracket pair."
|
|
2377
2400
|
))
|
|
2378
2401
|
},
|
|
2379
2402
|
'editor.guides.indentation': {
|
|
2380
2403
|
type: 'boolean',
|
|
2381
2404
|
default: defaults.indentation,
|
|
2382
|
-
description: ( localize(
|
|
2405
|
+
description: ( localize(421, "Controls whether the editor should render indent guides."))
|
|
2383
2406
|
},
|
|
2384
2407
|
'editor.guides.highlightActiveIndentation': {
|
|
2385
2408
|
type: ['boolean', 'string'],
|
|
2386
2409
|
enum: [true, 'always', false],
|
|
2387
2410
|
enumDescriptions: [
|
|
2388
|
-
( localize(
|
|
2411
|
+
( localize(422, "Highlights the active indent guide.")),
|
|
2389
2412
|
( localize(
|
|
2390
|
-
|
|
2413
|
+
423,
|
|
2391
2414
|
"Highlights the active indent guide even if bracket guides are highlighted."
|
|
2392
2415
|
)),
|
|
2393
|
-
( localize(
|
|
2416
|
+
( localize(424, "Do not highlight the active indent guide.")),
|
|
2394
2417
|
],
|
|
2395
2418
|
default: defaults.highlightActiveIndentation,
|
|
2396
2419
|
description: ( localize(
|
|
2397
|
-
|
|
2420
|
+
425,
|
|
2398
2421
|
"Controls whether the editor should highlight the active indent guide."
|
|
2399
2422
|
))
|
|
2400
2423
|
}
|
|
@@ -2470,12 +2493,12 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2470
2493
|
type: 'string',
|
|
2471
2494
|
enum: ['insert', 'replace'],
|
|
2472
2495
|
enumDescriptions: [
|
|
2473
|
-
( localize(
|
|
2474
|
-
( localize(
|
|
2496
|
+
( localize(426, "Insert suggestion without overwriting text right of the cursor.")),
|
|
2497
|
+
( localize(427, "Insert suggestion and overwrite text right of the cursor.")),
|
|
2475
2498
|
],
|
|
2476
2499
|
default: defaults.insertMode,
|
|
2477
2500
|
description: ( localize(
|
|
2478
|
-
|
|
2501
|
+
428,
|
|
2479
2502
|
"Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."
|
|
2480
2503
|
))
|
|
2481
2504
|
},
|
|
@@ -2483,7 +2506,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2483
2506
|
type: 'boolean',
|
|
2484
2507
|
default: defaults.filterGraceful,
|
|
2485
2508
|
description: ( localize(
|
|
2486
|
-
|
|
2509
|
+
429,
|
|
2487
2510
|
"Controls whether filtering and sorting suggestions accounts for small typos."
|
|
2488
2511
|
))
|
|
2489
2512
|
},
|
|
@@ -2491,7 +2514,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2491
2514
|
type: 'boolean',
|
|
2492
2515
|
default: defaults.localityBonus,
|
|
2493
2516
|
description: ( localize(
|
|
2494
|
-
|
|
2517
|
+
430,
|
|
2495
2518
|
"Controls whether sorting favors words that appear close to the cursor."
|
|
2496
2519
|
))
|
|
2497
2520
|
},
|
|
@@ -2499,7 +2522,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2499
2522
|
type: 'boolean',
|
|
2500
2523
|
default: defaults.shareSuggestSelections,
|
|
2501
2524
|
markdownDescription: ( localize(
|
|
2502
|
-
|
|
2525
|
+
431,
|
|
2503
2526
|
"Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."
|
|
2504
2527
|
))
|
|
2505
2528
|
},
|
|
@@ -2508,22 +2531,22 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2508
2531
|
enum: ['always', 'never', 'whenTriggerCharacter', 'whenQuickSuggestion'],
|
|
2509
2532
|
enumDescriptions: [
|
|
2510
2533
|
( localize(
|
|
2511
|
-
|
|
2534
|
+
432,
|
|
2512
2535
|
"Always select a suggestion when automatically triggering IntelliSense."
|
|
2513
2536
|
)),
|
|
2514
2537
|
( localize(
|
|
2515
|
-
|
|
2538
|
+
433,
|
|
2516
2539
|
"Never select a suggestion when automatically triggering IntelliSense."
|
|
2517
2540
|
)),
|
|
2518
2541
|
( localize(
|
|
2519
|
-
|
|
2542
|
+
434,
|
|
2520
2543
|
"Select a suggestion only when triggering IntelliSense from a trigger character."
|
|
2521
2544
|
)),
|
|
2522
|
-
( localize(
|
|
2545
|
+
( localize(435, "Select a suggestion only when triggering IntelliSense as you type.")),
|
|
2523
2546
|
],
|
|
2524
2547
|
default: defaults.selectionMode,
|
|
2525
2548
|
markdownDescription: ( localize(
|
|
2526
|
-
|
|
2549
|
+
436,
|
|
2527
2550
|
"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`.",
|
|
2528
2551
|
'`#editor.quickSuggestions#`',
|
|
2529
2552
|
'`#editor.suggestOnTriggerCharacters#`'
|
|
@@ -2532,197 +2555,197 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2532
2555
|
'editor.suggest.snippetsPreventQuickSuggestions': {
|
|
2533
2556
|
type: 'boolean',
|
|
2534
2557
|
default: defaults.snippetsPreventQuickSuggestions,
|
|
2535
|
-
description: ( localize(
|
|
2558
|
+
description: ( localize(437, "Controls whether an active snippet prevents quick suggestions."))
|
|
2536
2559
|
},
|
|
2537
2560
|
'editor.suggest.showIcons': {
|
|
2538
2561
|
type: 'boolean',
|
|
2539
2562
|
default: defaults.showIcons,
|
|
2540
|
-
description: ( localize(
|
|
2563
|
+
description: ( localize(438, "Controls whether to show or hide icons in suggestions."))
|
|
2541
2564
|
},
|
|
2542
2565
|
'editor.suggest.showStatusBar': {
|
|
2543
2566
|
type: 'boolean',
|
|
2544
2567
|
default: defaults.showStatusBar,
|
|
2545
2568
|
description: ( localize(
|
|
2546
|
-
|
|
2569
|
+
439,
|
|
2547
2570
|
"Controls the visibility of the status bar at the bottom of the suggest widget."
|
|
2548
2571
|
))
|
|
2549
2572
|
},
|
|
2550
2573
|
'editor.suggest.preview': {
|
|
2551
2574
|
type: 'boolean',
|
|
2552
2575
|
default: defaults.preview,
|
|
2553
|
-
description: ( localize(
|
|
2576
|
+
description: ( localize(440, "Controls whether to preview the suggestion outcome in the editor."))
|
|
2554
2577
|
},
|
|
2555
2578
|
'editor.suggest.showInlineDetails': {
|
|
2556
2579
|
type: 'boolean',
|
|
2557
2580
|
default: defaults.showInlineDetails,
|
|
2558
2581
|
description: ( localize(
|
|
2559
|
-
|
|
2582
|
+
441,
|
|
2560
2583
|
"Controls whether suggest details show inline with the label or only in the details widget."
|
|
2561
2584
|
))
|
|
2562
2585
|
},
|
|
2563
2586
|
'editor.suggest.maxVisibleSuggestions': {
|
|
2564
2587
|
type: 'number',
|
|
2565
|
-
deprecationMessage: ( localize(
|
|
2588
|
+
deprecationMessage: ( localize(442, "This setting is deprecated. The suggest widget can now be resized.")),
|
|
2566
2589
|
},
|
|
2567
2590
|
'editor.suggest.filteredTypes': {
|
|
2568
2591
|
type: 'object',
|
|
2569
2592
|
deprecationMessage: ( localize(
|
|
2570
|
-
|
|
2593
|
+
443,
|
|
2571
2594
|
"This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead."
|
|
2572
2595
|
))
|
|
2573
2596
|
},
|
|
2574
2597
|
'editor.suggest.showMethods': {
|
|
2575
2598
|
type: 'boolean',
|
|
2576
2599
|
default: true,
|
|
2577
|
-
markdownDescription: ( localize(
|
|
2600
|
+
markdownDescription: ( localize(444, "When enabled IntelliSense shows `method`-suggestions."))
|
|
2578
2601
|
},
|
|
2579
2602
|
'editor.suggest.showFunctions': {
|
|
2580
2603
|
type: 'boolean',
|
|
2581
2604
|
default: true,
|
|
2582
|
-
markdownDescription: ( localize(
|
|
2605
|
+
markdownDescription: ( localize(445, "When enabled IntelliSense shows `function`-suggestions."))
|
|
2583
2606
|
},
|
|
2584
2607
|
'editor.suggest.showConstructors': {
|
|
2585
2608
|
type: 'boolean',
|
|
2586
2609
|
default: true,
|
|
2587
|
-
markdownDescription: ( localize(
|
|
2610
|
+
markdownDescription: ( localize(446, "When enabled IntelliSense shows `constructor`-suggestions."))
|
|
2588
2611
|
},
|
|
2589
2612
|
'editor.suggest.showDeprecated': {
|
|
2590
2613
|
type: 'boolean',
|
|
2591
2614
|
default: true,
|
|
2592
|
-
markdownDescription: ( localize(
|
|
2615
|
+
markdownDescription: ( localize(447, "When enabled IntelliSense shows `deprecated`-suggestions."))
|
|
2593
2616
|
},
|
|
2594
2617
|
'editor.suggest.matchOnWordStartOnly': {
|
|
2595
2618
|
type: 'boolean',
|
|
2596
2619
|
default: true,
|
|
2597
2620
|
markdownDescription: ( localize(
|
|
2598
|
-
|
|
2621
|
+
448,
|
|
2599
2622
|
"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."
|
|
2600
2623
|
))
|
|
2601
2624
|
},
|
|
2602
2625
|
'editor.suggest.showFields': {
|
|
2603
2626
|
type: 'boolean',
|
|
2604
2627
|
default: true,
|
|
2605
|
-
markdownDescription: ( localize(
|
|
2628
|
+
markdownDescription: ( localize(449, "When enabled IntelliSense shows `field`-suggestions."))
|
|
2606
2629
|
},
|
|
2607
2630
|
'editor.suggest.showVariables': {
|
|
2608
2631
|
type: 'boolean',
|
|
2609
2632
|
default: true,
|
|
2610
|
-
markdownDescription: ( localize(
|
|
2633
|
+
markdownDescription: ( localize(450, "When enabled IntelliSense shows `variable`-suggestions."))
|
|
2611
2634
|
},
|
|
2612
2635
|
'editor.suggest.showClasses': {
|
|
2613
2636
|
type: 'boolean',
|
|
2614
2637
|
default: true,
|
|
2615
|
-
markdownDescription: ( localize(
|
|
2638
|
+
markdownDescription: ( localize(451, "When enabled IntelliSense shows `class`-suggestions."))
|
|
2616
2639
|
},
|
|
2617
2640
|
'editor.suggest.showStructs': {
|
|
2618
2641
|
type: 'boolean',
|
|
2619
2642
|
default: true,
|
|
2620
|
-
markdownDescription: ( localize(
|
|
2643
|
+
markdownDescription: ( localize(452, "When enabled IntelliSense shows `struct`-suggestions."))
|
|
2621
2644
|
},
|
|
2622
2645
|
'editor.suggest.showInterfaces': {
|
|
2623
2646
|
type: 'boolean',
|
|
2624
2647
|
default: true,
|
|
2625
|
-
markdownDescription: ( localize(
|
|
2648
|
+
markdownDescription: ( localize(453, "When enabled IntelliSense shows `interface`-suggestions."))
|
|
2626
2649
|
},
|
|
2627
2650
|
'editor.suggest.showModules': {
|
|
2628
2651
|
type: 'boolean',
|
|
2629
2652
|
default: true,
|
|
2630
|
-
markdownDescription: ( localize(
|
|
2653
|
+
markdownDescription: ( localize(454, "When enabled IntelliSense shows `module`-suggestions."))
|
|
2631
2654
|
},
|
|
2632
2655
|
'editor.suggest.showProperties': {
|
|
2633
2656
|
type: 'boolean',
|
|
2634
2657
|
default: true,
|
|
2635
|
-
markdownDescription: ( localize(
|
|
2658
|
+
markdownDescription: ( localize(455, "When enabled IntelliSense shows `property`-suggestions."))
|
|
2636
2659
|
},
|
|
2637
2660
|
'editor.suggest.showEvents': {
|
|
2638
2661
|
type: 'boolean',
|
|
2639
2662
|
default: true,
|
|
2640
|
-
markdownDescription: ( localize(
|
|
2663
|
+
markdownDescription: ( localize(456, "When enabled IntelliSense shows `event`-suggestions."))
|
|
2641
2664
|
},
|
|
2642
2665
|
'editor.suggest.showOperators': {
|
|
2643
2666
|
type: 'boolean',
|
|
2644
2667
|
default: true,
|
|
2645
|
-
markdownDescription: ( localize(
|
|
2668
|
+
markdownDescription: ( localize(457, "When enabled IntelliSense shows `operator`-suggestions."))
|
|
2646
2669
|
},
|
|
2647
2670
|
'editor.suggest.showUnits': {
|
|
2648
2671
|
type: 'boolean',
|
|
2649
2672
|
default: true,
|
|
2650
|
-
markdownDescription: ( localize(
|
|
2673
|
+
markdownDescription: ( localize(458, "When enabled IntelliSense shows `unit`-suggestions."))
|
|
2651
2674
|
},
|
|
2652
2675
|
'editor.suggest.showValues': {
|
|
2653
2676
|
type: 'boolean',
|
|
2654
2677
|
default: true,
|
|
2655
|
-
markdownDescription: ( localize(
|
|
2678
|
+
markdownDescription: ( localize(459, "When enabled IntelliSense shows `value`-suggestions."))
|
|
2656
2679
|
},
|
|
2657
2680
|
'editor.suggest.showConstants': {
|
|
2658
2681
|
type: 'boolean',
|
|
2659
2682
|
default: true,
|
|
2660
|
-
markdownDescription: ( localize(
|
|
2683
|
+
markdownDescription: ( localize(460, "When enabled IntelliSense shows `constant`-suggestions."))
|
|
2661
2684
|
},
|
|
2662
2685
|
'editor.suggest.showEnums': {
|
|
2663
2686
|
type: 'boolean',
|
|
2664
2687
|
default: true,
|
|
2665
|
-
markdownDescription: ( localize(
|
|
2688
|
+
markdownDescription: ( localize(461, "When enabled IntelliSense shows `enum`-suggestions."))
|
|
2666
2689
|
},
|
|
2667
2690
|
'editor.suggest.showEnumMembers': {
|
|
2668
2691
|
type: 'boolean',
|
|
2669
2692
|
default: true,
|
|
2670
|
-
markdownDescription: ( localize(
|
|
2693
|
+
markdownDescription: ( localize(462, "When enabled IntelliSense shows `enumMember`-suggestions."))
|
|
2671
2694
|
},
|
|
2672
2695
|
'editor.suggest.showKeywords': {
|
|
2673
2696
|
type: 'boolean',
|
|
2674
2697
|
default: true,
|
|
2675
|
-
markdownDescription: ( localize(
|
|
2698
|
+
markdownDescription: ( localize(463, "When enabled IntelliSense shows `keyword`-suggestions."))
|
|
2676
2699
|
},
|
|
2677
2700
|
'editor.suggest.showWords': {
|
|
2678
2701
|
type: 'boolean',
|
|
2679
2702
|
default: true,
|
|
2680
|
-
markdownDescription: ( localize(
|
|
2703
|
+
markdownDescription: ( localize(464, "When enabled IntelliSense shows `text`-suggestions."))
|
|
2681
2704
|
},
|
|
2682
2705
|
'editor.suggest.showColors': {
|
|
2683
2706
|
type: 'boolean',
|
|
2684
2707
|
default: true,
|
|
2685
|
-
markdownDescription: ( localize(
|
|
2708
|
+
markdownDescription: ( localize(465, "When enabled IntelliSense shows `color`-suggestions."))
|
|
2686
2709
|
},
|
|
2687
2710
|
'editor.suggest.showFiles': {
|
|
2688
2711
|
type: 'boolean',
|
|
2689
2712
|
default: true,
|
|
2690
|
-
markdownDescription: ( localize(
|
|
2713
|
+
markdownDescription: ( localize(466, "When enabled IntelliSense shows `file`-suggestions."))
|
|
2691
2714
|
},
|
|
2692
2715
|
'editor.suggest.showReferences': {
|
|
2693
2716
|
type: 'boolean',
|
|
2694
2717
|
default: true,
|
|
2695
|
-
markdownDescription: ( localize(
|
|
2718
|
+
markdownDescription: ( localize(467, "When enabled IntelliSense shows `reference`-suggestions."))
|
|
2696
2719
|
},
|
|
2697
2720
|
'editor.suggest.showCustomcolors': {
|
|
2698
2721
|
type: 'boolean',
|
|
2699
2722
|
default: true,
|
|
2700
|
-
markdownDescription: ( localize(
|
|
2723
|
+
markdownDescription: ( localize(468, "When enabled IntelliSense shows `customcolor`-suggestions."))
|
|
2701
2724
|
},
|
|
2702
2725
|
'editor.suggest.showFolders': {
|
|
2703
2726
|
type: 'boolean',
|
|
2704
2727
|
default: true,
|
|
2705
|
-
markdownDescription: ( localize(
|
|
2728
|
+
markdownDescription: ( localize(469, "When enabled IntelliSense shows `folder`-suggestions."))
|
|
2706
2729
|
},
|
|
2707
2730
|
'editor.suggest.showTypeParameters': {
|
|
2708
2731
|
type: 'boolean',
|
|
2709
2732
|
default: true,
|
|
2710
|
-
markdownDescription: ( localize(
|
|
2733
|
+
markdownDescription: ( localize(470, "When enabled IntelliSense shows `typeParameter`-suggestions."))
|
|
2711
2734
|
},
|
|
2712
2735
|
'editor.suggest.showSnippets': {
|
|
2713
2736
|
type: 'boolean',
|
|
2714
2737
|
default: true,
|
|
2715
|
-
markdownDescription: ( localize(
|
|
2738
|
+
markdownDescription: ( localize(471, "When enabled IntelliSense shows `snippet`-suggestions."))
|
|
2716
2739
|
},
|
|
2717
2740
|
'editor.suggest.showUsers': {
|
|
2718
2741
|
type: 'boolean',
|
|
2719
2742
|
default: true,
|
|
2720
|
-
markdownDescription: ( localize(
|
|
2743
|
+
markdownDescription: ( localize(472, "When enabled IntelliSense shows `user`-suggestions."))
|
|
2721
2744
|
},
|
|
2722
2745
|
'editor.suggest.showIssues': {
|
|
2723
2746
|
type: 'boolean',
|
|
2724
2747
|
default: true,
|
|
2725
|
-
markdownDescription: ( localize(
|
|
2748
|
+
markdownDescription: ( localize(473, "When enabled IntelliSense shows `issues`-suggestions."))
|
|
2726
2749
|
}
|
|
2727
2750
|
});
|
|
2728
2751
|
}
|
|
@@ -2782,13 +2805,13 @@ class SmartSelect extends BaseEditorOption {
|
|
|
2782
2805
|
selectSubwords: true,
|
|
2783
2806
|
}, {
|
|
2784
2807
|
'editor.smartSelect.selectLeadingAndTrailingWhitespace': {
|
|
2785
|
-
description: ( localize(
|
|
2808
|
+
description: ( localize(474, "Whether leading and trailing whitespace should always be selected.")),
|
|
2786
2809
|
default: true,
|
|
2787
2810
|
type: 'boolean'
|
|
2788
2811
|
},
|
|
2789
2812
|
'editor.smartSelect.selectSubwords': {
|
|
2790
2813
|
description: ( localize(
|
|
2791
|
-
|
|
2814
|
+
475,
|
|
2792
2815
|
"Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."
|
|
2793
2816
|
)),
|
|
2794
2817
|
default: true,
|
|
@@ -2813,13 +2836,13 @@ class WordSegmenterLocales extends BaseEditorOption {
|
|
|
2813
2836
|
anyOf: [
|
|
2814
2837
|
{
|
|
2815
2838
|
description: ( localize(
|
|
2816
|
-
|
|
2839
|
+
476,
|
|
2817
2840
|
"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.)."
|
|
2818
2841
|
)),
|
|
2819
2842
|
type: 'string',
|
|
2820
2843
|
}, {
|
|
2821
2844
|
description: ( localize(
|
|
2822
|
-
|
|
2845
|
+
476,
|
|
2823
2846
|
"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.)."
|
|
2824
2847
|
)),
|
|
2825
2848
|
type: 'array',
|
|
@@ -2866,12 +2889,12 @@ class WrappingIndentOption extends BaseEditorOption {
|
|
|
2866
2889
|
type: 'string',
|
|
2867
2890
|
enum: ['none', 'same', 'indent', 'deepIndent'],
|
|
2868
2891
|
enumDescriptions: [
|
|
2869
|
-
( localize(
|
|
2870
|
-
( localize(
|
|
2871
|
-
( localize(
|
|
2872
|
-
( localize(
|
|
2892
|
+
( localize(477, "No indentation. Wrapped lines begin at column 1.")),
|
|
2893
|
+
( localize(478, "Wrapped lines get the same indentation as the parent.")),
|
|
2894
|
+
( localize(479, "Wrapped lines get +1 indentation toward the parent.")),
|
|
2895
|
+
( localize(480, "Wrapped lines get +2 indentation toward the parent.")),
|
|
2873
2896
|
],
|
|
2874
|
-
description: ( localize(
|
|
2897
|
+
description: ( localize(481, "Controls the indentation of wrapped lines.")),
|
|
2875
2898
|
default: 'same'
|
|
2876
2899
|
}
|
|
2877
2900
|
});
|
|
@@ -2915,14 +2938,14 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
2915
2938
|
type: 'boolean',
|
|
2916
2939
|
default: defaults.enabled,
|
|
2917
2940
|
markdownDescription: ( localize(
|
|
2918
|
-
|
|
2941
|
+
482,
|
|
2919
2942
|
"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)."
|
|
2920
2943
|
)),
|
|
2921
2944
|
},
|
|
2922
2945
|
'editor.dropIntoEditor.showDropSelector': {
|
|
2923
2946
|
type: 'string',
|
|
2924
2947
|
markdownDescription: ( localize(
|
|
2925
|
-
|
|
2948
|
+
483,
|
|
2926
2949
|
"Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped."
|
|
2927
2950
|
)),
|
|
2928
2951
|
enum: [
|
|
@@ -2931,11 +2954,11 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
2931
2954
|
],
|
|
2932
2955
|
enumDescriptions: [
|
|
2933
2956
|
( localize(
|
|
2934
|
-
|
|
2957
|
+
484,
|
|
2935
2958
|
"Show the drop selector widget after a file is dropped into the editor."
|
|
2936
2959
|
)),
|
|
2937
2960
|
( localize(
|
|
2938
|
-
|
|
2961
|
+
485,
|
|
2939
2962
|
"Never show the drop selector widget. Instead the default drop provider is always used."
|
|
2940
2963
|
)),
|
|
2941
2964
|
],
|
|
@@ -2961,12 +2984,12 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
2961
2984
|
'editor.pasteAs.enabled': {
|
|
2962
2985
|
type: 'boolean',
|
|
2963
2986
|
default: defaults.enabled,
|
|
2964
|
-
markdownDescription: ( localize(
|
|
2987
|
+
markdownDescription: ( localize(486, "Controls whether you can paste content in different ways.")),
|
|
2965
2988
|
},
|
|
2966
2989
|
'editor.pasteAs.showPasteSelector': {
|
|
2967
2990
|
type: 'string',
|
|
2968
2991
|
markdownDescription: ( localize(
|
|
2969
|
-
|
|
2992
|
+
487,
|
|
2970
2993
|
"Controls if a widget is shown when pasting content in to the editor. This widget lets you control how the file is pasted."
|
|
2971
2994
|
)),
|
|
2972
2995
|
enum: [
|
|
@@ -2975,11 +2998,11 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
2975
2998
|
],
|
|
2976
2999
|
enumDescriptions: [
|
|
2977
3000
|
( localize(
|
|
2978
|
-
|
|
3001
|
+
488,
|
|
2979
3002
|
"Show the paste selector widget after content is pasted into the editor."
|
|
2980
3003
|
)),
|
|
2981
3004
|
( localize(
|
|
2982
|
-
|
|
3005
|
+
489,
|
|
2983
3006
|
"Never show the paste selector widget. Instead the default pasting behavior is always used."
|
|
2984
3007
|
)),
|
|
2985
3008
|
],
|
|
@@ -3020,159 +3043,165 @@ var EditorOption;
|
|
|
3020
3043
|
EditorOption[EditorOption["accessibilitySupport"] = 2] = "accessibilitySupport";
|
|
3021
3044
|
EditorOption[EditorOption["accessibilityPageSize"] = 3] = "accessibilityPageSize";
|
|
3022
3045
|
EditorOption[EditorOption["allowVariableLineHeights"] = 4] = "allowVariableLineHeights";
|
|
3023
|
-
EditorOption[EditorOption["
|
|
3024
|
-
EditorOption[EditorOption["
|
|
3025
|
-
EditorOption[EditorOption["
|
|
3026
|
-
EditorOption[EditorOption["
|
|
3027
|
-
EditorOption[EditorOption["
|
|
3028
|
-
EditorOption[EditorOption["
|
|
3029
|
-
EditorOption[EditorOption["
|
|
3030
|
-
EditorOption[EditorOption["
|
|
3031
|
-
EditorOption[EditorOption["
|
|
3032
|
-
EditorOption[EditorOption["
|
|
3033
|
-
EditorOption[EditorOption["
|
|
3034
|
-
EditorOption[EditorOption["
|
|
3035
|
-
EditorOption[EditorOption["
|
|
3036
|
-
EditorOption[EditorOption["
|
|
3037
|
-
EditorOption[EditorOption["
|
|
3038
|
-
EditorOption[EditorOption["
|
|
3039
|
-
EditorOption[EditorOption["
|
|
3040
|
-
EditorOption[EditorOption["
|
|
3041
|
-
EditorOption[EditorOption["
|
|
3042
|
-
EditorOption[EditorOption["
|
|
3043
|
-
EditorOption[EditorOption["
|
|
3044
|
-
EditorOption[EditorOption["
|
|
3045
|
-
EditorOption[EditorOption["
|
|
3046
|
-
EditorOption[EditorOption["
|
|
3047
|
-
EditorOption[EditorOption["
|
|
3048
|
-
EditorOption[EditorOption["
|
|
3049
|
-
EditorOption[EditorOption["
|
|
3050
|
-
EditorOption[EditorOption["
|
|
3051
|
-
EditorOption[EditorOption["
|
|
3052
|
-
EditorOption[EditorOption["
|
|
3053
|
-
EditorOption[EditorOption["
|
|
3054
|
-
EditorOption[EditorOption["
|
|
3055
|
-
EditorOption[EditorOption["
|
|
3056
|
-
EditorOption[EditorOption["
|
|
3057
|
-
EditorOption[EditorOption["
|
|
3058
|
-
EditorOption[EditorOption["
|
|
3059
|
-
EditorOption[EditorOption["
|
|
3060
|
-
EditorOption[EditorOption["
|
|
3061
|
-
EditorOption[EditorOption["
|
|
3062
|
-
EditorOption[EditorOption["
|
|
3063
|
-
EditorOption[EditorOption["
|
|
3064
|
-
EditorOption[EditorOption["
|
|
3065
|
-
EditorOption[EditorOption["
|
|
3066
|
-
EditorOption[EditorOption["
|
|
3067
|
-
EditorOption[EditorOption["
|
|
3068
|
-
EditorOption[EditorOption["
|
|
3069
|
-
EditorOption[EditorOption["
|
|
3070
|
-
EditorOption[EditorOption["
|
|
3071
|
-
EditorOption[EditorOption["
|
|
3072
|
-
EditorOption[EditorOption["
|
|
3073
|
-
EditorOption[EditorOption["
|
|
3074
|
-
EditorOption[EditorOption["
|
|
3075
|
-
EditorOption[EditorOption["
|
|
3076
|
-
EditorOption[EditorOption["
|
|
3077
|
-
EditorOption[EditorOption["
|
|
3078
|
-
EditorOption[EditorOption["
|
|
3079
|
-
EditorOption[EditorOption["
|
|
3080
|
-
EditorOption[EditorOption["
|
|
3081
|
-
EditorOption[EditorOption["
|
|
3082
|
-
EditorOption[EditorOption["
|
|
3083
|
-
EditorOption[EditorOption["
|
|
3084
|
-
EditorOption[EditorOption["
|
|
3085
|
-
EditorOption[EditorOption["
|
|
3086
|
-
EditorOption[EditorOption["
|
|
3087
|
-
EditorOption[EditorOption["
|
|
3088
|
-
EditorOption[EditorOption["
|
|
3089
|
-
EditorOption[EditorOption["
|
|
3090
|
-
EditorOption[EditorOption["
|
|
3091
|
-
EditorOption[EditorOption["
|
|
3092
|
-
EditorOption[EditorOption["
|
|
3093
|
-
EditorOption[EditorOption["
|
|
3094
|
-
EditorOption[EditorOption["
|
|
3095
|
-
EditorOption[EditorOption["
|
|
3096
|
-
EditorOption[EditorOption["
|
|
3097
|
-
EditorOption[EditorOption["
|
|
3098
|
-
EditorOption[EditorOption["
|
|
3099
|
-
EditorOption[EditorOption["
|
|
3100
|
-
EditorOption[EditorOption["
|
|
3101
|
-
EditorOption[EditorOption["
|
|
3102
|
-
EditorOption[EditorOption["
|
|
3103
|
-
EditorOption[EditorOption["
|
|
3104
|
-
EditorOption[EditorOption["
|
|
3105
|
-
EditorOption[EditorOption["
|
|
3106
|
-
EditorOption[EditorOption["
|
|
3107
|
-
EditorOption[EditorOption["
|
|
3108
|
-
EditorOption[EditorOption["
|
|
3109
|
-
EditorOption[EditorOption["
|
|
3110
|
-
EditorOption[EditorOption["
|
|
3111
|
-
EditorOption[EditorOption["
|
|
3112
|
-
EditorOption[EditorOption["
|
|
3113
|
-
EditorOption[EditorOption["
|
|
3114
|
-
EditorOption[EditorOption["
|
|
3115
|
-
EditorOption[EditorOption["
|
|
3116
|
-
EditorOption[EditorOption["
|
|
3117
|
-
EditorOption[EditorOption["
|
|
3118
|
-
EditorOption[EditorOption["
|
|
3119
|
-
EditorOption[EditorOption["
|
|
3120
|
-
EditorOption[EditorOption["
|
|
3121
|
-
EditorOption[EditorOption["
|
|
3122
|
-
EditorOption[EditorOption["
|
|
3123
|
-
EditorOption[EditorOption["
|
|
3124
|
-
EditorOption[EditorOption["
|
|
3125
|
-
EditorOption[EditorOption["
|
|
3126
|
-
EditorOption[EditorOption["
|
|
3127
|
-
EditorOption[EditorOption["
|
|
3128
|
-
EditorOption[EditorOption["
|
|
3129
|
-
EditorOption[EditorOption["
|
|
3130
|
-
EditorOption[EditorOption["
|
|
3131
|
-
EditorOption[EditorOption["
|
|
3132
|
-
EditorOption[EditorOption["
|
|
3133
|
-
EditorOption[EditorOption["
|
|
3134
|
-
EditorOption[EditorOption["
|
|
3135
|
-
EditorOption[EditorOption["
|
|
3136
|
-
EditorOption[EditorOption["
|
|
3137
|
-
EditorOption[EditorOption["
|
|
3138
|
-
EditorOption[EditorOption["
|
|
3139
|
-
EditorOption[EditorOption["
|
|
3140
|
-
EditorOption[EditorOption["
|
|
3141
|
-
EditorOption[EditorOption["
|
|
3142
|
-
EditorOption[EditorOption["
|
|
3143
|
-
EditorOption[EditorOption["
|
|
3144
|
-
EditorOption[EditorOption["
|
|
3145
|
-
EditorOption[EditorOption["
|
|
3146
|
-
EditorOption[EditorOption["
|
|
3147
|
-
EditorOption[EditorOption["
|
|
3148
|
-
EditorOption[EditorOption["
|
|
3149
|
-
EditorOption[EditorOption["
|
|
3150
|
-
EditorOption[EditorOption["
|
|
3151
|
-
EditorOption[EditorOption["
|
|
3152
|
-
EditorOption[EditorOption["
|
|
3153
|
-
EditorOption[EditorOption["
|
|
3154
|
-
EditorOption[EditorOption["
|
|
3155
|
-
EditorOption[EditorOption["
|
|
3156
|
-
EditorOption[EditorOption["
|
|
3157
|
-
EditorOption[EditorOption["
|
|
3158
|
-
EditorOption[EditorOption["
|
|
3159
|
-
EditorOption[EditorOption["
|
|
3160
|
-
EditorOption[EditorOption["
|
|
3161
|
-
EditorOption[EditorOption["
|
|
3162
|
-
EditorOption[EditorOption["
|
|
3163
|
-
EditorOption[EditorOption["
|
|
3164
|
-
EditorOption[EditorOption["
|
|
3165
|
-
EditorOption[EditorOption["
|
|
3166
|
-
EditorOption[EditorOption["
|
|
3167
|
-
EditorOption[EditorOption["
|
|
3168
|
-
EditorOption[EditorOption["
|
|
3169
|
-
EditorOption[EditorOption["
|
|
3170
|
-
EditorOption[EditorOption["
|
|
3171
|
-
EditorOption[EditorOption["
|
|
3172
|
-
EditorOption[EditorOption["
|
|
3173
|
-
EditorOption[EditorOption["
|
|
3174
|
-
EditorOption[EditorOption["
|
|
3175
|
-
EditorOption[EditorOption["
|
|
3046
|
+
EditorOption[EditorOption["allowVariableFonts"] = 5] = "allowVariableFonts";
|
|
3047
|
+
EditorOption[EditorOption["allowVariableFontsInAccessibilityMode"] = 6] = "allowVariableFontsInAccessibilityMode";
|
|
3048
|
+
EditorOption[EditorOption["ariaLabel"] = 7] = "ariaLabel";
|
|
3049
|
+
EditorOption[EditorOption["ariaRequired"] = 8] = "ariaRequired";
|
|
3050
|
+
EditorOption[EditorOption["autoClosingBrackets"] = 9] = "autoClosingBrackets";
|
|
3051
|
+
EditorOption[EditorOption["autoClosingComments"] = 10] = "autoClosingComments";
|
|
3052
|
+
EditorOption[EditorOption["screenReaderAnnounceInlineSuggestion"] = 11] = "screenReaderAnnounceInlineSuggestion";
|
|
3053
|
+
EditorOption[EditorOption["autoClosingDelete"] = 12] = "autoClosingDelete";
|
|
3054
|
+
EditorOption[EditorOption["autoClosingOvertype"] = 13] = "autoClosingOvertype";
|
|
3055
|
+
EditorOption[EditorOption["autoClosingQuotes"] = 14] = "autoClosingQuotes";
|
|
3056
|
+
EditorOption[EditorOption["autoIndent"] = 15] = "autoIndent";
|
|
3057
|
+
EditorOption[EditorOption["autoIndentOnPaste"] = 16] = "autoIndentOnPaste";
|
|
3058
|
+
EditorOption[EditorOption["autoIndentOnPasteWithinString"] = 17] = "autoIndentOnPasteWithinString";
|
|
3059
|
+
EditorOption[EditorOption["automaticLayout"] = 18] = "automaticLayout";
|
|
3060
|
+
EditorOption[EditorOption["autoSurround"] = 19] = "autoSurround";
|
|
3061
|
+
EditorOption[EditorOption["bracketPairColorization"] = 20] = "bracketPairColorization";
|
|
3062
|
+
EditorOption[EditorOption["guides"] = 21] = "guides";
|
|
3063
|
+
EditorOption[EditorOption["codeLens"] = 22] = "codeLens";
|
|
3064
|
+
EditorOption[EditorOption["codeLensFontFamily"] = 23] = "codeLensFontFamily";
|
|
3065
|
+
EditorOption[EditorOption["codeLensFontSize"] = 24] = "codeLensFontSize";
|
|
3066
|
+
EditorOption[EditorOption["colorDecorators"] = 25] = "colorDecorators";
|
|
3067
|
+
EditorOption[EditorOption["colorDecoratorsLimit"] = 26] = "colorDecoratorsLimit";
|
|
3068
|
+
EditorOption[EditorOption["columnSelection"] = 27] = "columnSelection";
|
|
3069
|
+
EditorOption[EditorOption["comments"] = 28] = "comments";
|
|
3070
|
+
EditorOption[EditorOption["contextmenu"] = 29] = "contextmenu";
|
|
3071
|
+
EditorOption[EditorOption["copyWithSyntaxHighlighting"] = 30] = "copyWithSyntaxHighlighting";
|
|
3072
|
+
EditorOption[EditorOption["cursorBlinking"] = 31] = "cursorBlinking";
|
|
3073
|
+
EditorOption[EditorOption["cursorSmoothCaretAnimation"] = 32] = "cursorSmoothCaretAnimation";
|
|
3074
|
+
EditorOption[EditorOption["cursorStyle"] = 33] = "cursorStyle";
|
|
3075
|
+
EditorOption[EditorOption["cursorSurroundingLines"] = 34] = "cursorSurroundingLines";
|
|
3076
|
+
EditorOption[EditorOption["cursorSurroundingLinesStyle"] = 35] = "cursorSurroundingLinesStyle";
|
|
3077
|
+
EditorOption[EditorOption["cursorWidth"] = 36] = "cursorWidth";
|
|
3078
|
+
EditorOption[EditorOption["disableLayerHinting"] = 37] = "disableLayerHinting";
|
|
3079
|
+
EditorOption[EditorOption["disableMonospaceOptimizations"] = 38] = "disableMonospaceOptimizations";
|
|
3080
|
+
EditorOption[EditorOption["domReadOnly"] = 39] = "domReadOnly";
|
|
3081
|
+
EditorOption[EditorOption["dragAndDrop"] = 40] = "dragAndDrop";
|
|
3082
|
+
EditorOption[EditorOption["dropIntoEditor"] = 41] = "dropIntoEditor";
|
|
3083
|
+
EditorOption[EditorOption["editContext"] = 42] = "editContext";
|
|
3084
|
+
EditorOption[EditorOption["emptySelectionClipboard"] = 43] = "emptySelectionClipboard";
|
|
3085
|
+
EditorOption[EditorOption["experimentalGpuAcceleration"] = 44] = "experimentalGpuAcceleration";
|
|
3086
|
+
EditorOption[EditorOption["experimentalWhitespaceRendering"] = 45] = "experimentalWhitespaceRendering";
|
|
3087
|
+
EditorOption[EditorOption["extraEditorClassName"] = 46] = "extraEditorClassName";
|
|
3088
|
+
EditorOption[EditorOption["fastScrollSensitivity"] = 47] = "fastScrollSensitivity";
|
|
3089
|
+
EditorOption[EditorOption["find"] = 48] = "find";
|
|
3090
|
+
EditorOption[EditorOption["fixedOverflowWidgets"] = 49] = "fixedOverflowWidgets";
|
|
3091
|
+
EditorOption[EditorOption["folding"] = 50] = "folding";
|
|
3092
|
+
EditorOption[EditorOption["foldingStrategy"] = 51] = "foldingStrategy";
|
|
3093
|
+
EditorOption[EditorOption["foldingHighlight"] = 52] = "foldingHighlight";
|
|
3094
|
+
EditorOption[EditorOption["foldingImportsByDefault"] = 53] = "foldingImportsByDefault";
|
|
3095
|
+
EditorOption[EditorOption["foldingMaximumRegions"] = 54] = "foldingMaximumRegions";
|
|
3096
|
+
EditorOption[EditorOption["unfoldOnClickAfterEndOfLine"] = 55] = "unfoldOnClickAfterEndOfLine";
|
|
3097
|
+
EditorOption[EditorOption["fontFamily"] = 56] = "fontFamily";
|
|
3098
|
+
EditorOption[EditorOption["fontInfo"] = 57] = "fontInfo";
|
|
3099
|
+
EditorOption[EditorOption["fontLigatures"] = 58] = "fontLigatures";
|
|
3100
|
+
EditorOption[EditorOption["fontSize"] = 59] = "fontSize";
|
|
3101
|
+
EditorOption[EditorOption["fontWeight"] = 60] = "fontWeight";
|
|
3102
|
+
EditorOption[EditorOption["fontVariations"] = 61] = "fontVariations";
|
|
3103
|
+
EditorOption[EditorOption["formatOnPaste"] = 62] = "formatOnPaste";
|
|
3104
|
+
EditorOption[EditorOption["formatOnType"] = 63] = "formatOnType";
|
|
3105
|
+
EditorOption[EditorOption["glyphMargin"] = 64] = "glyphMargin";
|
|
3106
|
+
EditorOption[EditorOption["gotoLocation"] = 65] = "gotoLocation";
|
|
3107
|
+
EditorOption[EditorOption["hideCursorInOverviewRuler"] = 66] = "hideCursorInOverviewRuler";
|
|
3108
|
+
EditorOption[EditorOption["hover"] = 67] = "hover";
|
|
3109
|
+
EditorOption[EditorOption["inDiffEditor"] = 68] = "inDiffEditor";
|
|
3110
|
+
EditorOption[EditorOption["inlineSuggest"] = 69] = "inlineSuggest";
|
|
3111
|
+
EditorOption[EditorOption["letterSpacing"] = 70] = "letterSpacing";
|
|
3112
|
+
EditorOption[EditorOption["lightbulb"] = 71] = "lightbulb";
|
|
3113
|
+
EditorOption[EditorOption["lineDecorationsWidth"] = 72] = "lineDecorationsWidth";
|
|
3114
|
+
EditorOption[EditorOption["lineHeight"] = 73] = "lineHeight";
|
|
3115
|
+
EditorOption[EditorOption["lineNumbers"] = 74] = "lineNumbers";
|
|
3116
|
+
EditorOption[EditorOption["lineNumbersMinChars"] = 75] = "lineNumbersMinChars";
|
|
3117
|
+
EditorOption[EditorOption["linkedEditing"] = 76] = "linkedEditing";
|
|
3118
|
+
EditorOption[EditorOption["links"] = 77] = "links";
|
|
3119
|
+
EditorOption[EditorOption["matchBrackets"] = 78] = "matchBrackets";
|
|
3120
|
+
EditorOption[EditorOption["minimap"] = 79] = "minimap";
|
|
3121
|
+
EditorOption[EditorOption["mouseStyle"] = 80] = "mouseStyle";
|
|
3122
|
+
EditorOption[EditorOption["mouseWheelScrollSensitivity"] = 81] = "mouseWheelScrollSensitivity";
|
|
3123
|
+
EditorOption[EditorOption["mouseWheelZoom"] = 82] = "mouseWheelZoom";
|
|
3124
|
+
EditorOption[EditorOption["multiCursorMergeOverlapping"] = 83] = "multiCursorMergeOverlapping";
|
|
3125
|
+
EditorOption[EditorOption["multiCursorModifier"] = 84] = "multiCursorModifier";
|
|
3126
|
+
EditorOption[EditorOption["multiCursorPaste"] = 85] = "multiCursorPaste";
|
|
3127
|
+
EditorOption[EditorOption["multiCursorLimit"] = 86] = "multiCursorLimit";
|
|
3128
|
+
EditorOption[EditorOption["occurrencesHighlight"] = 87] = "occurrencesHighlight";
|
|
3129
|
+
EditorOption[EditorOption["occurrencesHighlightDelay"] = 88] = "occurrencesHighlightDelay";
|
|
3130
|
+
EditorOption[EditorOption["overtypeCursorStyle"] = 89] = "overtypeCursorStyle";
|
|
3131
|
+
EditorOption[EditorOption["overtypeOnPaste"] = 90] = "overtypeOnPaste";
|
|
3132
|
+
EditorOption[EditorOption["overviewRulerBorder"] = 91] = "overviewRulerBorder";
|
|
3133
|
+
EditorOption[EditorOption["overviewRulerLanes"] = 92] = "overviewRulerLanes";
|
|
3134
|
+
EditorOption[EditorOption["padding"] = 93] = "padding";
|
|
3135
|
+
EditorOption[EditorOption["pasteAs"] = 94] = "pasteAs";
|
|
3136
|
+
EditorOption[EditorOption["parameterHints"] = 95] = "parameterHints";
|
|
3137
|
+
EditorOption[EditorOption["peekWidgetDefaultFocus"] = 96] = "peekWidgetDefaultFocus";
|
|
3138
|
+
EditorOption[EditorOption["placeholder"] = 97] = "placeholder";
|
|
3139
|
+
EditorOption[EditorOption["definitionLinkOpensInPeek"] = 98] = "definitionLinkOpensInPeek";
|
|
3140
|
+
EditorOption[EditorOption["quickSuggestions"] = 99] = "quickSuggestions";
|
|
3141
|
+
EditorOption[EditorOption["quickSuggestionsDelay"] = 100] = "quickSuggestionsDelay";
|
|
3142
|
+
EditorOption[EditorOption["readOnly"] = 101] = "readOnly";
|
|
3143
|
+
EditorOption[EditorOption["readOnlyMessage"] = 102] = "readOnlyMessage";
|
|
3144
|
+
EditorOption[EditorOption["renameOnType"] = 103] = "renameOnType";
|
|
3145
|
+
EditorOption[EditorOption["renderControlCharacters"] = 104] = "renderControlCharacters";
|
|
3146
|
+
EditorOption[EditorOption["renderFinalNewline"] = 105] = "renderFinalNewline";
|
|
3147
|
+
EditorOption[EditorOption["renderLineHighlight"] = 106] = "renderLineHighlight";
|
|
3148
|
+
EditorOption[EditorOption["renderLineHighlightOnlyWhenFocus"] = 107] = "renderLineHighlightOnlyWhenFocus";
|
|
3149
|
+
EditorOption[EditorOption["renderValidationDecorations"] = 108] = "renderValidationDecorations";
|
|
3150
|
+
EditorOption[EditorOption["renderWhitespace"] = 109] = "renderWhitespace";
|
|
3151
|
+
EditorOption[EditorOption["revealHorizontalRightPadding"] = 110] = "revealHorizontalRightPadding";
|
|
3152
|
+
EditorOption[EditorOption["roundedSelection"] = 111] = "roundedSelection";
|
|
3153
|
+
EditorOption[EditorOption["rulers"] = 112] = "rulers";
|
|
3154
|
+
EditorOption[EditorOption["scrollbar"] = 113] = "scrollbar";
|
|
3155
|
+
EditorOption[EditorOption["scrollBeyondLastColumn"] = 114] = "scrollBeyondLastColumn";
|
|
3156
|
+
EditorOption[EditorOption["scrollBeyondLastLine"] = 115] = "scrollBeyondLastLine";
|
|
3157
|
+
EditorOption[EditorOption["scrollPredominantAxis"] = 116] = "scrollPredominantAxis";
|
|
3158
|
+
EditorOption[EditorOption["selectionClipboard"] = 117] = "selectionClipboard";
|
|
3159
|
+
EditorOption[EditorOption["selectionHighlight"] = 118] = "selectionHighlight";
|
|
3160
|
+
EditorOption[EditorOption["selectOnLineNumbers"] = 119] = "selectOnLineNumbers";
|
|
3161
|
+
EditorOption[EditorOption["showFoldingControls"] = 120] = "showFoldingControls";
|
|
3162
|
+
EditorOption[EditorOption["showUnused"] = 121] = "showUnused";
|
|
3163
|
+
EditorOption[EditorOption["snippetSuggestions"] = 122] = "snippetSuggestions";
|
|
3164
|
+
EditorOption[EditorOption["smartSelect"] = 123] = "smartSelect";
|
|
3165
|
+
EditorOption[EditorOption["smoothScrolling"] = 124] = "smoothScrolling";
|
|
3166
|
+
EditorOption[EditorOption["stickyScroll"] = 125] = "stickyScroll";
|
|
3167
|
+
EditorOption[EditorOption["stickyTabStops"] = 126] = "stickyTabStops";
|
|
3168
|
+
EditorOption[EditorOption["stopRenderingLineAfter"] = 127] = "stopRenderingLineAfter";
|
|
3169
|
+
EditorOption[EditorOption["suggest"] = 128] = "suggest";
|
|
3170
|
+
EditorOption[EditorOption["suggestFontSize"] = 129] = "suggestFontSize";
|
|
3171
|
+
EditorOption[EditorOption["suggestLineHeight"] = 130] = "suggestLineHeight";
|
|
3172
|
+
EditorOption[EditorOption["suggestOnTriggerCharacters"] = 131] = "suggestOnTriggerCharacters";
|
|
3173
|
+
EditorOption[EditorOption["suggestSelection"] = 132] = "suggestSelection";
|
|
3174
|
+
EditorOption[EditorOption["tabCompletion"] = 133] = "tabCompletion";
|
|
3175
|
+
EditorOption[EditorOption["tabIndex"] = 134] = "tabIndex";
|
|
3176
|
+
EditorOption[EditorOption["unicodeHighlighting"] = 135] = "unicodeHighlighting";
|
|
3177
|
+
EditorOption[EditorOption["unusualLineTerminators"] = 136] = "unusualLineTerminators";
|
|
3178
|
+
EditorOption[EditorOption["useShadowDOM"] = 137] = "useShadowDOM";
|
|
3179
|
+
EditorOption[EditorOption["useTabStops"] = 138] = "useTabStops";
|
|
3180
|
+
EditorOption[EditorOption["wordBreak"] = 139] = "wordBreak";
|
|
3181
|
+
EditorOption[EditorOption["wordSegmenterLocales"] = 140] = "wordSegmenterLocales";
|
|
3182
|
+
EditorOption[EditorOption["wordSeparators"] = 141] = "wordSeparators";
|
|
3183
|
+
EditorOption[EditorOption["wordWrap"] = 142] = "wordWrap";
|
|
3184
|
+
EditorOption[EditorOption["wordWrapBreakAfterCharacters"] = 143] = "wordWrapBreakAfterCharacters";
|
|
3185
|
+
EditorOption[EditorOption["wordWrapBreakBeforeCharacters"] = 144] = "wordWrapBreakBeforeCharacters";
|
|
3186
|
+
EditorOption[EditorOption["wordWrapColumn"] = 145] = "wordWrapColumn";
|
|
3187
|
+
EditorOption[EditorOption["wordWrapOverride1"] = 146] = "wordWrapOverride1";
|
|
3188
|
+
EditorOption[EditorOption["wordWrapOverride2"] = 147] = "wordWrapOverride2";
|
|
3189
|
+
EditorOption[EditorOption["wrappingIndent"] = 148] = "wrappingIndent";
|
|
3190
|
+
EditorOption[EditorOption["wrappingStrategy"] = 149] = "wrappingStrategy";
|
|
3191
|
+
EditorOption[EditorOption["showDeprecated"] = 150] = "showDeprecated";
|
|
3192
|
+
EditorOption[EditorOption["inlayHints"] = 151] = "inlayHints";
|
|
3193
|
+
EditorOption[EditorOption["effectiveCursorStyle"] = 152] = "effectiveCursorStyle";
|
|
3194
|
+
EditorOption[EditorOption["editorClassName"] = 153] = "editorClassName";
|
|
3195
|
+
EditorOption[EditorOption["pixelRatio"] = 154] = "pixelRatio";
|
|
3196
|
+
EditorOption[EditorOption["tabFocusMode"] = 155] = "tabFocusMode";
|
|
3197
|
+
EditorOption[EditorOption["layoutInfo"] = 156] = "layoutInfo";
|
|
3198
|
+
EditorOption[EditorOption["wrappingInfo"] = 157] = "wrappingInfo";
|
|
3199
|
+
EditorOption[EditorOption["defaultColorDecorators"] = 158] = "defaultColorDecorators";
|
|
3200
|
+
EditorOption[EditorOption["colorDecoratorsActivatedOn"] = 159] = "colorDecoratorsActivatedOn";
|
|
3201
|
+
EditorOption[EditorOption["inlineCompletionsAccessibilityVerbose"] = 160] = "inlineCompletionsAccessibilityVerbose";
|
|
3202
|
+
EditorOption[EditorOption["effectiveEditContext"] = 161] = "effectiveEditContext";
|
|
3203
|
+
EditorOption[EditorOption["scrollOnMiddleClick"] = 162] = "scrollOnMiddleClick";
|
|
3204
|
+
EditorOption[EditorOption["effectiveAllowVariableFonts"] = 163] = "effectiveAllowVariableFonts";
|
|
3176
3205
|
})(EditorOption || (EditorOption = {}));
|
|
3177
3206
|
const EditorOptions = {
|
|
3178
3207
|
acceptSuggestionOnCommitCharacter: register(( new EditorBooleanOption(
|
|
@@ -3180,7 +3209,7 @@ const EditorOptions = {
|
|
|
3180
3209
|
'acceptSuggestionOnCommitCharacter',
|
|
3181
3210
|
true,
|
|
3182
3211
|
{ markdownDescription: ( localize(
|
|
3183
|
-
|
|
3212
|
+
490,
|
|
3184
3213
|
"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."
|
|
3185
3214
|
)) }
|
|
3186
3215
|
))),
|
|
@@ -3193,13 +3222,13 @@ const EditorOptions = {
|
|
|
3193
3222
|
markdownEnumDescriptions: [
|
|
3194
3223
|
'',
|
|
3195
3224
|
( localize(
|
|
3196
|
-
|
|
3225
|
+
491,
|
|
3197
3226
|
"Only accept a suggestion with `Enter` when it makes a textual change."
|
|
3198
3227
|
)),
|
|
3199
3228
|
''
|
|
3200
3229
|
],
|
|
3201
3230
|
markdownDescription: ( localize(
|
|
3202
|
-
|
|
3231
|
+
492,
|
|
3203
3232
|
"Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions."
|
|
3204
3233
|
))
|
|
3205
3234
|
}
|
|
@@ -3213,14 +3242,34 @@ const EditorOptions = {
|
|
|
3213
3242
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3214
3243
|
{
|
|
3215
3244
|
description: ( localize(
|
|
3216
|
-
|
|
3245
|
+
493,
|
|
3217
3246
|
"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."
|
|
3218
3247
|
)),
|
|
3219
3248
|
tags: ['accessibility']
|
|
3220
3249
|
}
|
|
3221
3250
|
))),
|
|
3222
|
-
allowVariableLineHeights: register(( new EditorBooleanOption(EditorOption.allowVariableLineHeights, 'allowVariableLineHeights', true
|
|
3223
|
-
|
|
3251
|
+
allowVariableLineHeights: register(( new EditorBooleanOption(EditorOption.allowVariableLineHeights, 'allowVariableLineHeights', true, {
|
|
3252
|
+
description: ( localize(
|
|
3253
|
+
494,
|
|
3254
|
+
"Controls whether to allow using variable line heights in the editor."
|
|
3255
|
+
))
|
|
3256
|
+
}))),
|
|
3257
|
+
allowVariableFonts: register(( new EditorBooleanOption(EditorOption.allowVariableFonts, 'allowVariableFonts', true, {
|
|
3258
|
+
description: ( localize(495, "Controls whether to allow using variable fonts in the editor."))
|
|
3259
|
+
}))),
|
|
3260
|
+
allowVariableFontsInAccessibilityMode: register(( new EditorBooleanOption(
|
|
3261
|
+
EditorOption.allowVariableFontsInAccessibilityMode,
|
|
3262
|
+
'allowVariableFontsInAccessibilityMode',
|
|
3263
|
+
false,
|
|
3264
|
+
{
|
|
3265
|
+
description: ( localize(
|
|
3266
|
+
496,
|
|
3267
|
+
"Controls whether to allow using variable fonts in the editor in the accessibility mode."
|
|
3268
|
+
)),
|
|
3269
|
+
tags: ['accessibility']
|
|
3270
|
+
}
|
|
3271
|
+
))),
|
|
3272
|
+
ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, 'ariaLabel', ( localize(497, "Editor content"))))),
|
|
3224
3273
|
ariaRequired: register(( new EditorBooleanOption(EditorOption.ariaRequired, 'ariaRequired', false, undefined))),
|
|
3225
3274
|
screenReaderAnnounceInlineSuggestion: register(( new EditorBooleanOption(
|
|
3226
3275
|
EditorOption.screenReaderAnnounceInlineSuggestion,
|
|
@@ -3228,7 +3277,7 @@ const EditorOptions = {
|
|
|
3228
3277
|
true,
|
|
3229
3278
|
{
|
|
3230
3279
|
description: ( localize(
|
|
3231
|
-
|
|
3280
|
+
498,
|
|
3232
3281
|
"Control whether inline suggestions are announced by a screen reader."
|
|
3233
3282
|
)),
|
|
3234
3283
|
tags: ['accessibility']
|
|
@@ -3243,17 +3292,17 @@ const EditorOptions = {
|
|
|
3243
3292
|
enumDescriptions: [
|
|
3244
3293
|
'',
|
|
3245
3294
|
( localize(
|
|
3246
|
-
|
|
3295
|
+
499,
|
|
3247
3296
|
"Use language configurations to determine when to autoclose brackets."
|
|
3248
3297
|
)),
|
|
3249
3298
|
( localize(
|
|
3250
|
-
|
|
3299
|
+
500,
|
|
3251
3300
|
"Autoclose brackets only when the cursor is to the left of whitespace."
|
|
3252
3301
|
)),
|
|
3253
3302
|
'',
|
|
3254
3303
|
],
|
|
3255
3304
|
description: ( localize(
|
|
3256
|
-
|
|
3305
|
+
501,
|
|
3257
3306
|
"Controls whether the editor should automatically close brackets after the user adds an opening bracket."
|
|
3258
3307
|
))
|
|
3259
3308
|
}
|
|
@@ -3267,17 +3316,17 @@ const EditorOptions = {
|
|
|
3267
3316
|
enumDescriptions: [
|
|
3268
3317
|
'',
|
|
3269
3318
|
( localize(
|
|
3270
|
-
|
|
3319
|
+
502,
|
|
3271
3320
|
"Use language configurations to determine when to autoclose comments."
|
|
3272
3321
|
)),
|
|
3273
3322
|
( localize(
|
|
3274
|
-
|
|
3323
|
+
503,
|
|
3275
3324
|
"Autoclose comments only when the cursor is to the left of whitespace."
|
|
3276
3325
|
)),
|
|
3277
3326
|
'',
|
|
3278
3327
|
],
|
|
3279
3328
|
description: ( localize(
|
|
3280
|
-
|
|
3329
|
+
504,
|
|
3281
3330
|
"Controls whether the editor should automatically close comments after the user adds an opening comment."
|
|
3282
3331
|
))
|
|
3283
3332
|
}
|
|
@@ -3291,13 +3340,13 @@ const EditorOptions = {
|
|
|
3291
3340
|
enumDescriptions: [
|
|
3292
3341
|
'',
|
|
3293
3342
|
( localize(
|
|
3294
|
-
|
|
3343
|
+
505,
|
|
3295
3344
|
"Remove adjacent closing quotes or brackets only if they were automatically inserted."
|
|
3296
3345
|
)),
|
|
3297
3346
|
'',
|
|
3298
3347
|
],
|
|
3299
3348
|
description: ( localize(
|
|
3300
|
-
|
|
3349
|
+
506,
|
|
3301
3350
|
"Controls whether the editor should remove adjacent closing quotes or brackets when deleting."
|
|
3302
3351
|
))
|
|
3303
3352
|
}
|
|
@@ -3311,13 +3360,13 @@ const EditorOptions = {
|
|
|
3311
3360
|
enumDescriptions: [
|
|
3312
3361
|
'',
|
|
3313
3362
|
( localize(
|
|
3314
|
-
|
|
3363
|
+
507,
|
|
3315
3364
|
"Type over closing quotes or brackets only if they were automatically inserted."
|
|
3316
3365
|
)),
|
|
3317
3366
|
'',
|
|
3318
3367
|
],
|
|
3319
3368
|
description: ( localize(
|
|
3320
|
-
|
|
3369
|
+
508,
|
|
3321
3370
|
"Controls whether the editor should type over closing quotes or brackets."
|
|
3322
3371
|
))
|
|
3323
3372
|
}
|
|
@@ -3330,12 +3379,12 @@ const EditorOptions = {
|
|
|
3330
3379
|
{
|
|
3331
3380
|
enumDescriptions: [
|
|
3332
3381
|
'',
|
|
3333
|
-
( localize(
|
|
3334
|
-
( localize(
|
|
3382
|
+
( localize(509, "Use language configurations to determine when to autoclose quotes.")),
|
|
3383
|
+
( localize(510, "Autoclose quotes only when the cursor is to the left of whitespace.")),
|
|
3335
3384
|
'',
|
|
3336
3385
|
],
|
|
3337
3386
|
description: ( localize(
|
|
3338
|
-
|
|
3387
|
+
511,
|
|
3339
3388
|
"Controls whether the editor should automatically close quotes after the user adds an opening quote."
|
|
3340
3389
|
))
|
|
3341
3390
|
}
|
|
@@ -3349,27 +3398,45 @@ const EditorOptions = {
|
|
|
3349
3398
|
_autoIndentFromString,
|
|
3350
3399
|
{
|
|
3351
3400
|
enumDescriptions: [
|
|
3352
|
-
( localize(
|
|
3353
|
-
( localize(
|
|
3401
|
+
( localize(512, "The editor will not insert indentation automatically.")),
|
|
3402
|
+
( localize(513, "The editor will keep the current line's indentation.")),
|
|
3354
3403
|
( localize(
|
|
3355
|
-
|
|
3404
|
+
514,
|
|
3356
3405
|
"The editor will keep the current line's indentation and honor language defined brackets."
|
|
3357
3406
|
)),
|
|
3358
3407
|
( localize(
|
|
3359
|
-
|
|
3408
|
+
515,
|
|
3360
3409
|
"The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages."
|
|
3361
3410
|
)),
|
|
3362
3411
|
( localize(
|
|
3363
|
-
|
|
3412
|
+
516,
|
|
3364
3413
|
"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."
|
|
3365
3414
|
)),
|
|
3366
3415
|
],
|
|
3367
3416
|
description: ( localize(
|
|
3368
|
-
|
|
3417
|
+
517,
|
|
3369
3418
|
"Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines."
|
|
3370
3419
|
))
|
|
3371
3420
|
}
|
|
3372
3421
|
))),
|
|
3422
|
+
autoIndentOnPaste: register(( new EditorBooleanOption(
|
|
3423
|
+
EditorOption.autoIndentOnPaste,
|
|
3424
|
+
'autoIndentOnPaste',
|
|
3425
|
+
false,
|
|
3426
|
+
{ description: ( localize(
|
|
3427
|
+
518,
|
|
3428
|
+
"Controls whether the editor should automatically auto-indent the pasted content."
|
|
3429
|
+
)) }
|
|
3430
|
+
))),
|
|
3431
|
+
autoIndentOnPasteWithinString: register(( new EditorBooleanOption(
|
|
3432
|
+
EditorOption.autoIndentOnPasteWithinString,
|
|
3433
|
+
'autoIndentOnPasteWithinString',
|
|
3434
|
+
true,
|
|
3435
|
+
{ description: ( localize(
|
|
3436
|
+
519,
|
|
3437
|
+
"Controls whether the editor should automatically auto-indent the pasted content when pasted within a string. This takes effect when autoIndentOnPaste is true."
|
|
3438
|
+
)) }
|
|
3439
|
+
))),
|
|
3373
3440
|
automaticLayout: register(( new EditorBooleanOption(EditorOption.automaticLayout, 'automaticLayout', false))),
|
|
3374
3441
|
autoSurround: register(( new EditorStringEnumOption(
|
|
3375
3442
|
EditorOption.autoSurround,
|
|
@@ -3379,15 +3446,15 @@ const EditorOptions = {
|
|
|
3379
3446
|
{
|
|
3380
3447
|
enumDescriptions: [
|
|
3381
3448
|
( localize(
|
|
3382
|
-
|
|
3449
|
+
520,
|
|
3383
3450
|
"Use language configurations to determine when to automatically surround selections."
|
|
3384
3451
|
)),
|
|
3385
|
-
( localize(
|
|
3386
|
-
( localize(
|
|
3452
|
+
( localize(521, "Surround with quotes but not brackets.")),
|
|
3453
|
+
( localize(522, "Surround with brackets but not quotes.")),
|
|
3387
3454
|
''
|
|
3388
3455
|
],
|
|
3389
3456
|
description: ( localize(
|
|
3390
|
-
|
|
3457
|
+
523,
|
|
3391
3458
|
"Controls whether the editor should automatically surround selections when typing quotes or brackets."
|
|
3392
3459
|
))
|
|
3393
3460
|
}
|
|
@@ -3399,16 +3466,16 @@ const EditorOptions = {
|
|
|
3399
3466
|
'stickyTabStops',
|
|
3400
3467
|
false,
|
|
3401
3468
|
{ description: ( localize(
|
|
3402
|
-
|
|
3469
|
+
524,
|
|
3403
3470
|
"Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."
|
|
3404
3471
|
)) }
|
|
3405
3472
|
))),
|
|
3406
|
-
codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, 'codeLens', true, { description: ( localize(
|
|
3473
|
+
codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, 'codeLens', true, { description: ( localize(525, "Controls whether the editor shows CodeLens.")) }))),
|
|
3407
3474
|
codeLensFontFamily: register(( new EditorStringOption(
|
|
3408
3475
|
EditorOption.codeLensFontFamily,
|
|
3409
3476
|
'codeLensFontFamily',
|
|
3410
3477
|
'',
|
|
3411
|
-
{ description: ( localize(
|
|
3478
|
+
{ description: ( localize(526, "Controls the font family for CodeLens.")) }
|
|
3412
3479
|
))),
|
|
3413
3480
|
codeLensFontSize: register(( new EditorIntOption(EditorOption.codeLensFontSize, 'codeLensFontSize', 0, 0, 100, {
|
|
3414
3481
|
type: 'number',
|
|
@@ -3416,7 +3483,7 @@ const EditorOptions = {
|
|
|
3416
3483
|
minimum: 0,
|
|
3417
3484
|
maximum: 100,
|
|
3418
3485
|
markdownDescription: ( localize(
|
|
3419
|
-
|
|
3486
|
+
527,
|
|
3420
3487
|
"Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."
|
|
3421
3488
|
))
|
|
3422
3489
|
}))),
|
|
@@ -3425,7 +3492,7 @@ const EditorOptions = {
|
|
|
3425
3492
|
'colorDecorators',
|
|
3426
3493
|
true,
|
|
3427
3494
|
{ description: ( localize(
|
|
3428
|
-
|
|
3495
|
+
528,
|
|
3429
3496
|
"Controls whether the editor should render the inline color decorators and color picker."
|
|
3430
3497
|
)) }
|
|
3431
3498
|
))),
|
|
@@ -3437,14 +3504,14 @@ const EditorOptions = {
|
|
|
3437
3504
|
{
|
|
3438
3505
|
enumDescriptions: [
|
|
3439
3506
|
( localize(
|
|
3440
|
-
|
|
3507
|
+
529,
|
|
3441
3508
|
"Make the color picker appear both on click and hover of the color decorator"
|
|
3442
3509
|
)),
|
|
3443
|
-
( localize(
|
|
3444
|
-
( localize(
|
|
3510
|
+
( localize(530, "Make the color picker appear on hover of the color decorator")),
|
|
3511
|
+
( localize(531, "Make the color picker appear on click of the color decorator"))
|
|
3445
3512
|
],
|
|
3446
3513
|
description: ( localize(
|
|
3447
|
-
|
|
3514
|
+
532,
|
|
3448
3515
|
"Controls the condition to make a color picker appear from a color decorator."
|
|
3449
3516
|
))
|
|
3450
3517
|
}
|
|
@@ -3457,7 +3524,7 @@ const EditorOptions = {
|
|
|
3457
3524
|
1000000,
|
|
3458
3525
|
{
|
|
3459
3526
|
markdownDescription: ( localize(
|
|
3460
|
-
|
|
3527
|
+
533,
|
|
3461
3528
|
"Controls the max number of color decorators that can be rendered in an editor at once."
|
|
3462
3529
|
))
|
|
3463
3530
|
}
|
|
@@ -3467,7 +3534,7 @@ const EditorOptions = {
|
|
|
3467
3534
|
'columnSelection',
|
|
3468
3535
|
false,
|
|
3469
3536
|
{ description: ( localize(
|
|
3470
|
-
|
|
3537
|
+
534,
|
|
3471
3538
|
"Enable that the selection with the mouse and keys is doing column selection."
|
|
3472
3539
|
)) }
|
|
3473
3540
|
))),
|
|
@@ -3478,7 +3545,7 @@ const EditorOptions = {
|
|
|
3478
3545
|
'copyWithSyntaxHighlighting',
|
|
3479
3546
|
true,
|
|
3480
3547
|
{ description: ( localize(
|
|
3481
|
-
|
|
3548
|
+
535,
|
|
3482
3549
|
"Controls whether syntax highlighting should be copied into the clipboard."
|
|
3483
3550
|
)) }
|
|
3484
3551
|
))),
|
|
@@ -3489,7 +3556,7 @@ const EditorOptions = {
|
|
|
3489
3556
|
'blink',
|
|
3490
3557
|
['blink', 'smooth', 'phase', 'expand', 'solid'],
|
|
3491
3558
|
cursorBlinkingStyleFromString,
|
|
3492
|
-
{ description: ( localize(
|
|
3559
|
+
{ description: ( localize(536, "Control the cursor animation style.")) }
|
|
3493
3560
|
))),
|
|
3494
3561
|
cursorSmoothCaretAnimation: register(( new EditorStringEnumOption(
|
|
3495
3562
|
EditorOption.cursorSmoothCaretAnimation,
|
|
@@ -3498,14 +3565,14 @@ const EditorOptions = {
|
|
|
3498
3565
|
['off', 'explicit', 'on'],
|
|
3499
3566
|
{
|
|
3500
3567
|
enumDescriptions: [
|
|
3501
|
-
( localize(
|
|
3568
|
+
( localize(537, "Smooth caret animation is disabled.")),
|
|
3502
3569
|
( localize(
|
|
3503
|
-
|
|
3570
|
+
538,
|
|
3504
3571
|
"Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture."
|
|
3505
3572
|
)),
|
|
3506
|
-
( localize(
|
|
3573
|
+
( localize(539, "Smooth caret animation is always enabled."))
|
|
3507
3574
|
],
|
|
3508
|
-
description: ( localize(
|
|
3575
|
+
description: ( localize(540, "Controls whether the smooth caret animation should be enabled."))
|
|
3509
3576
|
}
|
|
3510
3577
|
))),
|
|
3511
3578
|
cursorStyle: register(( new EditorEnumOption(
|
|
@@ -3515,7 +3582,7 @@ const EditorOptions = {
|
|
|
3515
3582
|
'line',
|
|
3516
3583
|
['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'],
|
|
3517
3584
|
cursorStyleFromString,
|
|
3518
|
-
{ description: ( localize(
|
|
3585
|
+
{ description: ( localize(541, "Controls the cursor style in insert input mode.")) }
|
|
3519
3586
|
))),
|
|
3520
3587
|
overtypeCursorStyle: register(( new EditorEnumOption(
|
|
3521
3588
|
EditorOption.overtypeCursorStyle,
|
|
@@ -3524,7 +3591,7 @@ const EditorOptions = {
|
|
|
3524
3591
|
'block',
|
|
3525
3592
|
['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'],
|
|
3526
3593
|
cursorStyleFromString,
|
|
3527
|
-
{ description: ( localize(
|
|
3594
|
+
{ description: ( localize(542, "Controls the cursor style in overtype input mode.")) }
|
|
3528
3595
|
))),
|
|
3529
3596
|
cursorSurroundingLines: register(( new EditorIntOption(
|
|
3530
3597
|
EditorOption.cursorSurroundingLines,
|
|
@@ -3533,7 +3600,7 @@ const EditorOptions = {
|
|
|
3533
3600
|
0,
|
|
3534
3601
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3535
3602
|
{ description: ( localize(
|
|
3536
|
-
|
|
3603
|
+
543,
|
|
3537
3604
|
"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."
|
|
3538
3605
|
)) }
|
|
3539
3606
|
))),
|
|
@@ -3545,12 +3612,12 @@ const EditorOptions = {
|
|
|
3545
3612
|
{
|
|
3546
3613
|
enumDescriptions: [
|
|
3547
3614
|
( localize(
|
|
3548
|
-
|
|
3615
|
+
544,
|
|
3549
3616
|
"`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."
|
|
3550
3617
|
)),
|
|
3551
|
-
( localize(
|
|
3618
|
+
( localize(545, "`cursorSurroundingLines` is enforced always."))
|
|
3552
3619
|
],
|
|
3553
|
-
markdownDescription: ( localize(
|
|
3620
|
+
markdownDescription: ( localize(546, "Controls when `#editor.cursorSurroundingLines#` should be enforced."))
|
|
3554
3621
|
}
|
|
3555
3622
|
))),
|
|
3556
3623
|
cursorWidth: register(( new EditorIntOption(
|
|
@@ -3560,7 +3627,7 @@ const EditorOptions = {
|
|
|
3560
3627
|
0,
|
|
3561
3628
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3562
3629
|
{ markdownDescription: ( localize(
|
|
3563
|
-
|
|
3630
|
+
547,
|
|
3564
3631
|
"Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`."
|
|
3565
3632
|
)) }
|
|
3566
3633
|
))),
|
|
@@ -3576,24 +3643,19 @@ const EditorOptions = {
|
|
|
3576
3643
|
'dragAndDrop',
|
|
3577
3644
|
true,
|
|
3578
3645
|
{ description: ( localize(
|
|
3579
|
-
|
|
3646
|
+
548,
|
|
3580
3647
|
"Controls whether the editor should allow moving selections via drag and drop."
|
|
3581
3648
|
)) }
|
|
3582
3649
|
))),
|
|
3583
3650
|
emptySelectionClipboard: register(( new EditorEmptySelectionClipboard())),
|
|
3584
3651
|
dropIntoEditor: register(( new EditorDropIntoEditor())),
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
"Sets whether the new experimental edit context should be used instead of the text area."
|
|
3593
|
-
)),
|
|
3594
|
-
included: isChrome || isEdge || isNative
|
|
3595
|
-
}
|
|
3596
|
-
))),
|
|
3652
|
+
editContext: register(( new EditorBooleanOption(EditorOption.editContext, 'editContext', true, {
|
|
3653
|
+
description: ( localize(
|
|
3654
|
+
549,
|
|
3655
|
+
"Sets whether the EditContext API should be used instead of the text area to power input in the editor."
|
|
3656
|
+
)),
|
|
3657
|
+
included: isChrome || isEdge || isNative
|
|
3658
|
+
}))),
|
|
3597
3659
|
stickyScroll: register(( new EditorStickyScroll())),
|
|
3598
3660
|
experimentalGpuAcceleration: register(( new EditorStringEnumOption(
|
|
3599
3661
|
EditorOption.experimentalGpuAcceleration,
|
|
@@ -3603,11 +3665,11 @@ const EditorOptions = {
|
|
|
3603
3665
|
{
|
|
3604
3666
|
tags: ['experimental'],
|
|
3605
3667
|
enumDescriptions: [
|
|
3606
|
-
( localize(
|
|
3607
|
-
( localize(
|
|
3668
|
+
( localize(550, "Use regular DOM-based rendering.")),
|
|
3669
|
+
( localize(551, "Use GPU acceleration.")),
|
|
3608
3670
|
],
|
|
3609
3671
|
description: ( localize(
|
|
3610
|
-
|
|
3672
|
+
552,
|
|
3611
3673
|
"Controls whether to use the experimental GPU acceleration to render the editor."
|
|
3612
3674
|
))
|
|
3613
3675
|
}
|
|
@@ -3619,12 +3681,12 @@ const EditorOptions = {
|
|
|
3619
3681
|
['svg', 'font', 'off'],
|
|
3620
3682
|
{
|
|
3621
3683
|
enumDescriptions: [
|
|
3622
|
-
( localize(
|
|
3623
|
-
( localize(
|
|
3624
|
-
( localize(
|
|
3684
|
+
( localize(553, "Use a new rendering method with svgs.")),
|
|
3685
|
+
( localize(554, "Use a new rendering method with font characters.")),
|
|
3686
|
+
( localize(555, "Use the stable rendering method.")),
|
|
3625
3687
|
],
|
|
3626
3688
|
description: ( localize(
|
|
3627
|
-
|
|
3689
|
+
556,
|
|
3628
3690
|
"Controls whether whitespace is rendered with a new, experimental method."
|
|
3629
3691
|
))
|
|
3630
3692
|
}
|
|
@@ -3635,11 +3697,11 @@ const EditorOptions = {
|
|
|
3635
3697
|
'fastScrollSensitivity',
|
|
3636
3698
|
5,
|
|
3637
3699
|
x => (x <= 0 ? 5 : x),
|
|
3638
|
-
{ markdownDescription: ( localize(
|
|
3700
|
+
{ markdownDescription: ( localize(557, "Scrolling speed multiplier when pressing `Alt`.")) }
|
|
3639
3701
|
))),
|
|
3640
3702
|
find: register(( new EditorFind())),
|
|
3641
3703
|
fixedOverflowWidgets: register(( new EditorBooleanOption(EditorOption.fixedOverflowWidgets, 'fixedOverflowWidgets', false))),
|
|
3642
|
-
folding: register(( new EditorBooleanOption(EditorOption.folding, 'folding', true, { description: ( localize(
|
|
3704
|
+
folding: register(( new EditorBooleanOption(EditorOption.folding, 'folding', true, { description: ( localize(558, "Controls whether the editor has code folding enabled.")) }))),
|
|
3643
3705
|
foldingStrategy: register(( new EditorStringEnumOption(
|
|
3644
3706
|
EditorOption.foldingStrategy,
|
|
3645
3707
|
'foldingStrategy',
|
|
@@ -3648,25 +3710,25 @@ const EditorOptions = {
|
|
|
3648
3710
|
{
|
|
3649
3711
|
enumDescriptions: [
|
|
3650
3712
|
( localize(
|
|
3651
|
-
|
|
3713
|
+
559,
|
|
3652
3714
|
"Use a language-specific folding strategy if available, else the indentation-based one."
|
|
3653
3715
|
)),
|
|
3654
|
-
( localize(
|
|
3716
|
+
( localize(560, "Use the indentation-based folding strategy.")),
|
|
3655
3717
|
],
|
|
3656
|
-
description: ( localize(
|
|
3718
|
+
description: ( localize(561, "Controls the strategy for computing folding ranges."))
|
|
3657
3719
|
}
|
|
3658
3720
|
))),
|
|
3659
3721
|
foldingHighlight: register(( new EditorBooleanOption(
|
|
3660
3722
|
EditorOption.foldingHighlight,
|
|
3661
3723
|
'foldingHighlight',
|
|
3662
3724
|
true,
|
|
3663
|
-
{ description: ( localize(
|
|
3725
|
+
{ description: ( localize(562, "Controls whether the editor should highlight folded ranges.")) }
|
|
3664
3726
|
))),
|
|
3665
3727
|
foldingImportsByDefault: register(( new EditorBooleanOption(
|
|
3666
3728
|
EditorOption.foldingImportsByDefault,
|
|
3667
3729
|
'foldingImportsByDefault',
|
|
3668
3730
|
false,
|
|
3669
|
-
{ description: ( localize(
|
|
3731
|
+
{ description: ( localize(563, "Controls whether the editor automatically collapses import ranges.")) }
|
|
3670
3732
|
))),
|
|
3671
3733
|
foldingMaximumRegions: register(( new EditorIntOption(
|
|
3672
3734
|
EditorOption.foldingMaximumRegions,
|
|
@@ -3675,7 +3737,7 @@ const EditorOptions = {
|
|
|
3675
3737
|
10,
|
|
3676
3738
|
65000,
|
|
3677
3739
|
{ description: ( localize(
|
|
3678
|
-
|
|
3740
|
+
564,
|
|
3679
3741
|
"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."
|
|
3680
3742
|
)) }
|
|
3681
3743
|
))),
|
|
@@ -3684,7 +3746,7 @@ const EditorOptions = {
|
|
|
3684
3746
|
'unfoldOnClickAfterEndOfLine',
|
|
3685
3747
|
false,
|
|
3686
3748
|
{ description: ( localize(
|
|
3687
|
-
|
|
3749
|
+
565,
|
|
3688
3750
|
"Controls whether clicking on the empty content after a folded line will unfold the line."
|
|
3689
3751
|
)) }
|
|
3690
3752
|
))),
|
|
@@ -3692,7 +3754,7 @@ const EditorOptions = {
|
|
|
3692
3754
|
EditorOption.fontFamily,
|
|
3693
3755
|
'fontFamily',
|
|
3694
3756
|
EDITOR_FONT_DEFAULTS.fontFamily,
|
|
3695
|
-
{ description: ( localize(
|
|
3757
|
+
{ description: ( localize(566, "Controls the font family.")) }
|
|
3696
3758
|
))),
|
|
3697
3759
|
fontInfo: register(( new EditorFontInfo())),
|
|
3698
3760
|
fontLigatures2: register(( new EditorFontLigatures())),
|
|
@@ -3704,7 +3766,7 @@ const EditorOptions = {
|
|
|
3704
3766
|
'formatOnPaste',
|
|
3705
3767
|
false,
|
|
3706
3768
|
{ description: ( localize(
|
|
3707
|
-
|
|
3769
|
+
567,
|
|
3708
3770
|
"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."
|
|
3709
3771
|
)) }
|
|
3710
3772
|
))),
|
|
@@ -3713,7 +3775,7 @@ const EditorOptions = {
|
|
|
3713
3775
|
'formatOnType',
|
|
3714
3776
|
false,
|
|
3715
3777
|
{ description: ( localize(
|
|
3716
|
-
|
|
3778
|
+
568,
|
|
3717
3779
|
"Controls whether the editor should automatically format the line after typing."
|
|
3718
3780
|
)) }
|
|
3719
3781
|
))),
|
|
@@ -3722,7 +3784,7 @@ const EditorOptions = {
|
|
|
3722
3784
|
'glyphMargin',
|
|
3723
3785
|
true,
|
|
3724
3786
|
{ description: ( localize(
|
|
3725
|
-
|
|
3787
|
+
569,
|
|
3726
3788
|
"Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."
|
|
3727
3789
|
)) }
|
|
3728
3790
|
))),
|
|
@@ -3731,7 +3793,7 @@ const EditorOptions = {
|
|
|
3731
3793
|
EditorOption.hideCursorInOverviewRuler,
|
|
3732
3794
|
'hideCursorInOverviewRuler',
|
|
3733
3795
|
false,
|
|
3734
|
-
{ description: ( localize(
|
|
3796
|
+
{ description: ( localize(570, "Controls whether the cursor should be hidden in the overview ruler.")) }
|
|
3735
3797
|
))),
|
|
3736
3798
|
hover: register(( new EditorHover())),
|
|
3737
3799
|
inDiffEditor: register(( new EditorBooleanOption(EditorOption.inDiffEditor, 'inDiffEditor', false))),
|
|
@@ -3740,7 +3802,7 @@ const EditorOptions = {
|
|
|
3740
3802
|
'letterSpacing',
|
|
3741
3803
|
EDITOR_FONT_DEFAULTS.letterSpacing,
|
|
3742
3804
|
x => EditorFloatOption.clamp(x, -5, 20),
|
|
3743
|
-
{ description: ( localize(
|
|
3805
|
+
{ description: ( localize(571, "Controls the letter spacing in pixels.")) }
|
|
3744
3806
|
))),
|
|
3745
3807
|
lightbulb: register(( new EditorLightbulb())),
|
|
3746
3808
|
lineDecorationsWidth: register(( new EditorLineDecorationsWidth())),
|
|
@@ -3752,12 +3814,12 @@ const EditorOptions = {
|
|
|
3752
3814
|
'linkedEditing',
|
|
3753
3815
|
false,
|
|
3754
3816
|
{ description: ( localize(
|
|
3755
|
-
|
|
3817
|
+
572,
|
|
3756
3818
|
"Controls whether the editor has linked editing enabled. Depending on the language, related symbols such as HTML tags, are updated while editing."
|
|
3757
3819
|
)) }
|
|
3758
3820
|
))),
|
|
3759
3821
|
links: register(( new EditorBooleanOption(EditorOption.links, 'links', true, { description: ( localize(
|
|
3760
|
-
|
|
3822
|
+
573,
|
|
3761
3823
|
"Controls whether the editor should detect links and make them clickable."
|
|
3762
3824
|
)) }))),
|
|
3763
3825
|
matchBrackets: register(( new EditorStringEnumOption(
|
|
@@ -3765,7 +3827,7 @@ const EditorOptions = {
|
|
|
3765
3827
|
'matchBrackets',
|
|
3766
3828
|
'always',
|
|
3767
3829
|
['always', 'near', 'never'],
|
|
3768
|
-
{ description: ( localize(
|
|
3830
|
+
{ description: ( localize(574, "Highlight matching brackets.")) }
|
|
3769
3831
|
))),
|
|
3770
3832
|
minimap: register(( new EditorMinimap())),
|
|
3771
3833
|
mouseStyle: register(( new EditorStringEnumOption(EditorOption.mouseStyle, 'mouseStyle', 'text', ['text', 'default', 'copy']))),
|
|
@@ -3775,18 +3837,18 @@ const EditorOptions = {
|
|
|
3775
3837
|
1,
|
|
3776
3838
|
x => (x === 0 ? 1 : x),
|
|
3777
3839
|
{ markdownDescription: ( localize(
|
|
3778
|
-
|
|
3840
|
+
575,
|
|
3779
3841
|
"A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."
|
|
3780
3842
|
)) }
|
|
3781
3843
|
))),
|
|
3782
3844
|
mouseWheelZoom: register(( new EditorBooleanOption(EditorOption.mouseWheelZoom, 'mouseWheelZoom', false, {
|
|
3783
3845
|
markdownDescription: isMacintosh
|
|
3784
3846
|
? ( localize(
|
|
3785
|
-
|
|
3847
|
+
576,
|
|
3786
3848
|
"Zoom the font of the editor when using mouse wheel and holding `Cmd`."
|
|
3787
3849
|
))
|
|
3788
3850
|
: ( localize(
|
|
3789
|
-
|
|
3851
|
+
577,
|
|
3790
3852
|
"Zoom the font of the editor when using mouse wheel and holding `Ctrl`."
|
|
3791
3853
|
))
|
|
3792
3854
|
}))),
|
|
@@ -3794,7 +3856,7 @@ const EditorOptions = {
|
|
|
3794
3856
|
EditorOption.multiCursorMergeOverlapping,
|
|
3795
3857
|
'multiCursorMergeOverlapping',
|
|
3796
3858
|
true,
|
|
3797
|
-
{ description: ( localize(
|
|
3859
|
+
{ description: ( localize(578, "Merge multiple cursors when they are overlapping.")) }
|
|
3798
3860
|
))),
|
|
3799
3861
|
multiCursorModifier: register(( new EditorEnumOption(
|
|
3800
3862
|
EditorOption.multiCursorModifier,
|
|
@@ -3805,11 +3867,11 @@ const EditorOptions = {
|
|
|
3805
3867
|
_multiCursorModifierFromString,
|
|
3806
3868
|
{
|
|
3807
3869
|
markdownEnumDescriptions: [
|
|
3808
|
-
( localize(
|
|
3809
|
-
( localize(
|
|
3870
|
+
( localize(579, "Maps to `Control` on Windows and Linux and to `Command` on macOS.")),
|
|
3871
|
+
( localize(580, "Maps to `Alt` on Windows and Linux and to `Option` on macOS."))
|
|
3810
3872
|
],
|
|
3811
3873
|
markdownDescription: ( localize(
|
|
3812
|
-
|
|
3874
|
+
581,
|
|
3813
3875
|
"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)."
|
|
3814
3876
|
))
|
|
3815
3877
|
}
|
|
@@ -3821,18 +3883,18 @@ const EditorOptions = {
|
|
|
3821
3883
|
['spread', 'full'],
|
|
3822
3884
|
{
|
|
3823
3885
|
markdownEnumDescriptions: [
|
|
3824
|
-
( localize(
|
|
3825
|
-
( localize(
|
|
3886
|
+
( localize(582, "Each cursor pastes a single line of the text.")),
|
|
3887
|
+
( localize(583, "Each cursor pastes the full text."))
|
|
3826
3888
|
],
|
|
3827
3889
|
markdownDescription: ( localize(
|
|
3828
|
-
|
|
3890
|
+
584,
|
|
3829
3891
|
"Controls pasting when the line count of the pasted text matches the cursor count."
|
|
3830
3892
|
))
|
|
3831
3893
|
}
|
|
3832
3894
|
))),
|
|
3833
3895
|
multiCursorLimit: register(( new EditorIntOption(EditorOption.multiCursorLimit, 'multiCursorLimit', 10000, 1, 100000, {
|
|
3834
3896
|
markdownDescription: ( localize(
|
|
3835
|
-
|
|
3897
|
+
585,
|
|
3836
3898
|
"Controls the max number of cursors that can be in an active editor at once."
|
|
3837
3899
|
))
|
|
3838
3900
|
}))),
|
|
@@ -3843,12 +3905,12 @@ const EditorOptions = {
|
|
|
3843
3905
|
['off', 'singleFile', 'multiFile'],
|
|
3844
3906
|
{
|
|
3845
3907
|
markdownEnumDescriptions: [
|
|
3846
|
-
( localize(
|
|
3847
|
-
( localize(
|
|
3848
|
-
( localize(
|
|
3908
|
+
( localize(586, "Does not highlight occurrences.")),
|
|
3909
|
+
( localize(587, "Highlights occurrences only in the current file.")),
|
|
3910
|
+
( localize(588, "Experimental: Highlights occurrences across all valid open files."))
|
|
3849
3911
|
],
|
|
3850
3912
|
markdownDescription: ( localize(
|
|
3851
|
-
|
|
3913
|
+
589,
|
|
3852
3914
|
"Controls whether occurrences should be highlighted across open files."
|
|
3853
3915
|
))
|
|
3854
3916
|
}
|
|
@@ -3861,7 +3923,7 @@ const EditorOptions = {
|
|
|
3861
3923
|
2000,
|
|
3862
3924
|
{
|
|
3863
3925
|
description: ( localize(
|
|
3864
|
-
|
|
3926
|
+
590,
|
|
3865
3927
|
"Controls the delay in milliseconds after which occurrences are highlighted."
|
|
3866
3928
|
)),
|
|
3867
3929
|
tags: ['preview']
|
|
@@ -3871,14 +3933,14 @@ const EditorOptions = {
|
|
|
3871
3933
|
EditorOption.overtypeOnPaste,
|
|
3872
3934
|
'overtypeOnPaste',
|
|
3873
3935
|
true,
|
|
3874
|
-
{ description: ( localize(
|
|
3936
|
+
{ description: ( localize(591, "Controls whether pasting should overtype.")) }
|
|
3875
3937
|
))),
|
|
3876
3938
|
overviewRulerBorder: register(( new EditorBooleanOption(
|
|
3877
3939
|
EditorOption.overviewRulerBorder,
|
|
3878
3940
|
'overviewRulerBorder',
|
|
3879
3941
|
true,
|
|
3880
3942
|
{ description: ( localize(
|
|
3881
|
-
|
|
3943
|
+
592,
|
|
3882
3944
|
"Controls whether a border should be drawn around the overview ruler."
|
|
3883
3945
|
)) }
|
|
3884
3946
|
))),
|
|
@@ -3893,11 +3955,11 @@ const EditorOptions = {
|
|
|
3893
3955
|
['tree', 'editor'],
|
|
3894
3956
|
{
|
|
3895
3957
|
enumDescriptions: [
|
|
3896
|
-
( localize(
|
|
3897
|
-
( localize(
|
|
3958
|
+
( localize(593, "Focus the tree when opening peek")),
|
|
3959
|
+
( localize(594, "Focus the editor when opening peek"))
|
|
3898
3960
|
],
|
|
3899
3961
|
description: ( localize(
|
|
3900
|
-
|
|
3962
|
+
595,
|
|
3901
3963
|
"Controls whether to focus the inline editor or the tree in the peek widget."
|
|
3902
3964
|
))
|
|
3903
3965
|
}
|
|
@@ -3908,7 +3970,7 @@ const EditorOptions = {
|
|
|
3908
3970
|
'definitionLinkOpensInPeek',
|
|
3909
3971
|
false,
|
|
3910
3972
|
{ description: ( localize(
|
|
3911
|
-
|
|
3973
|
+
596,
|
|
3912
3974
|
"Controls whether the Go to Definition mouse gesture always opens the peek widget."
|
|
3913
3975
|
)) }
|
|
3914
3976
|
))),
|
|
@@ -3919,10 +3981,13 @@ const EditorOptions = {
|
|
|
3919
3981
|
10,
|
|
3920
3982
|
0,
|
|
3921
3983
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3922
|
-
{
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3984
|
+
{
|
|
3985
|
+
description: ( localize(
|
|
3986
|
+
597,
|
|
3987
|
+
"Controls the delay in milliseconds after which quick suggestions will show up."
|
|
3988
|
+
)),
|
|
3989
|
+
tags: ['onExP']
|
|
3990
|
+
}
|
|
3926
3991
|
))),
|
|
3927
3992
|
readOnly: register(( new EditorBooleanOption(EditorOption.readOnly, 'readOnly', false))),
|
|
3928
3993
|
readOnlyMessage: register(( new ReadonlyMessage())),
|
|
@@ -3930,20 +3995,20 @@ const EditorOptions = {
|
|
|
3930
3995
|
EditorOption.renameOnType,
|
|
3931
3996
|
'renameOnType',
|
|
3932
3997
|
false,
|
|
3933
|
-
{ description: ( localize(
|
|
3998
|
+
{ description: ( localize(598, "Controls whether the editor auto renames on type.")), markdownDeprecationMessage: ( localize(599, "Deprecated, use `editor.linkedEditing` instead.")) }
|
|
3934
3999
|
))),
|
|
3935
4000
|
renderControlCharacters: register(( new EditorBooleanOption(
|
|
3936
4001
|
EditorOption.renderControlCharacters,
|
|
3937
4002
|
'renderControlCharacters',
|
|
3938
4003
|
true,
|
|
3939
|
-
{ description: ( localize(
|
|
4004
|
+
{ description: ( localize(600, "Controls whether the editor should render control characters.")), restricted: true }
|
|
3940
4005
|
))),
|
|
3941
4006
|
renderFinalNewline: register(( new EditorStringEnumOption(
|
|
3942
4007
|
EditorOption.renderFinalNewline,
|
|
3943
4008
|
'renderFinalNewline',
|
|
3944
4009
|
(isLinux ? 'dimmed' : 'on'),
|
|
3945
4010
|
['off', 'on', 'dimmed'],
|
|
3946
|
-
{ description: ( localize(
|
|
4011
|
+
{ description: ( localize(601, "Render last line number when the file ends with a newline.")) }
|
|
3947
4012
|
))),
|
|
3948
4013
|
renderLineHighlight: register(( new EditorStringEnumOption(
|
|
3949
4014
|
EditorOption.renderLineHighlight,
|
|
@@ -3955,9 +4020,9 @@ const EditorOptions = {
|
|
|
3955
4020
|
'',
|
|
3956
4021
|
'',
|
|
3957
4022
|
'',
|
|
3958
|
-
( localize(
|
|
4023
|
+
( localize(602, "Highlights both the gutter and the current line.")),
|
|
3959
4024
|
],
|
|
3960
|
-
description: ( localize(
|
|
4025
|
+
description: ( localize(603, "Controls how the editor should render the current line highlight."))
|
|
3961
4026
|
}
|
|
3962
4027
|
))),
|
|
3963
4028
|
renderLineHighlightOnlyWhenFocus: register(( new EditorBooleanOption(
|
|
@@ -3965,7 +4030,7 @@ const EditorOptions = {
|
|
|
3965
4030
|
'renderLineHighlightOnlyWhenFocus',
|
|
3966
4031
|
false,
|
|
3967
4032
|
{ description: ( localize(
|
|
3968
|
-
|
|
4033
|
+
604,
|
|
3969
4034
|
"Controls if the editor should render the current line highlight only when the editor is focused."
|
|
3970
4035
|
)) }
|
|
3971
4036
|
))),
|
|
@@ -3984,14 +4049,14 @@ const EditorOptions = {
|
|
|
3984
4049
|
enumDescriptions: [
|
|
3985
4050
|
'',
|
|
3986
4051
|
( localize(
|
|
3987
|
-
|
|
4052
|
+
605,
|
|
3988
4053
|
"Render whitespace characters except for single spaces between words."
|
|
3989
4054
|
)),
|
|
3990
|
-
( localize(
|
|
3991
|
-
( localize(
|
|
4055
|
+
( localize(606, "Render whitespace characters only on selected text.")),
|
|
4056
|
+
( localize(607, "Render only trailing whitespace characters.")),
|
|
3992
4057
|
''
|
|
3993
4058
|
],
|
|
3994
|
-
description: ( localize(
|
|
4059
|
+
description: ( localize(608, "Controls how the editor should render whitespace characters."))
|
|
3995
4060
|
}
|
|
3996
4061
|
))),
|
|
3997
4062
|
revealHorizontalRightPadding: register(( new EditorIntOption(
|
|
@@ -4005,7 +4070,7 @@ const EditorOptions = {
|
|
|
4005
4070
|
EditorOption.roundedSelection,
|
|
4006
4071
|
'roundedSelection',
|
|
4007
4072
|
true,
|
|
4008
|
-
{ description: ( localize(
|
|
4073
|
+
{ description: ( localize(609, "Controls whether selections should have rounded corners.")) }
|
|
4009
4074
|
))),
|
|
4010
4075
|
rulers: register(( new EditorRulers())),
|
|
4011
4076
|
scrollbar: register(( new EditorScrollbar())),
|
|
@@ -4016,7 +4081,7 @@ const EditorOptions = {
|
|
|
4016
4081
|
0,
|
|
4017
4082
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4018
4083
|
{ description: ( localize(
|
|
4019
|
-
|
|
4084
|
+
610,
|
|
4020
4085
|
"Controls the number of extra characters beyond which the editor will scroll horizontally."
|
|
4021
4086
|
)) }
|
|
4022
4087
|
))),
|
|
@@ -4024,19 +4089,28 @@ const EditorOptions = {
|
|
|
4024
4089
|
EditorOption.scrollBeyondLastLine,
|
|
4025
4090
|
'scrollBeyondLastLine',
|
|
4026
4091
|
true,
|
|
4027
|
-
{ description: ( localize(
|
|
4092
|
+
{ description: ( localize(611, "Controls whether the editor will scroll beyond the last line.")) }
|
|
4093
|
+
))),
|
|
4094
|
+
scrollOnMiddleClick: register(( new EditorBooleanOption(
|
|
4095
|
+
EditorOption.scrollOnMiddleClick,
|
|
4096
|
+
'scrollOnMiddleClick',
|
|
4097
|
+
false,
|
|
4098
|
+
{ description: ( localize(
|
|
4099
|
+
612,
|
|
4100
|
+
"Controls whether the editor will scroll when the middle button is pressed."
|
|
4101
|
+
)) }
|
|
4028
4102
|
))),
|
|
4029
4103
|
scrollPredominantAxis: register(( new EditorBooleanOption(
|
|
4030
4104
|
EditorOption.scrollPredominantAxis,
|
|
4031
4105
|
'scrollPredominantAxis',
|
|
4032
4106
|
true,
|
|
4033
4107
|
{ description: ( localize(
|
|
4034
|
-
|
|
4108
|
+
613,
|
|
4035
4109
|
"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."
|
|
4036
4110
|
)) }
|
|
4037
4111
|
))),
|
|
4038
4112
|
selectionClipboard: register(( new EditorBooleanOption(EditorOption.selectionClipboard, 'selectionClipboard', true, {
|
|
4039
|
-
description: ( localize(
|
|
4113
|
+
description: ( localize(614, "Controls whether the Linux primary clipboard should be supported.")),
|
|
4040
4114
|
included: isLinux
|
|
4041
4115
|
}))),
|
|
4042
4116
|
selectionHighlight: register(( new EditorBooleanOption(
|
|
@@ -4044,7 +4118,7 @@ const EditorOptions = {
|
|
|
4044
4118
|
'selectionHighlight',
|
|
4045
4119
|
true,
|
|
4046
4120
|
{ description: ( localize(
|
|
4047
|
-
|
|
4121
|
+
615,
|
|
4048
4122
|
"Controls whether the editor should highlight matches similar to the selection."
|
|
4049
4123
|
)) }
|
|
4050
4124
|
))),
|
|
@@ -4056,19 +4130,19 @@ const EditorOptions = {
|
|
|
4056
4130
|
['always', 'never', 'mouseover'],
|
|
4057
4131
|
{
|
|
4058
4132
|
enumDescriptions: [
|
|
4059
|
-
( localize(
|
|
4060
|
-
( localize(
|
|
4061
|
-
( localize(
|
|
4133
|
+
( localize(616, "Always show the folding controls.")),
|
|
4134
|
+
( localize(617, "Never show the folding controls and reduce the gutter size.")),
|
|
4135
|
+
( localize(618, "Only show the folding controls when the mouse is over the gutter.")),
|
|
4062
4136
|
],
|
|
4063
|
-
description: ( localize(
|
|
4137
|
+
description: ( localize(619, "Controls when the folding controls on the gutter are shown."))
|
|
4064
4138
|
}
|
|
4065
4139
|
))),
|
|
4066
|
-
showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, 'showUnused', true, { description: ( localize(
|
|
4140
|
+
showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, 'showUnused', true, { description: ( localize(620, "Controls fading out of unused code.")) }))),
|
|
4067
4141
|
showDeprecated: register(( new EditorBooleanOption(
|
|
4068
4142
|
EditorOption.showDeprecated,
|
|
4069
4143
|
'showDeprecated',
|
|
4070
4144
|
true,
|
|
4071
|
-
{ description: ( localize(
|
|
4145
|
+
{ description: ( localize(621, "Controls strikethrough deprecated variables.")) }
|
|
4072
4146
|
))),
|
|
4073
4147
|
inlayHints: register(( new EditorInlayHints())),
|
|
4074
4148
|
snippetSuggestions: register(( new EditorStringEnumOption(
|
|
@@ -4078,13 +4152,13 @@ const EditorOptions = {
|
|
|
4078
4152
|
['top', 'bottom', 'inline', 'none'],
|
|
4079
4153
|
{
|
|
4080
4154
|
enumDescriptions: [
|
|
4081
|
-
( localize(
|
|
4082
|
-
( localize(
|
|
4083
|
-
( localize(
|
|
4084
|
-
( localize(
|
|
4155
|
+
( localize(622, "Show snippet suggestions on top of other suggestions.")),
|
|
4156
|
+
( localize(623, "Show snippet suggestions below other suggestions.")),
|
|
4157
|
+
( localize(624, "Show snippets suggestions with other suggestions.")),
|
|
4158
|
+
( localize(625, "Do not show snippet suggestions.")),
|
|
4085
4159
|
],
|
|
4086
4160
|
description: ( localize(
|
|
4087
|
-
|
|
4161
|
+
626,
|
|
4088
4162
|
"Controls whether snippets are shown with other suggestions and how they are sorted."
|
|
4089
4163
|
))
|
|
4090
4164
|
}
|
|
@@ -4094,7 +4168,7 @@ const EditorOptions = {
|
|
|
4094
4168
|
EditorOption.smoothScrolling,
|
|
4095
4169
|
'smoothScrolling',
|
|
4096
4170
|
false,
|
|
4097
|
-
{ description: ( localize(
|
|
4171
|
+
{ description: ( localize(627, "Controls whether the editor will scroll using an animation.")) }
|
|
4098
4172
|
))),
|
|
4099
4173
|
stopRenderingLineAfter: register(( new EditorIntOption(
|
|
4100
4174
|
EditorOption.stopRenderingLineAfter,
|
|
@@ -4110,7 +4184,7 @@ const EditorOptions = {
|
|
|
4110
4184
|
'inlineCompletionsAccessibilityVerbose',
|
|
4111
4185
|
false,
|
|
4112
4186
|
{ description: ( localize(
|
|
4113
|
-
|
|
4187
|
+
628,
|
|
4114
4188
|
"Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."
|
|
4115
4189
|
)) }
|
|
4116
4190
|
))),
|
|
@@ -4121,7 +4195,7 @@ const EditorOptions = {
|
|
|
4121
4195
|
0,
|
|
4122
4196
|
1000,
|
|
4123
4197
|
{ markdownDescription: ( localize(
|
|
4124
|
-
|
|
4198
|
+
629,
|
|
4125
4199
|
"Font size for the suggest widget. When set to {0}, the value of {1} is used.",
|
|
4126
4200
|
'`0`',
|
|
4127
4201
|
'`#editor.fontSize#`'
|
|
@@ -4134,7 +4208,7 @@ const EditorOptions = {
|
|
|
4134
4208
|
0,
|
|
4135
4209
|
1000,
|
|
4136
4210
|
{ markdownDescription: ( localize(
|
|
4137
|
-
|
|
4211
|
+
630,
|
|
4138
4212
|
"Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.",
|
|
4139
4213
|
'`0`',
|
|
4140
4214
|
'`#editor.lineHeight#`'
|
|
@@ -4145,7 +4219,7 @@ const EditorOptions = {
|
|
|
4145
4219
|
'suggestOnTriggerCharacters',
|
|
4146
4220
|
true,
|
|
4147
4221
|
{ description: ( localize(
|
|
4148
|
-
|
|
4222
|
+
631,
|
|
4149
4223
|
"Controls whether suggestions should automatically show up when typing trigger characters."
|
|
4150
4224
|
)) }
|
|
4151
4225
|
))),
|
|
@@ -4156,18 +4230,18 @@ const EditorOptions = {
|
|
|
4156
4230
|
['first', 'recentlyUsed', 'recentlyUsedByPrefix'],
|
|
4157
4231
|
{
|
|
4158
4232
|
markdownEnumDescriptions: [
|
|
4159
|
-
( localize(
|
|
4233
|
+
( localize(632, "Always select the first suggestion.")),
|
|
4160
4234
|
( localize(
|
|
4161
|
-
|
|
4235
|
+
633,
|
|
4162
4236
|
"Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently."
|
|
4163
4237
|
)),
|
|
4164
4238
|
( localize(
|
|
4165
|
-
|
|
4239
|
+
634,
|
|
4166
4240
|
"Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`."
|
|
4167
4241
|
)),
|
|
4168
4242
|
],
|
|
4169
4243
|
description: ( localize(
|
|
4170
|
-
|
|
4244
|
+
635,
|
|
4171
4245
|
"Controls how suggestions are pre-selected when showing the suggest list."
|
|
4172
4246
|
))
|
|
4173
4247
|
}
|
|
@@ -4180,16 +4254,16 @@ const EditorOptions = {
|
|
|
4180
4254
|
{
|
|
4181
4255
|
enumDescriptions: [
|
|
4182
4256
|
( localize(
|
|
4183
|
-
|
|
4257
|
+
636,
|
|
4184
4258
|
"Tab complete will insert the best matching suggestion when pressing tab."
|
|
4185
4259
|
)),
|
|
4186
|
-
( localize(
|
|
4260
|
+
( localize(637, "Disable tab completions.")),
|
|
4187
4261
|
( localize(
|
|
4188
|
-
|
|
4262
|
+
638,
|
|
4189
4263
|
"Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."
|
|
4190
4264
|
)),
|
|
4191
4265
|
],
|
|
4192
|
-
description: ( localize(
|
|
4266
|
+
description: ( localize(639, "Enables tab completions."))
|
|
4193
4267
|
}
|
|
4194
4268
|
))),
|
|
4195
4269
|
tabIndex: register(( new EditorIntOption(EditorOption.tabIndex, 'tabIndex', 0, -1, Constants.MAX_SAFE_SMALL_INTEGER))),
|
|
@@ -4201,11 +4275,11 @@ const EditorOptions = {
|
|
|
4201
4275
|
['auto', 'off', 'prompt'],
|
|
4202
4276
|
{
|
|
4203
4277
|
enumDescriptions: [
|
|
4204
|
-
( localize(
|
|
4205
|
-
( localize(
|
|
4206
|
-
( localize(
|
|
4278
|
+
( localize(640, "Unusual line terminators are automatically removed.")),
|
|
4279
|
+
( localize(641, "Unusual line terminators are ignored.")),
|
|
4280
|
+
( localize(642, "Unusual line terminators prompt to be removed.")),
|
|
4207
4281
|
],
|
|
4208
|
-
description: ( localize(
|
|
4282
|
+
description: ( localize(643, "Remove unusual line terminators that might cause problems."))
|
|
4209
4283
|
}
|
|
4210
4284
|
))),
|
|
4211
4285
|
useShadowDOM: register(( new EditorBooleanOption(EditorOption.useShadowDOM, 'useShadowDOM', true))),
|
|
@@ -4214,20 +4288,20 @@ const EditorOptions = {
|
|
|
4214
4288
|
'useTabStops',
|
|
4215
4289
|
true,
|
|
4216
4290
|
{ description: ( localize(
|
|
4217
|
-
|
|
4291
|
+
644,
|
|
4218
4292
|
"Spaces and tabs are inserted and deleted in alignment with tab stops."
|
|
4219
4293
|
)) }
|
|
4220
4294
|
))),
|
|
4221
4295
|
wordBreak: register(( new EditorStringEnumOption(EditorOption.wordBreak, 'wordBreak', 'normal', ['normal', 'keepAll'], {
|
|
4222
4296
|
markdownEnumDescriptions: [
|
|
4223
|
-
( localize(
|
|
4297
|
+
( localize(645, "Use the default line break rule.")),
|
|
4224
4298
|
( localize(
|
|
4225
|
-
|
|
4299
|
+
646,
|
|
4226
4300
|
"Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for normal."
|
|
4227
4301
|
)),
|
|
4228
4302
|
],
|
|
4229
4303
|
description: ( localize(
|
|
4230
|
-
|
|
4304
|
+
647,
|
|
4231
4305
|
"Controls the word break rules used for Chinese/Japanese/Korean (CJK) text."
|
|
4232
4306
|
))
|
|
4233
4307
|
}))),
|
|
@@ -4237,7 +4311,7 @@ const EditorOptions = {
|
|
|
4237
4311
|
'wordSeparators',
|
|
4238
4312
|
USUAL_WORD_SEPARATORS,
|
|
4239
4313
|
{ description: ( localize(
|
|
4240
|
-
|
|
4314
|
+
648,
|
|
4241
4315
|
"Characters that will be used as word separators when doing word related navigations or operations."
|
|
4242
4316
|
)) }
|
|
4243
4317
|
))),
|
|
@@ -4248,15 +4322,15 @@ const EditorOptions = {
|
|
|
4248
4322
|
['off', 'on', 'wordWrapColumn', 'bounded'],
|
|
4249
4323
|
{
|
|
4250
4324
|
markdownEnumDescriptions: [
|
|
4251
|
-
( localize(
|
|
4252
|
-
( localize(
|
|
4253
|
-
( localize(
|
|
4325
|
+
( localize(649, "Lines will never wrap.")),
|
|
4326
|
+
( localize(650, "Lines will wrap at the viewport width.")),
|
|
4327
|
+
( localize(651, "Lines will wrap at `#editor.wordWrapColumn#`.")),
|
|
4254
4328
|
( localize(
|
|
4255
|
-
|
|
4329
|
+
652,
|
|
4256
4330
|
"Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`."
|
|
4257
4331
|
)),
|
|
4258
4332
|
],
|
|
4259
|
-
description: ( localize(
|
|
4333
|
+
description: ( localize(653, "Controls how lines should wrap."))
|
|
4260
4334
|
}
|
|
4261
4335
|
))),
|
|
4262
4336
|
wordWrapBreakAfterCharacters: register(( new EditorStringOption(
|
|
@@ -4277,7 +4351,7 @@ const EditorOptions = {
|
|
|
4277
4351
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4278
4352
|
{
|
|
4279
4353
|
markdownDescription: ( localize(
|
|
4280
|
-
|
|
4354
|
+
654,
|
|
4281
4355
|
"Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`."
|
|
4282
4356
|
))
|
|
4283
4357
|
}
|
|
@@ -4304,14 +4378,14 @@ const EditorOptions = {
|
|
|
4304
4378
|
{
|
|
4305
4379
|
enumDescriptions: [
|
|
4306
4380
|
( localize(
|
|
4307
|
-
|
|
4381
|
+
655,
|
|
4308
4382
|
"Show default color decorators only when no extension provides colors decorators."
|
|
4309
4383
|
)),
|
|
4310
|
-
( localize(
|
|
4311
|
-
( localize(
|
|
4384
|
+
( localize(656, "Always show default color decorators.")),
|
|
4385
|
+
( localize(657, "Never show default color decorators.")),
|
|
4312
4386
|
],
|
|
4313
4387
|
description: ( localize(
|
|
4314
|
-
|
|
4388
|
+
658,
|
|
4315
4389
|
"Controls whether inline color decorations should be shown using the default document color provider."
|
|
4316
4390
|
))
|
|
4317
4391
|
}
|
|
@@ -4322,7 +4396,7 @@ const EditorOptions = {
|
|
|
4322
4396
|
'tabFocusMode',
|
|
4323
4397
|
false,
|
|
4324
4398
|
{ markdownDescription: ( localize(
|
|
4325
|
-
|
|
4399
|
+
659,
|
|
4326
4400
|
"Controls whether the editor receives tabs or defers them to the workbench for navigation."
|
|
4327
4401
|
)) }
|
|
4328
4402
|
))),
|
|
@@ -4330,7 +4404,8 @@ const EditorOptions = {
|
|
|
4330
4404
|
wrappingInfo: register(( new EditorWrappingInfoComputer())),
|
|
4331
4405
|
wrappingIndent: register(( new WrappingIndentOption())),
|
|
4332
4406
|
wrappingStrategy: register(( new WrappingStrategy())),
|
|
4333
|
-
|
|
4407
|
+
effectiveEditContextEnabled: register(( new EffectiveEditContextEnabled())),
|
|
4408
|
+
effectiveAllowVariableFonts: register(( new EffectiveAllowVariableFonts()))
|
|
4334
4409
|
};
|
|
4335
4410
|
|
|
4336
|
-
export { ApplyUpdateResult, ComputeOptionsMemory, ConfigurationChangedEvent, EDITOR_FONT_DEFAULTS, EditorAutoIndentStrategy, EditorFontLigatures, EditorFontVariations, EditorLayoutInfoComputer, EditorOption, EditorOptions, MINIMAP_GUTTER_WIDTH, RenderLineNumbersType, RenderMinimap, ShowLightbulbIconMode, TextEditorCursorBlinkingStyle, TextEditorCursorStyle, WrappingIndent, boolean, clampedFloat, clampedInt, cursorBlinkingStyleFromString, cursorStyleFromString, cursorStyleToString, editorOptionsRegistry, filterValidationDecorations, inUntrustedWorkspace, stringSet, unicodeHighlightConfigKeys };
|
|
4411
|
+
export { ApplyUpdateResult, ComputeOptionsMemory, ConfigurationChangedEvent, EDITOR_FONT_DEFAULTS, EditorAutoIndentStrategy, EditorFontLigatures, EditorFontVariations, EditorLayoutInfoComputer, EditorOption, EditorOptions, MINIMAP_GUTTER_WIDTH, RenderLineNumbersType, RenderMinimap, ShowLightbulbIconMode, TextEditorCursorBlinkingStyle, TextEditorCursorStyle, WrappingIndent, boolean, clampedFloat, clampedInt, cursorBlinkingStyleFromString, cursorStyleFromString, cursorStyleToString, editorOptionsRegistry, filterFontDecorations, filterValidationDecorations, inUntrustedWorkspace, stringSet, unicodeHighlightConfigKeys };
|