@codingame/monaco-vscode-api 20.5.0 → 21.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 +136 -50
- package/package.json +8 -8
- package/services.d.ts +8 -4
- package/services.js +8 -4
- package/vscode/product.json.js +1 -1
- package/vscode/src/vs/base/browser/dom.js +3 -3
- package/vscode/src/vs/base/browser/domSanitize.d.ts +23 -11
- package/vscode/src/vs/base/browser/domSanitize.js +86 -7
- package/vscode/src/vs/base/browser/domStylesheets.js +2 -2
- package/vscode/src/vs/base/browser/event.d.ts +1 -1
- package/vscode/src/vs/base/browser/markdownRenderer.d.ts +8 -4
- package/vscode/src/vs/base/browser/markdownRenderer.js +72 -126
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.d.ts +10 -10
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.js +5 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +2 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.d.ts +4 -4
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.js +32 -7
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.js +4 -2
- package/vscode/src/vs/base/browser/ui/dropdown/dropdownActionViewItem.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/dropdown/dropdownActionViewItem.js +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/findInput.d.ts +7 -7
- package/vscode/src/vs/base/browser/ui/findinput/findInput.js +7 -7
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.d.ts +6 -6
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +6 -6
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +5 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.js +2 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +4 -4
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +2 -2
- package/vscode/src/vs/base/browser/ui/list/listWidget.d.ts +3 -3
- package/vscode/src/vs/base/browser/ui/list/listWidget.js +3 -3
- package/vscode/src/vs/base/browser/ui/menu/menu.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/menu/menu.js +21 -16
- package/vscode/src/vs/base/browser/ui/resizable/resizable.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/resizable/resizable.js +2 -2
- package/vscode/src/vs/base/browser/ui/sash/sash.d.ts +4 -4
- package/vscode/src/vs/base/browser/ui/sash/sash.js +16 -22
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.js +2 -2
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +2 -1
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.d.ts +4 -4
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.js +3 -3
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.js +12 -12
- package/vscode/src/vs/base/browser/ui/toggle/toggle.d.ts +2 -2
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +2 -2
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -1
- package/vscode/src/vs/base/common/actions.d.ts +3 -3
- package/vscode/src/vs/base/common/actions.js +3 -3
- package/vscode/src/vs/base/common/async.d.ts +18 -7
- package/vscode/src/vs/base/common/async.js +71 -14
- package/vscode/src/vs/base/common/codicons.d.ts +3 -0
- package/vscode/src/vs/base/common/codiconsLibrary.d.ts +3 -0
- package/vscode/src/vs/base/common/codiconsLibrary.js +3 -0
- package/vscode/src/vs/base/common/defaultAccount.d.ts +23 -0
- package/vscode/src/vs/base/common/event.d.ts +0 -5
- package/vscode/src/vs/base/common/event.js +0 -12
- package/vscode/src/vs/base/common/hotReloadHelpers.js +2 -33
- package/vscode/src/vs/base/common/htmlContent.d.ts +1 -1
- package/vscode/src/vs/base/common/htmlContent.js +2 -2
- package/vscode/src/vs/base/common/lazy.d.ts +1 -1
- package/vscode/src/vs/base/common/lazy.js +14 -4
- package/vscode/src/vs/base/common/lifecycle.d.ts +7 -11
- package/vscode/src/vs/base/common/lifecycle.js +19 -2
- package/vscode/src/vs/base/common/marshallingIds.d.ts +5 -4
- package/vscode/src/vs/base/common/marshallingIds.js +5 -4
- package/vscode/src/vs/base/common/mime.d.ts +4 -0
- package/vscode/src/vs/base/common/mime.js +4 -1
- package/vscode/src/vs/base/common/network.d.ts +5 -0
- package/vscode/src/vs/base/common/network.js +2 -0
- package/vscode/src/vs/base/common/oauth.d.ts +18 -2
- package/vscode/src/vs/base/common/oauth.js +113 -18
- package/vscode/src/vs/base/common/observableInternal/debugLocation.d.ts +20 -0
- package/vscode/src/vs/base/common/observableInternal/debugLocation.js +63 -0
- package/vscode/src/vs/base/common/observableInternal/experimental/reducer.js +2 -1
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/index.js +2 -1
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.d.ts +3 -2
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js +15 -33
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.d.ts +0 -7
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.js +1 -42
- package/vscode/src/vs/base/common/observableInternal/logging/logging.d.ts +3 -2
- package/vscode/src/vs/base/common/observableInternal/logging/logging.js +4 -4
- package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/observables/baseObservable.js +6 -5
- package/vscode/src/vs/base/common/observableInternal/observables/derived.d.ts +4 -3
- package/vscode/src/vs/base/common/observableInternal/observables/derived.js +12 -11
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.d.ts +3 -2
- package/vscode/src/vs/base/common/observableInternal/observables/derivedImpl.js +4 -4
- package/vscode/src/vs/base/common/observableInternal/observables/lazyObservableValue.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/observables/lazyObservableValue.js +2 -2
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.d.ts +4 -3
- package/vscode/src/vs/base/common/observableInternal/observables/observableFromEvent.js +10 -8
- package/vscode/src/vs/base/common/observableInternal/observables/observableSignal.js +6 -5
- package/vscode/src/vs/base/common/observableInternal/observables/observableSignalFromEvent.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/observables/observableSignalFromEvent.js +5 -4
- package/vscode/src/vs/base/common/observableInternal/observables/observableValue.d.ts +3 -2
- package/vscode/src/vs/base/common/observableInternal/observables/observableValue.js +7 -6
- package/vscode/src/vs/base/common/observableInternal/observables/observableValueOpts.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/observables/observableValueOpts.js +4 -3
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.d.ts +11 -3
- package/vscode/src/vs/base/common/observableInternal/reactions/autorun.js +27 -7
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.d.ts +2 -1
- package/vscode/src/vs/base/common/observableInternal/reactions/autorunImpl.js +2 -2
- package/vscode/src/vs/base/common/observableInternal/utils/utilsCancellation.js +1 -0
- package/vscode/src/vs/base/common/policy.d.ts +29 -0
- package/vscode/src/vs/base/common/product.d.ts +15 -1
- package/vscode/src/vs/base/common/strings.d.ts +0 -6
- package/vscode/src/vs/base/common/strings.js +1 -8
- package/vscode/src/vs/base/common/types.js +1 -4
- package/vscode/src/vs/base/common/uuid.d.ts +2 -0
- package/vscode/src/vs/base/common/uuid.js +4 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +1 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +9 -2
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.d.ts +2 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.js +10 -3
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +1 -0
- package/vscode/src/vs/editor/browser/controller/mouseHandler.js +2 -3
- package/vscode/src/vs/editor/browser/editorDom.d.ts +1 -0
- package/vscode/src/vs/editor/browser/editorDom.js +7 -4
- package/vscode/src/vs/editor/browser/observableCodeEditor.d.ts +2 -2
- package/vscode/src/vs/editor/browser/observableCodeEditor.js +3 -2
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.js +1 -4
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.d.ts +3 -0
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.js +14 -1
- package/vscode/src/vs/editor/browser/services/inlineCompletionsService.service.d.ts +4 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +12 -7
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +8 -8
- package/vscode/src/vs/editor/browser/widget/diffEditor/features/overviewRulerFeature.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/utils/editorGutter.js +3 -1
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.d.ts +2 -2
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +31 -44
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +10 -10
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +6 -4
- package/vscode/src/vs/editor/common/config/editorOptions.js +302 -275
- package/vscode/src/vs/editor/common/core/2d/rect.js +5 -2
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/core/edits/lineEdit.d.ts +2 -2
- package/vscode/src/vs/editor/common/core/edits/lineEdit.js +1 -1
- package/vscode/src/vs/editor/common/core/edits/stringEdit.d.ts +1 -1
- package/vscode/src/vs/editor/common/core/edits/stringEdit.js +9 -3
- package/vscode/src/vs/editor/common/core/edits/textEdit.d.ts +2 -2
- package/vscode/src/vs/editor/common/core/text/textLength.d.ts +3 -0
- package/vscode/src/vs/editor/common/core/text/textLength.js +6 -0
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languageFeatureRegistry.d.ts +1 -1
- package/vscode/src/vs/editor/common/languageFeatureRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +19 -1
- package/vscode/src/vs/editor/common/languages.js +77 -57
- package/vscode/src/vs/editor/common/model/bracketPairsTextModelPart/bracketPairsTree/beforeEditPositionMapper.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/mirrorTextModel.d.ts +19 -1
- package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.js +1 -1
- package/vscode/src/vs/editor/common/model/textModel.d.ts +4 -4
- package/vscode/src/vs/editor/common/model/textModel.js +4 -4
- package/vscode/src/vs/editor/common/model/textModelStringEdit.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/textModelTokens.d.ts +1 -1
- package/vscode/src/vs/editor/common/model.d.ts +2 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.d.ts +7 -1
- package/vscode/src/vs/editor/common/services/editorWebWorker.js +13 -10
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.d.ts +4 -0
- package/vscode/src/vs/editor/common/standalone/standaloneEnums.js +6 -1
- package/vscode/src/vs/editor/common/standaloneStrings.js +47 -47
- package/vscode/src/vs/editor/common/textModelEditSource.d.ts +48 -2
- package/vscode/src/vs/editor/common/textModelEditSource.js +54 -1
- package/vscode/src/vs/editor/common/textModelEvents.d.ts +1 -18
- package/vscode/src/vs/editor/common/tokens/sparseMultilineTokens.js +6 -1
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +28 -17
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +3 -2
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.d.ts +5 -5
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +3 -3
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +26 -26
- package/vscode/src/vs/editor/contrib/folding/browser/folding.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +21 -21
- 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 +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverComputer.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverComputer.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/getHover.js +2 -2
- 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/hoverOperation.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverOperation.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +12 -12
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +9 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +1 -1
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +11 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +19 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +12 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +56 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +7 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +76 -18
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +7 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.d.ts +6 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineSuggestionItem.js +9 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +18 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +31 -9
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/suggestWidgetAdapter.js +4 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/typingSpeed.js +6 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +5 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.js +11 -15
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +36 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCustomView.js +17 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +4 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +10 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +7 -7
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +15 -8
- 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.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +49 -13
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +31 -31
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +8 -3
- package/vscode/src/vs/editor/contrib/links/browser/links.js +10 -10
- package/vscode/src/vs/editor/contrib/message/browser/messageController.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +11 -14
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +10 -10
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +26 -15
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.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.js +4 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +1 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +4 -4
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/vscode/src/vs/platform/actions/browser/floatingMenu.d.ts +1 -1
- package/vscode/src/vs/platform/actions/browser/floatingMenu.js +1 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +11 -11
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/vscode/src/vs/platform/actions/browser/toolbar.d.ts +1 -6
- package/vscode/src/vs/platform/actions/browser/toolbar.js +3 -6
- package/vscode/src/vs/platform/actions/common/actions.d.ts +2 -1
- package/vscode/src/vs/platform/actions/common/actions.js +2 -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/assignment/common/assignment.d.ts +70 -0
- package/vscode/src/vs/platform/configuration/common/configurationModels.js +11 -8
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +1 -1
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +10 -10
- package/vscode/src/vs/platform/configuration/common/configurations.js +2 -3
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.d.ts +1 -1
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +2 -2
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +11 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.d.ts +1 -0
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +11 -10
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/dataChannel/common/dataChannel.d.ts +14 -0
- package/vscode/src/vs/platform/dataChannel/common/dataChannel.js +15 -0
- package/vscode/src/vs/{workbench/services → platform}/dataChannel/common/dataChannel.service.d.ts +2 -2
- package/vscode/src/vs/{workbench/services → platform}/dataChannel/common/dataChannel.service.js +1 -1
- package/vscode/src/vs/platform/debug/common/extensionHostDebug.d.ts +1 -1
- package/vscode/src/vs/platform/debug/common/extensionHostDebug.service.d.ts +1 -0
- package/vscode/src/vs/platform/diagnostics/common/diagnostics.d.ts +1 -1
- 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 +0 -1
- package/vscode/src/vs/platform/environment/common/environment.service.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +2 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +21 -19
- 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 +11 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +12 -1
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/instantiation/common/instantiation.d.ts +1 -0
- package/vscode/src/vs/platform/instantiation/common/instantiationService.js +7 -0
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.d.ts +1 -1
- package/vscode/src/vs/platform/log/common/log.js +7 -7
- package/vscode/src/vs/platform/markers/common/markerService.js +2 -2
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.d.ts +18 -0
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.js +28 -0
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.service.d.ts +10 -0
- package/vscode/src/vs/platform/mcp/common/mcpGalleryManifest.service.js +6 -0
- package/vscode/src/vs/platform/mcp/common/mcpManagement.service.d.ts +8 -4
- package/vscode/src/vs/platform/notification/common/notification.js +3 -3
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.d.ts +4 -4
- package/vscode/src/vs/platform/observable/common/platformObservableUtils.js +15 -20
- package/vscode/src/vs/platform/observable/common/wrapInHotClass.js +2 -28
- package/vscode/src/vs/platform/observable/common/wrapInReloadableClass.js +3 -42
- package/vscode/src/vs/platform/policy/common/policy.d.ts +3 -3
- package/vscode/src/vs/platform/policy/common/policy.service.d.ts +1 -1
- package/vscode/src/vs/platform/product/common/product.js +3 -3
- package/vscode/src/vs/platform/progress/common/progress.d.ts +0 -12
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +13 -12
- 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 +10 -7
- package/vscode/src/vs/platform/quickinput/browser/quickInputList.js +1 -2
- package/vscode/src/vs/platform/quickinput/browser/quickInputService.js +2 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.d.ts +1 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputDelegate.js +2 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTree.d.ts +0 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +2 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.d.ts +0 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeController.js +5 -17
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeFilter.d.ts +0 -1
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeFilter.js +3 -6
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.d.ts +1 -2
- package/vscode/src/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +5 -30
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.d.ts +0 -3
- package/vscode/src/vs/platform/quickinput/browser/tree/quickTree.js +2 -6
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +53 -26
- package/vscode/src/vs/platform/request/common/request.d.ts +2 -0
- package/vscode/src/vs/platform/request/common/request.js +25 -19
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +2 -1
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +5 -0
- package/vscode/src/vs/platform/theme/common/colorUtils.js +2 -2
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +47 -47
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +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/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/window/common/window.d.ts +6 -2
- package/vscode/src/vs/platform/window/common/window.js +3 -2
- package/vscode/src/vs/platform/workspace/common/workspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +37 -9
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +53 -26
- package/vscode/src/vs/workbench/api/common/extHostApiCommands.js +7 -1
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.d.ts +6 -4
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +67 -13
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +2 -3
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +23 -30
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.d.ts +12 -4
- package/vscode/src/vs/workbench/api/common/extHostChatSessions.js +73 -12
- package/vscode/src/vs/workbench/api/common/extHostCommands.js +6 -1
- package/vscode/src/vs/workbench/api/common/extHostComments.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostCustomEditors.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDebugService.js +3 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostDocumentData.d.ts +7 -4
- package/vscode/src/vs/workbench/api/common/extHostDocumentData.js +27 -6
- package/vscode/src/vs/workbench/api/common/extHostDocumentSaveParticipant.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostFileSystemEventService.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.d.ts +8 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +39 -14
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +5 -5
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +52 -84
- package/vscode/src/vs/workbench/api/common/extHostLanguages.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +36 -33
- package/vscode/src/vs/workbench/api/common/extHostNotebook.d.ts +5 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +69 -53
- package/vscode/src/vs/workbench/api/common/extHostNotebookDocument.js +4 -2
- package/vscode/src/vs/workbench/api/common/extHostNotebookDocumentSaveParticipant.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebookEditor.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostNotebookKernels.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostSCM.js +14 -12
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +6 -4
- package/vscode/src/vs/workbench/api/common/extHostTextEditor.js +5 -1
- package/vscode/src/vs/workbench/api/common/extHostTimeline.js +2 -1
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +3 -2
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +16 -8
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +93 -20
- package/vscode/src/vs/workbench/api/common/extHostTypes/codeActionKind.d.ts +19 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/codeActionKind.js +37 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/diagnostic.d.ts +31 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/diagnostic.js +91 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/es5ClassCompat.d.ts +7 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/es5ClassCompat.js +27 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/location.d.ts +11 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/location.js +44 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/markdownString.d.ts +20 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/markdownString.js +65 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/notebooks.d.ts +84 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/notebooks.js +229 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/position.d.ts +29 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/position.js +169 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/range.d.ts +26 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/range.js +137 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/selection.d.ts +20 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/selection.js +76 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetString.d.ts +12 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetString.js +84 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetTextEdit.d.ts +13 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/snippetTextEdit.js +28 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/symbolInformation.d.ts +45 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/symbolInformation.js +75 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/textEdit.d.ts +24 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/textEdit.js +82 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/workspaceEdit.d.ts +99 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes/workspaceEdit.js +146 -0
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +86 -420
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +65 -1186
- package/vscode/src/vs/workbench/api/common/extHostWebviewPanels.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +3 -2
- 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 +13 -9
- package/vscode/src/vs/workbench/browser/parts/editor/editor.js +7 -0
- 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 +74 -73
- package/vscode/src/vs/workbench/common/editor/diffEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/editorInput.d.ts +1 -1
- package/vscode/src/vs/workbench/common/editor/sideBySideEditorInput.js +1 -1
- package/vscode/src/vs/workbench/common/editor/textEditorModel.js +1 -1
- package/vscode/src/vs/workbench/common/editor.d.ts +2 -0
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +160 -160
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +157 -157
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +12 -12
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +13 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +64 -56
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +18 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +3 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +3 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatLayoutService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.d.ts +13 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatModes.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +71 -15
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.js +10 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.d.ts +49 -22
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.js +10 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatSessionsService.service.d.ts +24 -9
- package/vscode/src/vs/workbench/contrib/chat/common/chatTodoListService.service.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariableEntries.js +13 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +2 -3
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +14 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +18 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +25 -7
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +15 -8
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +4 -3
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +36 -18
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +46 -36
- package/vscode/src/vs/workbench/contrib/chat/common/modelPicker/modelPickerWidget.js +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/service/promptsService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/confirmationTool.d.ts +14 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/confirmationTool.js +76 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.d.ts +10 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/manageTodoListTool.js +205 -107
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.js +14 -8
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/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/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/browser/simpleCommentEditor.js +1 -0
- 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.js +65 -65
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.d.ts +16 -0
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.service.d.ts +8 -0
- package/vscode/src/vs/workbench/contrib/editTelemetry/browser/telemetry/aiEditTelemetry/aiEditTelemetryService.service.js +6 -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 -7
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- 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/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 +10 -7
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +12 -6
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +1 -5
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +1 -4
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/constants.js +1 -1
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/taskService.service.d.ts +7 -2
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +4 -4
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.d.ts +3 -1
- package/vscode/src/vs/workbench/contrib/terminal/browser/terminal.service.d.ts +10 -3
- package/vscode/src/vs/workbench/contrib/terminal/common/environmentVariable.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminal/common/terminal.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/terminalContrib/quickFix/browser/quickFix.service.d.ts +1 -1
- 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/services/accounts/common/defaultAccount.d.ts +2 -21
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +34 -6
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/activity/common/activity.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/assignment/common/assignmentService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/browser/authenticationUsageService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/authentication/common/authentication.d.ts +48 -1
- package/vscode/src/vs/workbench/services/authentication/common/authentication.js +7 -1
- package/vscode/src/vs/workbench/services/authentication/common/authentication.service.d.ts +7 -6
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +16 -16
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/environment/common/environmentService.service.d.ts +0 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +94 -86
- package/vscode/src/vs/workbench/services/host/browser/host.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/inlineCompletions/common/inlineCompletionsUnification.service.d.ts +8 -0
- package/vscode/src/vs/workbench/services/inlineCompletions/common/inlineCompletionsUnification.service.js +6 -0
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +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 +1 -1
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.d.ts +4 -0
- 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 -13
- package/vscode/src/vs/workbench/services/workingCopy/common/workingCopyFileService.service.d.ts +1 -1
- package/vscode-dts/vscode.d.ts +218 -2
- package/vscode-dts/vscode.proposed.authenticationChallenges.d.ts +161 -0
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +47 -1
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +3 -1
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +28 -108
- package/vscode-dts/vscode.proposed.chatSessionsProvider.d.ts +101 -12
- package/vscode-dts/vscode.proposed.contribSecondarySidebar.d.ts +6 -0
- package/vscode-dts/vscode.proposed.d.ts +3 -0
- package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +0 -5
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +31 -0
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +2 -2
- package/vscode-dts/vscode.proposed.languageModelThinkingPart.d.ts +49 -0
- package/vscode-dts/vscode.proposed.languageModelToolResultAudience.d.ts +16 -5
- package/vscode-dts/vscode.proposed.terminalCompletionProvider.d.ts +7 -0
- package/vscode/src/vs/base/browser/dompurify/dompurify.d.ts +0 -114
- package/vscode/src/vs/base/common/hotReload.js +0 -80
- package/vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.d.ts +0 -6
- package/vscode/src/vs/workbench/services/coreExperimentation/common/coreExperimentationService.service.js +0 -6
- package/vscode/src/vs/workbench/services/dataChannel/common/dataChannel.d.ts +0 -7
|
@@ -926,9 +926,9 @@ class EditorHover extends BaseEditorOption {
|
|
|
926
926
|
type: 'integer',
|
|
927
927
|
minimum: 0,
|
|
928
928
|
default: defaults.hidingDelay,
|
|
929
|
-
|
|
929
|
+
markdownDescription: ( localize(
|
|
930
930
|
318,
|
|
931
|
-
"Controls the delay in milliseconds after which the hover is hidden. Requires
|
|
931
|
+
"Controls the delay in milliseconds after which the hover is hidden. Requires `#editor.hover.sticky#` to be enabled."
|
|
932
932
|
))
|
|
933
933
|
},
|
|
934
934
|
'editor.hover.above': {
|
|
@@ -2192,15 +2192,17 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2192
2192
|
keepOnBlur: false,
|
|
2193
2193
|
fontFamily: 'default',
|
|
2194
2194
|
syntaxHighlightingEnabled: true,
|
|
2195
|
+
minShowDelay: 0,
|
|
2195
2196
|
edits: {
|
|
2196
2197
|
enabled: true,
|
|
2197
2198
|
showCollapsed: false,
|
|
2198
2199
|
renderSideBySide: 'auto',
|
|
2199
2200
|
allowCodeShifting: 'always',
|
|
2200
2201
|
},
|
|
2202
|
+
triggerCommandOnProviderChange: true,
|
|
2201
2203
|
experimental: {
|
|
2202
2204
|
suppressInlineSuggestions: '',
|
|
2203
|
-
|
|
2205
|
+
showOnSuggestConflict: 'never',
|
|
2204
2206
|
},
|
|
2205
2207
|
};
|
|
2206
2208
|
super(EditorOption.inlineSuggest, 'inlineSuggest', defaults, {
|
|
@@ -2245,40 +2247,63 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2245
2247
|
"Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available."
|
|
2246
2248
|
))
|
|
2247
2249
|
},
|
|
2250
|
+
'editor.inlineSuggest.minShowDelay': {
|
|
2251
|
+
type: 'number',
|
|
2252
|
+
default: 0,
|
|
2253
|
+
minimum: 0,
|
|
2254
|
+
maximum: 10000,
|
|
2255
|
+
description: ( localize(
|
|
2256
|
+
405,
|
|
2257
|
+
"Controls the minimal delay in milliseconds after which inline suggestions are shown after typing."
|
|
2258
|
+
)),
|
|
2259
|
+
},
|
|
2248
2260
|
'editor.inlineSuggest.experimental.suppressInlineSuggestions': {
|
|
2249
2261
|
type: 'string',
|
|
2250
2262
|
default: defaults.experimental.suppressInlineSuggestions,
|
|
2251
2263
|
tags: ['experimental'],
|
|
2252
2264
|
description: ( localize(
|
|
2253
|
-
|
|
2265
|
+
406,
|
|
2254
2266
|
"Suppresses inline completions for specified extension IDs -- comma separated."
|
|
2255
2267
|
)),
|
|
2256
2268
|
experiment: {
|
|
2257
|
-
mode: '
|
|
2269
|
+
mode: 'auto'
|
|
2258
2270
|
}
|
|
2259
2271
|
},
|
|
2260
|
-
'editor.inlineSuggest.
|
|
2272
|
+
'editor.inlineSuggest.triggerCommandOnProviderChange': {
|
|
2261
2273
|
type: 'boolean',
|
|
2262
|
-
default: defaults.
|
|
2274
|
+
default: defaults.triggerCommandOnProviderChange,
|
|
2263
2275
|
tags: ['experimental'],
|
|
2264
2276
|
description: ( localize(
|
|
2265
|
-
|
|
2277
|
+
407,
|
|
2266
2278
|
"Controls whether to trigger a command when the inline suggestion provider changes."
|
|
2267
2279
|
)),
|
|
2268
2280
|
experiment: {
|
|
2269
|
-
mode: '
|
|
2281
|
+
mode: 'auto'
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
'editor.inlineSuggest.experimental.showOnSuggestConflict': {
|
|
2285
|
+
type: 'string',
|
|
2286
|
+
default: defaults.experimental.showOnSuggestConflict,
|
|
2287
|
+
tags: ['experimental'],
|
|
2288
|
+
enum: ['always', 'never', 'whenSuggestListIsIncomplete'],
|
|
2289
|
+
description: ( localize(
|
|
2290
|
+
408,
|
|
2291
|
+
"Controls whether to show inline suggestions when there is a suggest conflict."
|
|
2292
|
+
)),
|
|
2293
|
+
experiment: {
|
|
2294
|
+
mode: 'auto'
|
|
2270
2295
|
}
|
|
2271
2296
|
},
|
|
2272
2297
|
'editor.inlineSuggest.fontFamily': {
|
|
2273
2298
|
type: 'string',
|
|
2274
2299
|
default: defaults.fontFamily,
|
|
2275
|
-
description: ( localize(
|
|
2300
|
+
description: ( localize(409, "Controls the font family of the inline suggestions."))
|
|
2276
2301
|
},
|
|
2277
2302
|
'editor.inlineSuggest.edits.allowCodeShifting': {
|
|
2278
2303
|
type: 'string',
|
|
2279
2304
|
default: defaults.edits.allowCodeShifting,
|
|
2280
2305
|
description: ( localize(
|
|
2281
|
-
|
|
2306
|
+
410,
|
|
2282
2307
|
"Controls whether showing a suggestion will shift the code to make space for the suggestion inline."
|
|
2283
2308
|
)),
|
|
2284
2309
|
enum: ['always', 'horizontal', 'never'],
|
|
@@ -2287,15 +2312,15 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2287
2312
|
'editor.inlineSuggest.edits.renderSideBySide': {
|
|
2288
2313
|
type: 'string',
|
|
2289
2314
|
default: defaults.edits.renderSideBySide,
|
|
2290
|
-
description: ( localize(
|
|
2315
|
+
description: ( localize(411, "Controls whether larger suggestions can be shown side by side.")),
|
|
2291
2316
|
enum: ['auto', 'never'],
|
|
2292
2317
|
enumDescriptions: [
|
|
2293
2318
|
( localize(
|
|
2294
|
-
|
|
2319
|
+
412,
|
|
2295
2320
|
"Larger suggestions will show side by side if there is enough space, otherwise they will be shown below."
|
|
2296
2321
|
)),
|
|
2297
2322
|
( localize(
|
|
2298
|
-
|
|
2323
|
+
413,
|
|
2299
2324
|
"Larger suggestions are never shown side by side and will always be shown below."
|
|
2300
2325
|
)),
|
|
2301
2326
|
],
|
|
@@ -2305,7 +2330,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2305
2330
|
type: 'boolean',
|
|
2306
2331
|
default: defaults.edits.showCollapsed,
|
|
2307
2332
|
description: ( localize(
|
|
2308
|
-
|
|
2333
|
+
414,
|
|
2309
2334
|
"Controls whether the suggestion will show as collapsed until jumping to it."
|
|
2310
2335
|
)),
|
|
2311
2336
|
tags: ['nextEditSuggestions']
|
|
@@ -2325,15 +2350,17 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2325
2350
|
keepOnBlur: boolean(input.keepOnBlur, this.defaultValue.keepOnBlur),
|
|
2326
2351
|
fontFamily: EditorStringOption.string(input.fontFamily, this.defaultValue.fontFamily),
|
|
2327
2352
|
syntaxHighlightingEnabled: boolean(input.syntaxHighlightingEnabled, this.defaultValue.syntaxHighlightingEnabled),
|
|
2353
|
+
minShowDelay: EditorIntOption.clampedInt(input.minShowDelay, 0, 0, 10000),
|
|
2328
2354
|
edits: {
|
|
2329
2355
|
enabled: boolean(input.edits?.enabled, this.defaultValue.edits.enabled),
|
|
2330
2356
|
showCollapsed: boolean(input.edits?.showCollapsed, this.defaultValue.edits.showCollapsed),
|
|
2331
2357
|
allowCodeShifting: stringSet(input.edits?.allowCodeShifting, this.defaultValue.edits.allowCodeShifting, ['always', 'horizontal', 'never']),
|
|
2332
2358
|
renderSideBySide: stringSet(input.edits?.renderSideBySide, this.defaultValue.edits.renderSideBySide, ['never', 'auto']),
|
|
2333
2359
|
},
|
|
2360
|
+
triggerCommandOnProviderChange: boolean(input.triggerCommandOnProviderChange, this.defaultValue.triggerCommandOnProviderChange),
|
|
2334
2361
|
experimental: {
|
|
2335
2362
|
suppressInlineSuggestions: EditorStringOption.string(input.experimental?.suppressInlineSuggestions, this.defaultValue.experimental.suppressInlineSuggestions),
|
|
2336
|
-
|
|
2363
|
+
showOnSuggestConflict: stringSet(input.experimental?.showOnSuggestConflict, this.defaultValue.experimental.showOnSuggestConflict, ['always', 'never', 'whenSuggestListIsIncomplete']),
|
|
2337
2364
|
},
|
|
2338
2365
|
};
|
|
2339
2366
|
}
|
|
@@ -2349,7 +2376,7 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2349
2376
|
type: 'boolean',
|
|
2350
2377
|
default: defaults.enabled,
|
|
2351
2378
|
markdownDescription: ( localize(
|
|
2352
|
-
|
|
2379
|
+
415,
|
|
2353
2380
|
"Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.",
|
|
2354
2381
|
'`#workbench.colorCustomizations#`'
|
|
2355
2382
|
))
|
|
@@ -2358,7 +2385,7 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2358
2385
|
type: 'boolean',
|
|
2359
2386
|
default: defaults.independentColorPoolPerBracketType,
|
|
2360
2387
|
description: ( localize(
|
|
2361
|
-
|
|
2388
|
+
416,
|
|
2362
2389
|
"Controls whether each bracket type has its own independent color pool."
|
|
2363
2390
|
))
|
|
2364
2391
|
},
|
|
@@ -2389,54 +2416,54 @@ class GuideOptions extends BaseEditorOption {
|
|
|
2389
2416
|
type: ['boolean', 'string'],
|
|
2390
2417
|
enum: [true, 'active', false],
|
|
2391
2418
|
enumDescriptions: [
|
|
2392
|
-
( localize(
|
|
2393
|
-
( localize(
|
|
2394
|
-
( localize(
|
|
2419
|
+
( localize(417, "Enables bracket pair guides.")),
|
|
2420
|
+
( localize(418, "Enables bracket pair guides only for the active bracket pair.")),
|
|
2421
|
+
( localize(419, "Disables bracket pair guides.")),
|
|
2395
2422
|
],
|
|
2396
2423
|
default: defaults.bracketPairs,
|
|
2397
|
-
description: ( localize(
|
|
2424
|
+
description: ( localize(420, "Controls whether bracket pair guides are enabled or not."))
|
|
2398
2425
|
},
|
|
2399
2426
|
'editor.guides.bracketPairsHorizontal': {
|
|
2400
2427
|
type: ['boolean', 'string'],
|
|
2401
2428
|
enum: [true, 'active', false],
|
|
2402
2429
|
enumDescriptions: [
|
|
2403
2430
|
( localize(
|
|
2404
|
-
|
|
2431
|
+
421,
|
|
2405
2432
|
"Enables horizontal guides as addition to vertical bracket pair guides."
|
|
2406
2433
|
)),
|
|
2407
|
-
( localize(
|
|
2408
|
-
( localize(
|
|
2434
|
+
( localize(422, "Enables horizontal guides only for the active bracket pair.")),
|
|
2435
|
+
( localize(423, "Disables horizontal bracket pair guides.")),
|
|
2409
2436
|
],
|
|
2410
2437
|
default: defaults.bracketPairsHorizontal,
|
|
2411
|
-
description: ( localize(
|
|
2438
|
+
description: ( localize(424, "Controls whether horizontal bracket pair guides are enabled or not."))
|
|
2412
2439
|
},
|
|
2413
2440
|
'editor.guides.highlightActiveBracketPair': {
|
|
2414
2441
|
type: 'boolean',
|
|
2415
2442
|
default: defaults.highlightActiveBracketPair,
|
|
2416
2443
|
description: ( localize(
|
|
2417
|
-
|
|
2444
|
+
425,
|
|
2418
2445
|
"Controls whether the editor should highlight the active bracket pair."
|
|
2419
2446
|
))
|
|
2420
2447
|
},
|
|
2421
2448
|
'editor.guides.indentation': {
|
|
2422
2449
|
type: 'boolean',
|
|
2423
2450
|
default: defaults.indentation,
|
|
2424
|
-
description: ( localize(
|
|
2451
|
+
description: ( localize(426, "Controls whether the editor should render indent guides."))
|
|
2425
2452
|
},
|
|
2426
2453
|
'editor.guides.highlightActiveIndentation': {
|
|
2427
2454
|
type: ['boolean', 'string'],
|
|
2428
2455
|
enum: [true, 'always', false],
|
|
2429
2456
|
enumDescriptions: [
|
|
2430
|
-
( localize(
|
|
2457
|
+
( localize(427, "Highlights the active indent guide.")),
|
|
2431
2458
|
( localize(
|
|
2432
|
-
|
|
2459
|
+
428,
|
|
2433
2460
|
"Highlights the active indent guide even if bracket guides are highlighted."
|
|
2434
2461
|
)),
|
|
2435
|
-
( localize(
|
|
2462
|
+
( localize(429, "Do not highlight the active indent guide.")),
|
|
2436
2463
|
],
|
|
2437
2464
|
default: defaults.highlightActiveIndentation,
|
|
2438
2465
|
description: ( localize(
|
|
2439
|
-
|
|
2466
|
+
430,
|
|
2440
2467
|
"Controls whether the editor should highlight the active indent guide."
|
|
2441
2468
|
))
|
|
2442
2469
|
}
|
|
@@ -2512,12 +2539,12 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2512
2539
|
type: 'string',
|
|
2513
2540
|
enum: ['insert', 'replace'],
|
|
2514
2541
|
enumDescriptions: [
|
|
2515
|
-
( localize(
|
|
2516
|
-
( localize(
|
|
2542
|
+
( localize(431, "Insert suggestion without overwriting text right of the cursor.")),
|
|
2543
|
+
( localize(432, "Insert suggestion and overwrite text right of the cursor.")),
|
|
2517
2544
|
],
|
|
2518
2545
|
default: defaults.insertMode,
|
|
2519
2546
|
description: ( localize(
|
|
2520
|
-
|
|
2547
|
+
433,
|
|
2521
2548
|
"Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."
|
|
2522
2549
|
))
|
|
2523
2550
|
},
|
|
@@ -2525,7 +2552,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2525
2552
|
type: 'boolean',
|
|
2526
2553
|
default: defaults.filterGraceful,
|
|
2527
2554
|
description: ( localize(
|
|
2528
|
-
|
|
2555
|
+
434,
|
|
2529
2556
|
"Controls whether filtering and sorting suggestions accounts for small typos."
|
|
2530
2557
|
))
|
|
2531
2558
|
},
|
|
@@ -2533,7 +2560,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2533
2560
|
type: 'boolean',
|
|
2534
2561
|
default: defaults.localityBonus,
|
|
2535
2562
|
description: ( localize(
|
|
2536
|
-
|
|
2563
|
+
435,
|
|
2537
2564
|
"Controls whether sorting favors words that appear close to the cursor."
|
|
2538
2565
|
))
|
|
2539
2566
|
},
|
|
@@ -2541,7 +2568,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2541
2568
|
type: 'boolean',
|
|
2542
2569
|
default: defaults.shareSuggestSelections,
|
|
2543
2570
|
markdownDescription: ( localize(
|
|
2544
|
-
|
|
2571
|
+
436,
|
|
2545
2572
|
"Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."
|
|
2546
2573
|
))
|
|
2547
2574
|
},
|
|
@@ -2550,22 +2577,22 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2550
2577
|
enum: ['always', 'never', 'whenTriggerCharacter', 'whenQuickSuggestion'],
|
|
2551
2578
|
enumDescriptions: [
|
|
2552
2579
|
( localize(
|
|
2553
|
-
|
|
2580
|
+
437,
|
|
2554
2581
|
"Always select a suggestion when automatically triggering IntelliSense."
|
|
2555
2582
|
)),
|
|
2556
2583
|
( localize(
|
|
2557
|
-
|
|
2584
|
+
438,
|
|
2558
2585
|
"Never select a suggestion when automatically triggering IntelliSense."
|
|
2559
2586
|
)),
|
|
2560
2587
|
( localize(
|
|
2561
|
-
|
|
2588
|
+
439,
|
|
2562
2589
|
"Select a suggestion only when triggering IntelliSense from a trigger character."
|
|
2563
2590
|
)),
|
|
2564
|
-
( localize(
|
|
2591
|
+
( localize(440, "Select a suggestion only when triggering IntelliSense as you type.")),
|
|
2565
2592
|
],
|
|
2566
2593
|
default: defaults.selectionMode,
|
|
2567
2594
|
markdownDescription: ( localize(
|
|
2568
|
-
|
|
2595
|
+
441,
|
|
2569
2596
|
"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`.",
|
|
2570
2597
|
'`#editor.quickSuggestions#`',
|
|
2571
2598
|
'`#editor.suggestOnTriggerCharacters#`'
|
|
@@ -2574,197 +2601,197 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2574
2601
|
'editor.suggest.snippetsPreventQuickSuggestions': {
|
|
2575
2602
|
type: 'boolean',
|
|
2576
2603
|
default: defaults.snippetsPreventQuickSuggestions,
|
|
2577
|
-
description: ( localize(
|
|
2604
|
+
description: ( localize(442, "Controls whether an active snippet prevents quick suggestions."))
|
|
2578
2605
|
},
|
|
2579
2606
|
'editor.suggest.showIcons': {
|
|
2580
2607
|
type: 'boolean',
|
|
2581
2608
|
default: defaults.showIcons,
|
|
2582
|
-
description: ( localize(
|
|
2609
|
+
description: ( localize(443, "Controls whether to show or hide icons in suggestions."))
|
|
2583
2610
|
},
|
|
2584
2611
|
'editor.suggest.showStatusBar': {
|
|
2585
2612
|
type: 'boolean',
|
|
2586
2613
|
default: defaults.showStatusBar,
|
|
2587
2614
|
description: ( localize(
|
|
2588
|
-
|
|
2615
|
+
444,
|
|
2589
2616
|
"Controls the visibility of the status bar at the bottom of the suggest widget."
|
|
2590
2617
|
))
|
|
2591
2618
|
},
|
|
2592
2619
|
'editor.suggest.preview': {
|
|
2593
2620
|
type: 'boolean',
|
|
2594
2621
|
default: defaults.preview,
|
|
2595
|
-
description: ( localize(
|
|
2622
|
+
description: ( localize(445, "Controls whether to preview the suggestion outcome in the editor."))
|
|
2596
2623
|
},
|
|
2597
2624
|
'editor.suggest.showInlineDetails': {
|
|
2598
2625
|
type: 'boolean',
|
|
2599
2626
|
default: defaults.showInlineDetails,
|
|
2600
2627
|
description: ( localize(
|
|
2601
|
-
|
|
2628
|
+
446,
|
|
2602
2629
|
"Controls whether suggest details show inline with the label or only in the details widget."
|
|
2603
2630
|
))
|
|
2604
2631
|
},
|
|
2605
2632
|
'editor.suggest.maxVisibleSuggestions': {
|
|
2606
2633
|
type: 'number',
|
|
2607
|
-
deprecationMessage: ( localize(
|
|
2634
|
+
deprecationMessage: ( localize(447, "This setting is deprecated. The suggest widget can now be resized.")),
|
|
2608
2635
|
},
|
|
2609
2636
|
'editor.suggest.filteredTypes': {
|
|
2610
2637
|
type: 'object',
|
|
2611
2638
|
deprecationMessage: ( localize(
|
|
2612
|
-
|
|
2639
|
+
448,
|
|
2613
2640
|
"This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead."
|
|
2614
2641
|
))
|
|
2615
2642
|
},
|
|
2616
2643
|
'editor.suggest.showMethods': {
|
|
2617
2644
|
type: 'boolean',
|
|
2618
2645
|
default: true,
|
|
2619
|
-
markdownDescription: ( localize(
|
|
2646
|
+
markdownDescription: ( localize(449, "When enabled IntelliSense shows `method`-suggestions."))
|
|
2620
2647
|
},
|
|
2621
2648
|
'editor.suggest.showFunctions': {
|
|
2622
2649
|
type: 'boolean',
|
|
2623
2650
|
default: true,
|
|
2624
|
-
markdownDescription: ( localize(
|
|
2651
|
+
markdownDescription: ( localize(450, "When enabled IntelliSense shows `function`-suggestions."))
|
|
2625
2652
|
},
|
|
2626
2653
|
'editor.suggest.showConstructors': {
|
|
2627
2654
|
type: 'boolean',
|
|
2628
2655
|
default: true,
|
|
2629
|
-
markdownDescription: ( localize(
|
|
2656
|
+
markdownDescription: ( localize(451, "When enabled IntelliSense shows `constructor`-suggestions."))
|
|
2630
2657
|
},
|
|
2631
2658
|
'editor.suggest.showDeprecated': {
|
|
2632
2659
|
type: 'boolean',
|
|
2633
2660
|
default: true,
|
|
2634
|
-
markdownDescription: ( localize(
|
|
2661
|
+
markdownDescription: ( localize(452, "When enabled IntelliSense shows `deprecated`-suggestions."))
|
|
2635
2662
|
},
|
|
2636
2663
|
'editor.suggest.matchOnWordStartOnly': {
|
|
2637
2664
|
type: 'boolean',
|
|
2638
2665
|
default: true,
|
|
2639
2666
|
markdownDescription: ( localize(
|
|
2640
|
-
|
|
2667
|
+
453,
|
|
2641
2668
|
"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."
|
|
2642
2669
|
))
|
|
2643
2670
|
},
|
|
2644
2671
|
'editor.suggest.showFields': {
|
|
2645
2672
|
type: 'boolean',
|
|
2646
2673
|
default: true,
|
|
2647
|
-
markdownDescription: ( localize(
|
|
2674
|
+
markdownDescription: ( localize(454, "When enabled IntelliSense shows `field`-suggestions."))
|
|
2648
2675
|
},
|
|
2649
2676
|
'editor.suggest.showVariables': {
|
|
2650
2677
|
type: 'boolean',
|
|
2651
2678
|
default: true,
|
|
2652
|
-
markdownDescription: ( localize(
|
|
2679
|
+
markdownDescription: ( localize(455, "When enabled IntelliSense shows `variable`-suggestions."))
|
|
2653
2680
|
},
|
|
2654
2681
|
'editor.suggest.showClasses': {
|
|
2655
2682
|
type: 'boolean',
|
|
2656
2683
|
default: true,
|
|
2657
|
-
markdownDescription: ( localize(
|
|
2684
|
+
markdownDescription: ( localize(456, "When enabled IntelliSense shows `class`-suggestions."))
|
|
2658
2685
|
},
|
|
2659
2686
|
'editor.suggest.showStructs': {
|
|
2660
2687
|
type: 'boolean',
|
|
2661
2688
|
default: true,
|
|
2662
|
-
markdownDescription: ( localize(
|
|
2689
|
+
markdownDescription: ( localize(457, "When enabled IntelliSense shows `struct`-suggestions."))
|
|
2663
2690
|
},
|
|
2664
2691
|
'editor.suggest.showInterfaces': {
|
|
2665
2692
|
type: 'boolean',
|
|
2666
2693
|
default: true,
|
|
2667
|
-
markdownDescription: ( localize(
|
|
2694
|
+
markdownDescription: ( localize(458, "When enabled IntelliSense shows `interface`-suggestions."))
|
|
2668
2695
|
},
|
|
2669
2696
|
'editor.suggest.showModules': {
|
|
2670
2697
|
type: 'boolean',
|
|
2671
2698
|
default: true,
|
|
2672
|
-
markdownDescription: ( localize(
|
|
2699
|
+
markdownDescription: ( localize(459, "When enabled IntelliSense shows `module`-suggestions."))
|
|
2673
2700
|
},
|
|
2674
2701
|
'editor.suggest.showProperties': {
|
|
2675
2702
|
type: 'boolean',
|
|
2676
2703
|
default: true,
|
|
2677
|
-
markdownDescription: ( localize(
|
|
2704
|
+
markdownDescription: ( localize(460, "When enabled IntelliSense shows `property`-suggestions."))
|
|
2678
2705
|
},
|
|
2679
2706
|
'editor.suggest.showEvents': {
|
|
2680
2707
|
type: 'boolean',
|
|
2681
2708
|
default: true,
|
|
2682
|
-
markdownDescription: ( localize(
|
|
2709
|
+
markdownDescription: ( localize(461, "When enabled IntelliSense shows `event`-suggestions."))
|
|
2683
2710
|
},
|
|
2684
2711
|
'editor.suggest.showOperators': {
|
|
2685
2712
|
type: 'boolean',
|
|
2686
2713
|
default: true,
|
|
2687
|
-
markdownDescription: ( localize(
|
|
2714
|
+
markdownDescription: ( localize(462, "When enabled IntelliSense shows `operator`-suggestions."))
|
|
2688
2715
|
},
|
|
2689
2716
|
'editor.suggest.showUnits': {
|
|
2690
2717
|
type: 'boolean',
|
|
2691
2718
|
default: true,
|
|
2692
|
-
markdownDescription: ( localize(
|
|
2719
|
+
markdownDescription: ( localize(463, "When enabled IntelliSense shows `unit`-suggestions."))
|
|
2693
2720
|
},
|
|
2694
2721
|
'editor.suggest.showValues': {
|
|
2695
2722
|
type: 'boolean',
|
|
2696
2723
|
default: true,
|
|
2697
|
-
markdownDescription: ( localize(
|
|
2724
|
+
markdownDescription: ( localize(464, "When enabled IntelliSense shows `value`-suggestions."))
|
|
2698
2725
|
},
|
|
2699
2726
|
'editor.suggest.showConstants': {
|
|
2700
2727
|
type: 'boolean',
|
|
2701
2728
|
default: true,
|
|
2702
|
-
markdownDescription: ( localize(
|
|
2729
|
+
markdownDescription: ( localize(465, "When enabled IntelliSense shows `constant`-suggestions."))
|
|
2703
2730
|
},
|
|
2704
2731
|
'editor.suggest.showEnums': {
|
|
2705
2732
|
type: 'boolean',
|
|
2706
2733
|
default: true,
|
|
2707
|
-
markdownDescription: ( localize(
|
|
2734
|
+
markdownDescription: ( localize(466, "When enabled IntelliSense shows `enum`-suggestions."))
|
|
2708
2735
|
},
|
|
2709
2736
|
'editor.suggest.showEnumMembers': {
|
|
2710
2737
|
type: 'boolean',
|
|
2711
2738
|
default: true,
|
|
2712
|
-
markdownDescription: ( localize(
|
|
2739
|
+
markdownDescription: ( localize(467, "When enabled IntelliSense shows `enumMember`-suggestions."))
|
|
2713
2740
|
},
|
|
2714
2741
|
'editor.suggest.showKeywords': {
|
|
2715
2742
|
type: 'boolean',
|
|
2716
2743
|
default: true,
|
|
2717
|
-
markdownDescription: ( localize(
|
|
2744
|
+
markdownDescription: ( localize(468, "When enabled IntelliSense shows `keyword`-suggestions."))
|
|
2718
2745
|
},
|
|
2719
2746
|
'editor.suggest.showWords': {
|
|
2720
2747
|
type: 'boolean',
|
|
2721
2748
|
default: true,
|
|
2722
|
-
markdownDescription: ( localize(
|
|
2749
|
+
markdownDescription: ( localize(469, "When enabled IntelliSense shows `text`-suggestions."))
|
|
2723
2750
|
},
|
|
2724
2751
|
'editor.suggest.showColors': {
|
|
2725
2752
|
type: 'boolean',
|
|
2726
2753
|
default: true,
|
|
2727
|
-
markdownDescription: ( localize(
|
|
2754
|
+
markdownDescription: ( localize(470, "When enabled IntelliSense shows `color`-suggestions."))
|
|
2728
2755
|
},
|
|
2729
2756
|
'editor.suggest.showFiles': {
|
|
2730
2757
|
type: 'boolean',
|
|
2731
2758
|
default: true,
|
|
2732
|
-
markdownDescription: ( localize(
|
|
2759
|
+
markdownDescription: ( localize(471, "When enabled IntelliSense shows `file`-suggestions."))
|
|
2733
2760
|
},
|
|
2734
2761
|
'editor.suggest.showReferences': {
|
|
2735
2762
|
type: 'boolean',
|
|
2736
2763
|
default: true,
|
|
2737
|
-
markdownDescription: ( localize(
|
|
2764
|
+
markdownDescription: ( localize(472, "When enabled IntelliSense shows `reference`-suggestions."))
|
|
2738
2765
|
},
|
|
2739
2766
|
'editor.suggest.showCustomcolors': {
|
|
2740
2767
|
type: 'boolean',
|
|
2741
2768
|
default: true,
|
|
2742
|
-
markdownDescription: ( localize(
|
|
2769
|
+
markdownDescription: ( localize(473, "When enabled IntelliSense shows `customcolor`-suggestions."))
|
|
2743
2770
|
},
|
|
2744
2771
|
'editor.suggest.showFolders': {
|
|
2745
2772
|
type: 'boolean',
|
|
2746
2773
|
default: true,
|
|
2747
|
-
markdownDescription: ( localize(
|
|
2774
|
+
markdownDescription: ( localize(474, "When enabled IntelliSense shows `folder`-suggestions."))
|
|
2748
2775
|
},
|
|
2749
2776
|
'editor.suggest.showTypeParameters': {
|
|
2750
2777
|
type: 'boolean',
|
|
2751
2778
|
default: true,
|
|
2752
|
-
markdownDescription: ( localize(
|
|
2779
|
+
markdownDescription: ( localize(475, "When enabled IntelliSense shows `typeParameter`-suggestions."))
|
|
2753
2780
|
},
|
|
2754
2781
|
'editor.suggest.showSnippets': {
|
|
2755
2782
|
type: 'boolean',
|
|
2756
2783
|
default: true,
|
|
2757
|
-
markdownDescription: ( localize(
|
|
2784
|
+
markdownDescription: ( localize(476, "When enabled IntelliSense shows `snippet`-suggestions."))
|
|
2758
2785
|
},
|
|
2759
2786
|
'editor.suggest.showUsers': {
|
|
2760
2787
|
type: 'boolean',
|
|
2761
2788
|
default: true,
|
|
2762
|
-
markdownDescription: ( localize(
|
|
2789
|
+
markdownDescription: ( localize(477, "When enabled IntelliSense shows `user`-suggestions."))
|
|
2763
2790
|
},
|
|
2764
2791
|
'editor.suggest.showIssues': {
|
|
2765
2792
|
type: 'boolean',
|
|
2766
2793
|
default: true,
|
|
2767
|
-
markdownDescription: ( localize(
|
|
2794
|
+
markdownDescription: ( localize(478, "When enabled IntelliSense shows `issues`-suggestions."))
|
|
2768
2795
|
}
|
|
2769
2796
|
});
|
|
2770
2797
|
}
|
|
@@ -2824,13 +2851,13 @@ class SmartSelect extends BaseEditorOption {
|
|
|
2824
2851
|
selectSubwords: true,
|
|
2825
2852
|
}, {
|
|
2826
2853
|
'editor.smartSelect.selectLeadingAndTrailingWhitespace': {
|
|
2827
|
-
description: ( localize(
|
|
2854
|
+
description: ( localize(479, "Whether leading and trailing whitespace should always be selected.")),
|
|
2828
2855
|
default: true,
|
|
2829
2856
|
type: 'boolean'
|
|
2830
2857
|
},
|
|
2831
2858
|
'editor.smartSelect.selectSubwords': {
|
|
2832
2859
|
description: ( localize(
|
|
2833
|
-
|
|
2860
|
+
480,
|
|
2834
2861
|
"Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."
|
|
2835
2862
|
)),
|
|
2836
2863
|
default: true,
|
|
@@ -2863,7 +2890,7 @@ class WordSegmenterLocales extends BaseEditorOption {
|
|
|
2863
2890
|
}
|
|
2864
2891
|
],
|
|
2865
2892
|
description: ( localize(
|
|
2866
|
-
|
|
2893
|
+
481,
|
|
2867
2894
|
"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.)."
|
|
2868
2895
|
)),
|
|
2869
2896
|
type: 'array',
|
|
@@ -2909,12 +2936,12 @@ class WrappingIndentOption extends BaseEditorOption {
|
|
|
2909
2936
|
type: 'string',
|
|
2910
2937
|
enum: ['none', 'same', 'indent', 'deepIndent'],
|
|
2911
2938
|
enumDescriptions: [
|
|
2912
|
-
( localize(
|
|
2913
|
-
( localize(
|
|
2914
|
-
( localize(
|
|
2915
|
-
( localize(
|
|
2939
|
+
( localize(482, "No indentation. Wrapped lines begin at column 1.")),
|
|
2940
|
+
( localize(483, "Wrapped lines get the same indentation as the parent.")),
|
|
2941
|
+
( localize(484, "Wrapped lines get +1 indentation toward the parent.")),
|
|
2942
|
+
( localize(485, "Wrapped lines get +2 indentation toward the parent.")),
|
|
2916
2943
|
],
|
|
2917
|
-
description: ( localize(
|
|
2944
|
+
description: ( localize(486, "Controls the indentation of wrapped lines.")),
|
|
2918
2945
|
default: 'same'
|
|
2919
2946
|
}
|
|
2920
2947
|
});
|
|
@@ -2958,14 +2985,14 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
2958
2985
|
type: 'boolean',
|
|
2959
2986
|
default: defaults.enabled,
|
|
2960
2987
|
markdownDescription: ( localize(
|
|
2961
|
-
|
|
2988
|
+
487,
|
|
2962
2989
|
"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)."
|
|
2963
2990
|
)),
|
|
2964
2991
|
},
|
|
2965
2992
|
'editor.dropIntoEditor.showDropSelector': {
|
|
2966
2993
|
type: 'string',
|
|
2967
2994
|
markdownDescription: ( localize(
|
|
2968
|
-
|
|
2995
|
+
488,
|
|
2969
2996
|
"Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped."
|
|
2970
2997
|
)),
|
|
2971
2998
|
enum: [
|
|
@@ -2974,11 +3001,11 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
2974
3001
|
],
|
|
2975
3002
|
enumDescriptions: [
|
|
2976
3003
|
( localize(
|
|
2977
|
-
|
|
3004
|
+
489,
|
|
2978
3005
|
"Show the drop selector widget after a file is dropped into the editor."
|
|
2979
3006
|
)),
|
|
2980
3007
|
( localize(
|
|
2981
|
-
|
|
3008
|
+
490,
|
|
2982
3009
|
"Never show the drop selector widget. Instead the default drop provider is always used."
|
|
2983
3010
|
)),
|
|
2984
3011
|
],
|
|
@@ -3004,12 +3031,12 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
3004
3031
|
'editor.pasteAs.enabled': {
|
|
3005
3032
|
type: 'boolean',
|
|
3006
3033
|
default: defaults.enabled,
|
|
3007
|
-
markdownDescription: ( localize(
|
|
3034
|
+
markdownDescription: ( localize(491, "Controls whether you can paste content in different ways.")),
|
|
3008
3035
|
},
|
|
3009
3036
|
'editor.pasteAs.showPasteSelector': {
|
|
3010
3037
|
type: 'string',
|
|
3011
3038
|
markdownDescription: ( localize(
|
|
3012
|
-
|
|
3039
|
+
492,
|
|
3013
3040
|
"Controls if a widget is shown when pasting content in to the editor. This widget lets you control how the file is pasted."
|
|
3014
3041
|
)),
|
|
3015
3042
|
enum: [
|
|
@@ -3018,11 +3045,11 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
3018
3045
|
],
|
|
3019
3046
|
enumDescriptions: [
|
|
3020
3047
|
( localize(
|
|
3021
|
-
|
|
3048
|
+
493,
|
|
3022
3049
|
"Show the paste selector widget after content is pasted into the editor."
|
|
3023
3050
|
)),
|
|
3024
3051
|
( localize(
|
|
3025
|
-
|
|
3052
|
+
494,
|
|
3026
3053
|
"Never show the paste selector widget. Instead the default pasting behavior is always used."
|
|
3027
3054
|
)),
|
|
3028
3055
|
],
|
|
@@ -3237,7 +3264,7 @@ const EditorOptions = {
|
|
|
3237
3264
|
'acceptSuggestionOnCommitCharacter',
|
|
3238
3265
|
true,
|
|
3239
3266
|
{ markdownDescription: ( localize(
|
|
3240
|
-
|
|
3267
|
+
495,
|
|
3241
3268
|
"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."
|
|
3242
3269
|
)) }
|
|
3243
3270
|
))),
|
|
@@ -3250,13 +3277,13 @@ const EditorOptions = {
|
|
|
3250
3277
|
markdownEnumDescriptions: [
|
|
3251
3278
|
'',
|
|
3252
3279
|
( localize(
|
|
3253
|
-
|
|
3280
|
+
496,
|
|
3254
3281
|
"Only accept a suggestion with `Enter` when it makes a textual change."
|
|
3255
3282
|
)),
|
|
3256
3283
|
''
|
|
3257
3284
|
],
|
|
3258
3285
|
markdownDescription: ( localize(
|
|
3259
|
-
|
|
3286
|
+
497,
|
|
3260
3287
|
"Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions."
|
|
3261
3288
|
))
|
|
3262
3289
|
}
|
|
@@ -3270,7 +3297,7 @@ const EditorOptions = {
|
|
|
3270
3297
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3271
3298
|
{
|
|
3272
3299
|
description: ( localize(
|
|
3273
|
-
|
|
3300
|
+
498,
|
|
3274
3301
|
"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."
|
|
3275
3302
|
)),
|
|
3276
3303
|
tags: ['accessibility']
|
|
@@ -3279,12 +3306,12 @@ const EditorOptions = {
|
|
|
3279
3306
|
allowOverflow: register(( new EditorBooleanOption(EditorOption.allowOverflow, 'allowOverflow', true))),
|
|
3280
3307
|
allowVariableLineHeights: register(( new EditorBooleanOption(EditorOption.allowVariableLineHeights, 'allowVariableLineHeights', true, {
|
|
3281
3308
|
description: ( localize(
|
|
3282
|
-
|
|
3309
|
+
499,
|
|
3283
3310
|
"Controls whether to allow using variable line heights in the editor."
|
|
3284
3311
|
))
|
|
3285
3312
|
}))),
|
|
3286
3313
|
allowVariableFonts: register(( new EditorBooleanOption(EditorOption.allowVariableFonts, 'allowVariableFonts', true, {
|
|
3287
|
-
description: ( localize(
|
|
3314
|
+
description: ( localize(500, "Controls whether to allow using variable fonts in the editor."))
|
|
3288
3315
|
}))),
|
|
3289
3316
|
allowVariableFontsInAccessibilityMode: register(( new EditorBooleanOption(
|
|
3290
3317
|
EditorOption.allowVariableFontsInAccessibilityMode,
|
|
@@ -3292,13 +3319,13 @@ const EditorOptions = {
|
|
|
3292
3319
|
false,
|
|
3293
3320
|
{
|
|
3294
3321
|
description: ( localize(
|
|
3295
|
-
|
|
3322
|
+
501,
|
|
3296
3323
|
"Controls whether to allow using variable fonts in the editor in the accessibility mode."
|
|
3297
3324
|
)),
|
|
3298
3325
|
tags: ['accessibility']
|
|
3299
3326
|
}
|
|
3300
3327
|
))),
|
|
3301
|
-
ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, 'ariaLabel', ( localize(
|
|
3328
|
+
ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, 'ariaLabel', ( localize(502, "Editor content"))))),
|
|
3302
3329
|
ariaRequired: register(( new EditorBooleanOption(EditorOption.ariaRequired, 'ariaRequired', false, undefined))),
|
|
3303
3330
|
screenReaderAnnounceInlineSuggestion: register(( new EditorBooleanOption(
|
|
3304
3331
|
EditorOption.screenReaderAnnounceInlineSuggestion,
|
|
@@ -3306,7 +3333,7 @@ const EditorOptions = {
|
|
|
3306
3333
|
true,
|
|
3307
3334
|
{
|
|
3308
3335
|
description: ( localize(
|
|
3309
|
-
|
|
3336
|
+
503,
|
|
3310
3337
|
"Control whether inline suggestions are announced by a screen reader."
|
|
3311
3338
|
)),
|
|
3312
3339
|
tags: ['accessibility']
|
|
@@ -3321,17 +3348,17 @@ const EditorOptions = {
|
|
|
3321
3348
|
enumDescriptions: [
|
|
3322
3349
|
'',
|
|
3323
3350
|
( localize(
|
|
3324
|
-
|
|
3351
|
+
504,
|
|
3325
3352
|
"Use language configurations to determine when to autoclose brackets."
|
|
3326
3353
|
)),
|
|
3327
3354
|
( localize(
|
|
3328
|
-
|
|
3355
|
+
505,
|
|
3329
3356
|
"Autoclose brackets only when the cursor is to the left of whitespace."
|
|
3330
3357
|
)),
|
|
3331
3358
|
'',
|
|
3332
3359
|
],
|
|
3333
3360
|
description: ( localize(
|
|
3334
|
-
|
|
3361
|
+
506,
|
|
3335
3362
|
"Controls whether the editor should automatically close brackets after the user adds an opening bracket."
|
|
3336
3363
|
))
|
|
3337
3364
|
}
|
|
@@ -3345,17 +3372,17 @@ const EditorOptions = {
|
|
|
3345
3372
|
enumDescriptions: [
|
|
3346
3373
|
'',
|
|
3347
3374
|
( localize(
|
|
3348
|
-
|
|
3375
|
+
507,
|
|
3349
3376
|
"Use language configurations to determine when to autoclose comments."
|
|
3350
3377
|
)),
|
|
3351
3378
|
( localize(
|
|
3352
|
-
|
|
3379
|
+
508,
|
|
3353
3380
|
"Autoclose comments only when the cursor is to the left of whitespace."
|
|
3354
3381
|
)),
|
|
3355
3382
|
'',
|
|
3356
3383
|
],
|
|
3357
3384
|
description: ( localize(
|
|
3358
|
-
|
|
3385
|
+
509,
|
|
3359
3386
|
"Controls whether the editor should automatically close comments after the user adds an opening comment."
|
|
3360
3387
|
))
|
|
3361
3388
|
}
|
|
@@ -3369,13 +3396,13 @@ const EditorOptions = {
|
|
|
3369
3396
|
enumDescriptions: [
|
|
3370
3397
|
'',
|
|
3371
3398
|
( localize(
|
|
3372
|
-
|
|
3399
|
+
510,
|
|
3373
3400
|
"Remove adjacent closing quotes or brackets only if they were automatically inserted."
|
|
3374
3401
|
)),
|
|
3375
3402
|
'',
|
|
3376
3403
|
],
|
|
3377
3404
|
description: ( localize(
|
|
3378
|
-
|
|
3405
|
+
511,
|
|
3379
3406
|
"Controls whether the editor should remove adjacent closing quotes or brackets when deleting."
|
|
3380
3407
|
))
|
|
3381
3408
|
}
|
|
@@ -3389,13 +3416,13 @@ const EditorOptions = {
|
|
|
3389
3416
|
enumDescriptions: [
|
|
3390
3417
|
'',
|
|
3391
3418
|
( localize(
|
|
3392
|
-
|
|
3419
|
+
512,
|
|
3393
3420
|
"Type over closing quotes or brackets only if they were automatically inserted."
|
|
3394
3421
|
)),
|
|
3395
3422
|
'',
|
|
3396
3423
|
],
|
|
3397
3424
|
description: ( localize(
|
|
3398
|
-
|
|
3425
|
+
513,
|
|
3399
3426
|
"Controls whether the editor should type over closing quotes or brackets."
|
|
3400
3427
|
))
|
|
3401
3428
|
}
|
|
@@ -3408,12 +3435,12 @@ const EditorOptions = {
|
|
|
3408
3435
|
{
|
|
3409
3436
|
enumDescriptions: [
|
|
3410
3437
|
'',
|
|
3411
|
-
( localize(
|
|
3412
|
-
( localize(
|
|
3438
|
+
( localize(514, "Use language configurations to determine when to autoclose quotes.")),
|
|
3439
|
+
( localize(515, "Autoclose quotes only when the cursor is to the left of whitespace.")),
|
|
3413
3440
|
'',
|
|
3414
3441
|
],
|
|
3415
3442
|
description: ( localize(
|
|
3416
|
-
|
|
3443
|
+
516,
|
|
3417
3444
|
"Controls whether the editor should automatically close quotes after the user adds an opening quote."
|
|
3418
3445
|
))
|
|
3419
3446
|
}
|
|
@@ -3427,23 +3454,23 @@ const EditorOptions = {
|
|
|
3427
3454
|
_autoIndentFromString,
|
|
3428
3455
|
{
|
|
3429
3456
|
enumDescriptions: [
|
|
3430
|
-
( localize(
|
|
3431
|
-
( localize(
|
|
3457
|
+
( localize(517, "The editor will not insert indentation automatically.")),
|
|
3458
|
+
( localize(518, "The editor will keep the current line's indentation.")),
|
|
3432
3459
|
( localize(
|
|
3433
|
-
|
|
3460
|
+
519,
|
|
3434
3461
|
"The editor will keep the current line's indentation and honor language defined brackets."
|
|
3435
3462
|
)),
|
|
3436
3463
|
( localize(
|
|
3437
|
-
|
|
3464
|
+
520,
|
|
3438
3465
|
"The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages."
|
|
3439
3466
|
)),
|
|
3440
3467
|
( localize(
|
|
3441
|
-
|
|
3468
|
+
521,
|
|
3442
3469
|
"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."
|
|
3443
3470
|
)),
|
|
3444
3471
|
],
|
|
3445
3472
|
description: ( localize(
|
|
3446
|
-
|
|
3473
|
+
522,
|
|
3447
3474
|
"Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines."
|
|
3448
3475
|
))
|
|
3449
3476
|
}
|
|
@@ -3453,7 +3480,7 @@ const EditorOptions = {
|
|
|
3453
3480
|
'autoIndentOnPaste',
|
|
3454
3481
|
false,
|
|
3455
3482
|
{ description: ( localize(
|
|
3456
|
-
|
|
3483
|
+
523,
|
|
3457
3484
|
"Controls whether the editor should automatically auto-indent the pasted content."
|
|
3458
3485
|
)) }
|
|
3459
3486
|
))),
|
|
@@ -3462,7 +3489,7 @@ const EditorOptions = {
|
|
|
3462
3489
|
'autoIndentOnPasteWithinString',
|
|
3463
3490
|
true,
|
|
3464
3491
|
{ description: ( localize(
|
|
3465
|
-
|
|
3492
|
+
524,
|
|
3466
3493
|
"Controls whether the editor should automatically auto-indent the pasted content when pasted within a string. This takes effect when autoIndentOnPaste is true."
|
|
3467
3494
|
)) }
|
|
3468
3495
|
))),
|
|
@@ -3475,15 +3502,15 @@ const EditorOptions = {
|
|
|
3475
3502
|
{
|
|
3476
3503
|
enumDescriptions: [
|
|
3477
3504
|
( localize(
|
|
3478
|
-
|
|
3505
|
+
525,
|
|
3479
3506
|
"Use language configurations to determine when to automatically surround selections."
|
|
3480
3507
|
)),
|
|
3481
|
-
( localize(
|
|
3482
|
-
( localize(
|
|
3508
|
+
( localize(526, "Surround with quotes but not brackets.")),
|
|
3509
|
+
( localize(527, "Surround with brackets but not quotes.")),
|
|
3483
3510
|
''
|
|
3484
3511
|
],
|
|
3485
3512
|
description: ( localize(
|
|
3486
|
-
|
|
3513
|
+
528,
|
|
3487
3514
|
"Controls whether the editor should automatically surround selections when typing quotes or brackets."
|
|
3488
3515
|
))
|
|
3489
3516
|
}
|
|
@@ -3495,16 +3522,16 @@ const EditorOptions = {
|
|
|
3495
3522
|
'stickyTabStops',
|
|
3496
3523
|
false,
|
|
3497
3524
|
{ description: ( localize(
|
|
3498
|
-
|
|
3525
|
+
529,
|
|
3499
3526
|
"Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."
|
|
3500
3527
|
)) }
|
|
3501
3528
|
))),
|
|
3502
|
-
codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, 'codeLens', true, { description: ( localize(
|
|
3529
|
+
codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, 'codeLens', true, { description: ( localize(530, "Controls whether the editor shows CodeLens.")) }))),
|
|
3503
3530
|
codeLensFontFamily: register(( new EditorStringOption(
|
|
3504
3531
|
EditorOption.codeLensFontFamily,
|
|
3505
3532
|
'codeLensFontFamily',
|
|
3506
3533
|
'',
|
|
3507
|
-
{ description: ( localize(
|
|
3534
|
+
{ description: ( localize(531, "Controls the font family for CodeLens.")) }
|
|
3508
3535
|
))),
|
|
3509
3536
|
codeLensFontSize: register(( new EditorIntOption(EditorOption.codeLensFontSize, 'codeLensFontSize', 0, 0, 100, {
|
|
3510
3537
|
type: 'number',
|
|
@@ -3512,7 +3539,7 @@ const EditorOptions = {
|
|
|
3512
3539
|
minimum: 0,
|
|
3513
3540
|
maximum: 100,
|
|
3514
3541
|
markdownDescription: ( localize(
|
|
3515
|
-
|
|
3542
|
+
532,
|
|
3516
3543
|
"Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."
|
|
3517
3544
|
))
|
|
3518
3545
|
}))),
|
|
@@ -3521,7 +3548,7 @@ const EditorOptions = {
|
|
|
3521
3548
|
'colorDecorators',
|
|
3522
3549
|
true,
|
|
3523
3550
|
{ description: ( localize(
|
|
3524
|
-
|
|
3551
|
+
533,
|
|
3525
3552
|
"Controls whether the editor should render the inline color decorators and color picker."
|
|
3526
3553
|
)) }
|
|
3527
3554
|
))),
|
|
@@ -3533,14 +3560,14 @@ const EditorOptions = {
|
|
|
3533
3560
|
{
|
|
3534
3561
|
enumDescriptions: [
|
|
3535
3562
|
( localize(
|
|
3536
|
-
|
|
3563
|
+
534,
|
|
3537
3564
|
"Make the color picker appear both on click and hover of the color decorator"
|
|
3538
3565
|
)),
|
|
3539
|
-
( localize(
|
|
3540
|
-
( localize(
|
|
3566
|
+
( localize(535, "Make the color picker appear on hover of the color decorator")),
|
|
3567
|
+
( localize(536, "Make the color picker appear on click of the color decorator"))
|
|
3541
3568
|
],
|
|
3542
3569
|
description: ( localize(
|
|
3543
|
-
|
|
3570
|
+
537,
|
|
3544
3571
|
"Controls the condition to make a color picker appear from a color decorator."
|
|
3545
3572
|
))
|
|
3546
3573
|
}
|
|
@@ -3553,7 +3580,7 @@ const EditorOptions = {
|
|
|
3553
3580
|
1000000,
|
|
3554
3581
|
{
|
|
3555
3582
|
markdownDescription: ( localize(
|
|
3556
|
-
|
|
3583
|
+
538,
|
|
3557
3584
|
"Controls the max number of color decorators that can be rendered in an editor at once."
|
|
3558
3585
|
))
|
|
3559
3586
|
}
|
|
@@ -3563,7 +3590,7 @@ const EditorOptions = {
|
|
|
3563
3590
|
'columnSelection',
|
|
3564
3591
|
false,
|
|
3565
3592
|
{ description: ( localize(
|
|
3566
|
-
|
|
3593
|
+
539,
|
|
3567
3594
|
"Enable that the selection with the mouse and keys is doing column selection."
|
|
3568
3595
|
)) }
|
|
3569
3596
|
))),
|
|
@@ -3574,7 +3601,7 @@ const EditorOptions = {
|
|
|
3574
3601
|
'copyWithSyntaxHighlighting',
|
|
3575
3602
|
true,
|
|
3576
3603
|
{ description: ( localize(
|
|
3577
|
-
|
|
3604
|
+
540,
|
|
3578
3605
|
"Controls whether syntax highlighting should be copied into the clipboard."
|
|
3579
3606
|
)) }
|
|
3580
3607
|
))),
|
|
@@ -3585,7 +3612,7 @@ const EditorOptions = {
|
|
|
3585
3612
|
'blink',
|
|
3586
3613
|
['blink', 'smooth', 'phase', 'expand', 'solid'],
|
|
3587
3614
|
cursorBlinkingStyleFromString,
|
|
3588
|
-
{ description: ( localize(
|
|
3615
|
+
{ description: ( localize(541, "Control the cursor animation style.")) }
|
|
3589
3616
|
))),
|
|
3590
3617
|
cursorSmoothCaretAnimation: register(( new EditorStringEnumOption(
|
|
3591
3618
|
EditorOption.cursorSmoothCaretAnimation,
|
|
@@ -3594,14 +3621,14 @@ const EditorOptions = {
|
|
|
3594
3621
|
['off', 'explicit', 'on'],
|
|
3595
3622
|
{
|
|
3596
3623
|
enumDescriptions: [
|
|
3597
|
-
( localize(
|
|
3624
|
+
( localize(542, "Smooth caret animation is disabled.")),
|
|
3598
3625
|
( localize(
|
|
3599
|
-
|
|
3626
|
+
543,
|
|
3600
3627
|
"Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture."
|
|
3601
3628
|
)),
|
|
3602
|
-
( localize(
|
|
3629
|
+
( localize(544, "Smooth caret animation is always enabled."))
|
|
3603
3630
|
],
|
|
3604
|
-
description: ( localize(
|
|
3631
|
+
description: ( localize(545, "Controls whether the smooth caret animation should be enabled."))
|
|
3605
3632
|
}
|
|
3606
3633
|
))),
|
|
3607
3634
|
cursorStyle: register(( new EditorEnumOption(
|
|
@@ -3611,7 +3638,7 @@ const EditorOptions = {
|
|
|
3611
3638
|
'line',
|
|
3612
3639
|
['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'],
|
|
3613
3640
|
cursorStyleFromString,
|
|
3614
|
-
{ description: ( localize(
|
|
3641
|
+
{ description: ( localize(546, "Controls the cursor style in insert input mode.")) }
|
|
3615
3642
|
))),
|
|
3616
3643
|
overtypeCursorStyle: register(( new EditorEnumOption(
|
|
3617
3644
|
EditorOption.overtypeCursorStyle,
|
|
@@ -3620,7 +3647,7 @@ const EditorOptions = {
|
|
|
3620
3647
|
'block',
|
|
3621
3648
|
['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'],
|
|
3622
3649
|
cursorStyleFromString,
|
|
3623
|
-
{ description: ( localize(
|
|
3650
|
+
{ description: ( localize(547, "Controls the cursor style in overtype input mode.")) }
|
|
3624
3651
|
))),
|
|
3625
3652
|
cursorSurroundingLines: register(( new EditorIntOption(
|
|
3626
3653
|
EditorOption.cursorSurroundingLines,
|
|
@@ -3629,7 +3656,7 @@ const EditorOptions = {
|
|
|
3629
3656
|
0,
|
|
3630
3657
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3631
3658
|
{ description: ( localize(
|
|
3632
|
-
|
|
3659
|
+
548,
|
|
3633
3660
|
"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."
|
|
3634
3661
|
)) }
|
|
3635
3662
|
))),
|
|
@@ -3641,12 +3668,12 @@ const EditorOptions = {
|
|
|
3641
3668
|
{
|
|
3642
3669
|
enumDescriptions: [
|
|
3643
3670
|
( localize(
|
|
3644
|
-
|
|
3671
|
+
549,
|
|
3645
3672
|
"`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."
|
|
3646
3673
|
)),
|
|
3647
|
-
( localize(
|
|
3674
|
+
( localize(550, "`cursorSurroundingLines` is enforced always."))
|
|
3648
3675
|
],
|
|
3649
|
-
markdownDescription: ( localize(
|
|
3676
|
+
markdownDescription: ( localize(551, "Controls when `#editor.cursorSurroundingLines#` should be enforced."))
|
|
3650
3677
|
}
|
|
3651
3678
|
))),
|
|
3652
3679
|
cursorWidth: register(( new EditorIntOption(
|
|
@@ -3656,7 +3683,7 @@ const EditorOptions = {
|
|
|
3656
3683
|
0,
|
|
3657
3684
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3658
3685
|
{ markdownDescription: ( localize(
|
|
3659
|
-
|
|
3686
|
+
552,
|
|
3660
3687
|
"Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`."
|
|
3661
3688
|
)) }
|
|
3662
3689
|
))),
|
|
@@ -3667,7 +3694,7 @@ const EditorOptions = {
|
|
|
3667
3694
|
0,
|
|
3668
3695
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3669
3696
|
{ markdownDescription: ( localize(
|
|
3670
|
-
|
|
3697
|
+
553,
|
|
3671
3698
|
"Controls the height of the cursor when `#editor.cursorStyle#` is set to `line`. Cursor's max height depends on line height."
|
|
3672
3699
|
)) }
|
|
3673
3700
|
))),
|
|
@@ -3683,7 +3710,7 @@ const EditorOptions = {
|
|
|
3683
3710
|
'dragAndDrop',
|
|
3684
3711
|
true,
|
|
3685
3712
|
{ description: ( localize(
|
|
3686
|
-
|
|
3713
|
+
554,
|
|
3687
3714
|
"Controls whether the editor should allow moving selections via drag and drop."
|
|
3688
3715
|
)) }
|
|
3689
3716
|
))),
|
|
@@ -3691,7 +3718,7 @@ const EditorOptions = {
|
|
|
3691
3718
|
dropIntoEditor: register(( new EditorDropIntoEditor())),
|
|
3692
3719
|
editContext: register(( new EditorBooleanOption(EditorOption.editContext, 'editContext', true, {
|
|
3693
3720
|
description: ( localize(
|
|
3694
|
-
|
|
3721
|
+
555,
|
|
3695
3722
|
"Sets whether the EditContext API should be used instead of the text area to power input in the editor."
|
|
3696
3723
|
)),
|
|
3697
3724
|
included: isChrome || isEdge || isNative
|
|
@@ -3701,9 +3728,9 @@ const EditorOptions = {
|
|
|
3701
3728
|
'renderRichScreenReaderContent',
|
|
3702
3729
|
false,
|
|
3703
3730
|
{
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
"Whether to render rich screen reader content when the
|
|
3731
|
+
markdownDescription: ( localize(
|
|
3732
|
+
556,
|
|
3733
|
+
"Whether to render rich screen reader content when the `#editor.editContext#` setting is enabled."
|
|
3707
3734
|
)),
|
|
3708
3735
|
}
|
|
3709
3736
|
))),
|
|
@@ -3716,11 +3743,11 @@ const EditorOptions = {
|
|
|
3716
3743
|
{
|
|
3717
3744
|
tags: ['experimental'],
|
|
3718
3745
|
enumDescriptions: [
|
|
3719
|
-
( localize(
|
|
3720
|
-
( localize(
|
|
3746
|
+
( localize(557, "Use regular DOM-based rendering.")),
|
|
3747
|
+
( localize(558, "Use GPU acceleration.")),
|
|
3721
3748
|
],
|
|
3722
3749
|
description: ( localize(
|
|
3723
|
-
|
|
3750
|
+
559,
|
|
3724
3751
|
"Controls whether to use the experimental GPU acceleration to render the editor."
|
|
3725
3752
|
))
|
|
3726
3753
|
}
|
|
@@ -3732,12 +3759,12 @@ const EditorOptions = {
|
|
|
3732
3759
|
['svg', 'font', 'off'],
|
|
3733
3760
|
{
|
|
3734
3761
|
enumDescriptions: [
|
|
3735
|
-
( localize(
|
|
3736
|
-
( localize(
|
|
3737
|
-
( localize(
|
|
3762
|
+
( localize(560, "Use a new rendering method with svgs.")),
|
|
3763
|
+
( localize(561, "Use a new rendering method with font characters.")),
|
|
3764
|
+
( localize(562, "Use the stable rendering method.")),
|
|
3738
3765
|
],
|
|
3739
3766
|
description: ( localize(
|
|
3740
|
-
|
|
3767
|
+
563,
|
|
3741
3768
|
"Controls whether whitespace is rendered with a new, experimental method."
|
|
3742
3769
|
))
|
|
3743
3770
|
}
|
|
@@ -3748,11 +3775,11 @@ const EditorOptions = {
|
|
|
3748
3775
|
'fastScrollSensitivity',
|
|
3749
3776
|
5,
|
|
3750
3777
|
x => (x <= 0 ? 5 : x),
|
|
3751
|
-
{ markdownDescription: ( localize(
|
|
3778
|
+
{ markdownDescription: ( localize(564, "Scrolling speed multiplier when pressing `Alt`.")) }
|
|
3752
3779
|
))),
|
|
3753
3780
|
find: register(( new EditorFind())),
|
|
3754
3781
|
fixedOverflowWidgets: register(( new EditorBooleanOption(EditorOption.fixedOverflowWidgets, 'fixedOverflowWidgets', false))),
|
|
3755
|
-
folding: register(( new EditorBooleanOption(EditorOption.folding, 'folding', true, { description: ( localize(
|
|
3782
|
+
folding: register(( new EditorBooleanOption(EditorOption.folding, 'folding', true, { description: ( localize(565, "Controls whether the editor has code folding enabled.")) }))),
|
|
3756
3783
|
foldingStrategy: register(( new EditorStringEnumOption(
|
|
3757
3784
|
EditorOption.foldingStrategy,
|
|
3758
3785
|
'foldingStrategy',
|
|
@@ -3761,25 +3788,25 @@ const EditorOptions = {
|
|
|
3761
3788
|
{
|
|
3762
3789
|
enumDescriptions: [
|
|
3763
3790
|
( localize(
|
|
3764
|
-
|
|
3791
|
+
566,
|
|
3765
3792
|
"Use a language-specific folding strategy if available, else the indentation-based one."
|
|
3766
3793
|
)),
|
|
3767
|
-
( localize(
|
|
3794
|
+
( localize(567, "Use the indentation-based folding strategy.")),
|
|
3768
3795
|
],
|
|
3769
|
-
description: ( localize(
|
|
3796
|
+
description: ( localize(568, "Controls the strategy for computing folding ranges."))
|
|
3770
3797
|
}
|
|
3771
3798
|
))),
|
|
3772
3799
|
foldingHighlight: register(( new EditorBooleanOption(
|
|
3773
3800
|
EditorOption.foldingHighlight,
|
|
3774
3801
|
'foldingHighlight',
|
|
3775
3802
|
true,
|
|
3776
|
-
{ description: ( localize(
|
|
3803
|
+
{ description: ( localize(569, "Controls whether the editor should highlight folded ranges.")) }
|
|
3777
3804
|
))),
|
|
3778
3805
|
foldingImportsByDefault: register(( new EditorBooleanOption(
|
|
3779
3806
|
EditorOption.foldingImportsByDefault,
|
|
3780
3807
|
'foldingImportsByDefault',
|
|
3781
3808
|
false,
|
|
3782
|
-
{ description: ( localize(
|
|
3809
|
+
{ description: ( localize(570, "Controls whether the editor automatically collapses import ranges.")) }
|
|
3783
3810
|
))),
|
|
3784
3811
|
foldingMaximumRegions: register(( new EditorIntOption(
|
|
3785
3812
|
EditorOption.foldingMaximumRegions,
|
|
@@ -3788,7 +3815,7 @@ const EditorOptions = {
|
|
|
3788
3815
|
10,
|
|
3789
3816
|
65000,
|
|
3790
3817
|
{ description: ( localize(
|
|
3791
|
-
|
|
3818
|
+
571,
|
|
3792
3819
|
"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."
|
|
3793
3820
|
)) }
|
|
3794
3821
|
))),
|
|
@@ -3797,7 +3824,7 @@ const EditorOptions = {
|
|
|
3797
3824
|
'unfoldOnClickAfterEndOfLine',
|
|
3798
3825
|
false,
|
|
3799
3826
|
{ description: ( localize(
|
|
3800
|
-
|
|
3827
|
+
572,
|
|
3801
3828
|
"Controls whether clicking on the empty content after a folded line will unfold the line."
|
|
3802
3829
|
)) }
|
|
3803
3830
|
))),
|
|
@@ -3805,7 +3832,7 @@ const EditorOptions = {
|
|
|
3805
3832
|
EditorOption.fontFamily,
|
|
3806
3833
|
'fontFamily',
|
|
3807
3834
|
EDITOR_FONT_DEFAULTS.fontFamily,
|
|
3808
|
-
{ description: ( localize(
|
|
3835
|
+
{ description: ( localize(573, "Controls the font family.")) }
|
|
3809
3836
|
))),
|
|
3810
3837
|
fontInfo: register(( new EditorFontInfo())),
|
|
3811
3838
|
fontLigatures2: register(( new EditorFontLigatures())),
|
|
@@ -3817,7 +3844,7 @@ const EditorOptions = {
|
|
|
3817
3844
|
'formatOnPaste',
|
|
3818
3845
|
false,
|
|
3819
3846
|
{ description: ( localize(
|
|
3820
|
-
|
|
3847
|
+
574,
|
|
3821
3848
|
"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."
|
|
3822
3849
|
)) }
|
|
3823
3850
|
))),
|
|
@@ -3826,7 +3853,7 @@ const EditorOptions = {
|
|
|
3826
3853
|
'formatOnType',
|
|
3827
3854
|
false,
|
|
3828
3855
|
{ description: ( localize(
|
|
3829
|
-
|
|
3856
|
+
575,
|
|
3830
3857
|
"Controls whether the editor should automatically format the line after typing."
|
|
3831
3858
|
)) }
|
|
3832
3859
|
))),
|
|
@@ -3835,7 +3862,7 @@ const EditorOptions = {
|
|
|
3835
3862
|
'glyphMargin',
|
|
3836
3863
|
true,
|
|
3837
3864
|
{ description: ( localize(
|
|
3838
|
-
|
|
3865
|
+
576,
|
|
3839
3866
|
"Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."
|
|
3840
3867
|
)) }
|
|
3841
3868
|
))),
|
|
@@ -3844,7 +3871,7 @@ const EditorOptions = {
|
|
|
3844
3871
|
EditorOption.hideCursorInOverviewRuler,
|
|
3845
3872
|
'hideCursorInOverviewRuler',
|
|
3846
3873
|
false,
|
|
3847
|
-
{ description: ( localize(
|
|
3874
|
+
{ description: ( localize(577, "Controls whether the cursor should be hidden in the overview ruler.")) }
|
|
3848
3875
|
))),
|
|
3849
3876
|
hover: register(( new EditorHover())),
|
|
3850
3877
|
inDiffEditor: register(( new EditorBooleanOption(EditorOption.inDiffEditor, 'inDiffEditor', false))),
|
|
@@ -3852,14 +3879,14 @@ const EditorOptions = {
|
|
|
3852
3879
|
EditorOption.inertialScroll,
|
|
3853
3880
|
'inertialScroll',
|
|
3854
3881
|
false,
|
|
3855
|
-
{ description: ( localize(
|
|
3882
|
+
{ description: ( localize(578, "Make scrolling inertial - mostly useful with touchpad on linux.")) }
|
|
3856
3883
|
))),
|
|
3857
3884
|
letterSpacing: register(( new EditorFloatOption(
|
|
3858
3885
|
EditorOption.letterSpacing,
|
|
3859
3886
|
'letterSpacing',
|
|
3860
3887
|
EDITOR_FONT_DEFAULTS.letterSpacing,
|
|
3861
3888
|
x => EditorFloatOption.clamp(x, -5, 20),
|
|
3862
|
-
{ description: ( localize(
|
|
3889
|
+
{ description: ( localize(579, "Controls the letter spacing in pixels.")) }
|
|
3863
3890
|
))),
|
|
3864
3891
|
lightbulb: register(( new EditorLightbulb())),
|
|
3865
3892
|
lineDecorationsWidth: register(( new EditorLineDecorationsWidth())),
|
|
@@ -3871,12 +3898,12 @@ const EditorOptions = {
|
|
|
3871
3898
|
'linkedEditing',
|
|
3872
3899
|
false,
|
|
3873
3900
|
{ description: ( localize(
|
|
3874
|
-
|
|
3901
|
+
580,
|
|
3875
3902
|
"Controls whether the editor has linked editing enabled. Depending on the language, related symbols such as HTML tags, are updated while editing."
|
|
3876
3903
|
)) }
|
|
3877
3904
|
))),
|
|
3878
3905
|
links: register(( new EditorBooleanOption(EditorOption.links, 'links', true, { description: ( localize(
|
|
3879
|
-
|
|
3906
|
+
581,
|
|
3880
3907
|
"Controls whether the editor should detect links and make them clickable."
|
|
3881
3908
|
)) }))),
|
|
3882
3909
|
matchBrackets: register(( new EditorStringEnumOption(
|
|
@@ -3884,7 +3911,7 @@ const EditorOptions = {
|
|
|
3884
3911
|
'matchBrackets',
|
|
3885
3912
|
'always',
|
|
3886
3913
|
['always', 'near', 'never'],
|
|
3887
|
-
{ description: ( localize(
|
|
3914
|
+
{ description: ( localize(582, "Highlight matching brackets.")) }
|
|
3888
3915
|
))),
|
|
3889
3916
|
minimap: register(( new EditorMinimap())),
|
|
3890
3917
|
mouseStyle: register(( new EditorStringEnumOption(EditorOption.mouseStyle, 'mouseStyle', 'text', ['text', 'default', 'copy']))),
|
|
@@ -3894,18 +3921,18 @@ const EditorOptions = {
|
|
|
3894
3921
|
1,
|
|
3895
3922
|
x => (x === 0 ? 1 : x),
|
|
3896
3923
|
{ markdownDescription: ( localize(
|
|
3897
|
-
|
|
3924
|
+
583,
|
|
3898
3925
|
"A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."
|
|
3899
3926
|
)) }
|
|
3900
3927
|
))),
|
|
3901
3928
|
mouseWheelZoom: register(( new EditorBooleanOption(EditorOption.mouseWheelZoom, 'mouseWheelZoom', false, {
|
|
3902
3929
|
markdownDescription: isMacintosh
|
|
3903
3930
|
? ( localize(
|
|
3904
|
-
|
|
3931
|
+
584,
|
|
3905
3932
|
"Zoom the font of the editor when using mouse wheel and holding `Cmd`."
|
|
3906
3933
|
))
|
|
3907
3934
|
: ( localize(
|
|
3908
|
-
|
|
3935
|
+
585,
|
|
3909
3936
|
"Zoom the font of the editor when using mouse wheel and holding `Ctrl`."
|
|
3910
3937
|
))
|
|
3911
3938
|
}))),
|
|
@@ -3913,7 +3940,7 @@ const EditorOptions = {
|
|
|
3913
3940
|
EditorOption.multiCursorMergeOverlapping,
|
|
3914
3941
|
'multiCursorMergeOverlapping',
|
|
3915
3942
|
true,
|
|
3916
|
-
{ description: ( localize(
|
|
3943
|
+
{ description: ( localize(586, "Merge multiple cursors when they are overlapping.")) }
|
|
3917
3944
|
))),
|
|
3918
3945
|
multiCursorModifier: register(( new EditorEnumOption(
|
|
3919
3946
|
EditorOption.multiCursorModifier,
|
|
@@ -3924,11 +3951,11 @@ const EditorOptions = {
|
|
|
3924
3951
|
_multiCursorModifierFromString,
|
|
3925
3952
|
{
|
|
3926
3953
|
markdownEnumDescriptions: [
|
|
3927
|
-
( localize(
|
|
3928
|
-
( localize(
|
|
3954
|
+
( localize(587, "Maps to `Control` on Windows and Linux and to `Command` on macOS.")),
|
|
3955
|
+
( localize(588, "Maps to `Alt` on Windows and Linux and to `Option` on macOS."))
|
|
3929
3956
|
],
|
|
3930
3957
|
markdownDescription: ( localize(
|
|
3931
|
-
|
|
3958
|
+
589,
|
|
3932
3959
|
"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)."
|
|
3933
3960
|
))
|
|
3934
3961
|
}
|
|
@@ -3940,18 +3967,18 @@ const EditorOptions = {
|
|
|
3940
3967
|
['spread', 'full'],
|
|
3941
3968
|
{
|
|
3942
3969
|
markdownEnumDescriptions: [
|
|
3943
|
-
( localize(
|
|
3944
|
-
( localize(
|
|
3970
|
+
( localize(590, "Each cursor pastes a single line of the text.")),
|
|
3971
|
+
( localize(591, "Each cursor pastes the full text."))
|
|
3945
3972
|
],
|
|
3946
3973
|
markdownDescription: ( localize(
|
|
3947
|
-
|
|
3974
|
+
592,
|
|
3948
3975
|
"Controls pasting when the line count of the pasted text matches the cursor count."
|
|
3949
3976
|
))
|
|
3950
3977
|
}
|
|
3951
3978
|
))),
|
|
3952
3979
|
multiCursorLimit: register(( new EditorIntOption(EditorOption.multiCursorLimit, 'multiCursorLimit', 10000, 1, 100000, {
|
|
3953
3980
|
markdownDescription: ( localize(
|
|
3954
|
-
|
|
3981
|
+
593,
|
|
3955
3982
|
"Controls the max number of cursors that can be in an active editor at once."
|
|
3956
3983
|
))
|
|
3957
3984
|
}))),
|
|
@@ -3962,12 +3989,12 @@ const EditorOptions = {
|
|
|
3962
3989
|
['off', 'singleFile', 'multiFile'],
|
|
3963
3990
|
{
|
|
3964
3991
|
markdownEnumDescriptions: [
|
|
3965
|
-
( localize(
|
|
3966
|
-
( localize(
|
|
3967
|
-
( localize(
|
|
3992
|
+
( localize(594, "Does not highlight occurrences.")),
|
|
3993
|
+
( localize(595, "Highlights occurrences only in the current file.")),
|
|
3994
|
+
( localize(596, "Experimental: Highlights occurrences across all valid open files."))
|
|
3968
3995
|
],
|
|
3969
3996
|
markdownDescription: ( localize(
|
|
3970
|
-
|
|
3997
|
+
597,
|
|
3971
3998
|
"Controls whether occurrences should be highlighted across open files."
|
|
3972
3999
|
))
|
|
3973
4000
|
}
|
|
@@ -3980,7 +4007,7 @@ const EditorOptions = {
|
|
|
3980
4007
|
2000,
|
|
3981
4008
|
{
|
|
3982
4009
|
description: ( localize(
|
|
3983
|
-
|
|
4010
|
+
598,
|
|
3984
4011
|
"Controls the delay in milliseconds after which occurrences are highlighted."
|
|
3985
4012
|
)),
|
|
3986
4013
|
tags: ['preview']
|
|
@@ -3990,14 +4017,14 @@ const EditorOptions = {
|
|
|
3990
4017
|
EditorOption.overtypeOnPaste,
|
|
3991
4018
|
'overtypeOnPaste',
|
|
3992
4019
|
true,
|
|
3993
|
-
{ description: ( localize(
|
|
4020
|
+
{ description: ( localize(599, "Controls whether pasting should overtype.")) }
|
|
3994
4021
|
))),
|
|
3995
4022
|
overviewRulerBorder: register(( new EditorBooleanOption(
|
|
3996
4023
|
EditorOption.overviewRulerBorder,
|
|
3997
4024
|
'overviewRulerBorder',
|
|
3998
4025
|
true,
|
|
3999
4026
|
{ description: ( localize(
|
|
4000
|
-
|
|
4027
|
+
600,
|
|
4001
4028
|
"Controls whether a border should be drawn around the overview ruler."
|
|
4002
4029
|
)) }
|
|
4003
4030
|
))),
|
|
@@ -4012,11 +4039,11 @@ const EditorOptions = {
|
|
|
4012
4039
|
['tree', 'editor'],
|
|
4013
4040
|
{
|
|
4014
4041
|
enumDescriptions: [
|
|
4015
|
-
( localize(
|
|
4016
|
-
( localize(
|
|
4042
|
+
( localize(601, "Focus the tree when opening peek")),
|
|
4043
|
+
( localize(602, "Focus the editor when opening peek"))
|
|
4017
4044
|
],
|
|
4018
4045
|
description: ( localize(
|
|
4019
|
-
|
|
4046
|
+
603,
|
|
4020
4047
|
"Controls whether to focus the inline editor or the tree in the peek widget."
|
|
4021
4048
|
))
|
|
4022
4049
|
}
|
|
@@ -4027,7 +4054,7 @@ const EditorOptions = {
|
|
|
4027
4054
|
'definitionLinkOpensInPeek',
|
|
4028
4055
|
false,
|
|
4029
4056
|
{ description: ( localize(
|
|
4030
|
-
|
|
4057
|
+
604,
|
|
4031
4058
|
"Controls whether the Go to Definition mouse gesture always opens the peek widget."
|
|
4032
4059
|
)) }
|
|
4033
4060
|
))),
|
|
@@ -4040,11 +4067,11 @@ const EditorOptions = {
|
|
|
4040
4067
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4041
4068
|
{
|
|
4042
4069
|
description: ( localize(
|
|
4043
|
-
|
|
4070
|
+
605,
|
|
4044
4071
|
"Controls the delay in milliseconds after which quick suggestions will show up."
|
|
4045
4072
|
)),
|
|
4046
4073
|
experiment: {
|
|
4047
|
-
mode: '
|
|
4074
|
+
mode: 'auto'
|
|
4048
4075
|
}
|
|
4049
4076
|
}
|
|
4050
4077
|
))),
|
|
@@ -4054,20 +4081,20 @@ const EditorOptions = {
|
|
|
4054
4081
|
EditorOption.renameOnType,
|
|
4055
4082
|
'renameOnType',
|
|
4056
4083
|
false,
|
|
4057
|
-
{ description: ( localize(
|
|
4084
|
+
{ description: ( localize(606, "Controls whether the editor auto renames on type.")), markdownDeprecationMessage: ( localize(607, "Deprecated, use `#editor.linkedEditing#` instead.")) }
|
|
4058
4085
|
))),
|
|
4059
4086
|
renderControlCharacters: register(( new EditorBooleanOption(
|
|
4060
4087
|
EditorOption.renderControlCharacters,
|
|
4061
4088
|
'renderControlCharacters',
|
|
4062
4089
|
true,
|
|
4063
|
-
{ description: ( localize(
|
|
4090
|
+
{ description: ( localize(608, "Controls whether the editor should render control characters.")), restricted: true }
|
|
4064
4091
|
))),
|
|
4065
4092
|
renderFinalNewline: register(( new EditorStringEnumOption(
|
|
4066
4093
|
EditorOption.renderFinalNewline,
|
|
4067
4094
|
'renderFinalNewline',
|
|
4068
4095
|
(isLinux ? 'dimmed' : 'on'),
|
|
4069
4096
|
['off', 'on', 'dimmed'],
|
|
4070
|
-
{ description: ( localize(
|
|
4097
|
+
{ description: ( localize(609, "Render last line number when the file ends with a newline.")) }
|
|
4071
4098
|
))),
|
|
4072
4099
|
renderLineHighlight: register(( new EditorStringEnumOption(
|
|
4073
4100
|
EditorOption.renderLineHighlight,
|
|
@@ -4079,9 +4106,9 @@ const EditorOptions = {
|
|
|
4079
4106
|
'',
|
|
4080
4107
|
'',
|
|
4081
4108
|
'',
|
|
4082
|
-
( localize(
|
|
4109
|
+
( localize(610, "Highlights both the gutter and the current line.")),
|
|
4083
4110
|
],
|
|
4084
|
-
description: ( localize(
|
|
4111
|
+
description: ( localize(611, "Controls how the editor should render the current line highlight."))
|
|
4085
4112
|
}
|
|
4086
4113
|
))),
|
|
4087
4114
|
renderLineHighlightOnlyWhenFocus: register(( new EditorBooleanOption(
|
|
@@ -4089,7 +4116,7 @@ const EditorOptions = {
|
|
|
4089
4116
|
'renderLineHighlightOnlyWhenFocus',
|
|
4090
4117
|
false,
|
|
4091
4118
|
{ description: ( localize(
|
|
4092
|
-
|
|
4119
|
+
612,
|
|
4093
4120
|
"Controls if the editor should render the current line highlight only when the editor is focused."
|
|
4094
4121
|
)) }
|
|
4095
4122
|
))),
|
|
@@ -4108,14 +4135,14 @@ const EditorOptions = {
|
|
|
4108
4135
|
enumDescriptions: [
|
|
4109
4136
|
'',
|
|
4110
4137
|
( localize(
|
|
4111
|
-
|
|
4138
|
+
613,
|
|
4112
4139
|
"Render whitespace characters except for single spaces between words."
|
|
4113
4140
|
)),
|
|
4114
|
-
( localize(
|
|
4115
|
-
( localize(
|
|
4141
|
+
( localize(614, "Render whitespace characters only on selected text.")),
|
|
4142
|
+
( localize(615, "Render only trailing whitespace characters.")),
|
|
4116
4143
|
''
|
|
4117
4144
|
],
|
|
4118
|
-
description: ( localize(
|
|
4145
|
+
description: ( localize(616, "Controls how the editor should render whitespace characters."))
|
|
4119
4146
|
}
|
|
4120
4147
|
))),
|
|
4121
4148
|
revealHorizontalRightPadding: register(( new EditorIntOption(
|
|
@@ -4129,7 +4156,7 @@ const EditorOptions = {
|
|
|
4129
4156
|
EditorOption.roundedSelection,
|
|
4130
4157
|
'roundedSelection',
|
|
4131
4158
|
true,
|
|
4132
|
-
{ description: ( localize(
|
|
4159
|
+
{ description: ( localize(617, "Controls whether selections should have rounded corners.")) }
|
|
4133
4160
|
))),
|
|
4134
4161
|
rulers: register(( new EditorRulers())),
|
|
4135
4162
|
scrollbar: register(( new EditorScrollbar())),
|
|
@@ -4140,7 +4167,7 @@ const EditorOptions = {
|
|
|
4140
4167
|
0,
|
|
4141
4168
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4142
4169
|
{ description: ( localize(
|
|
4143
|
-
|
|
4170
|
+
618,
|
|
4144
4171
|
"Controls the number of extra characters beyond which the editor will scroll horizontally."
|
|
4145
4172
|
)) }
|
|
4146
4173
|
))),
|
|
@@ -4148,14 +4175,14 @@ const EditorOptions = {
|
|
|
4148
4175
|
EditorOption.scrollBeyondLastLine,
|
|
4149
4176
|
'scrollBeyondLastLine',
|
|
4150
4177
|
true,
|
|
4151
|
-
{ description: ( localize(
|
|
4178
|
+
{ description: ( localize(619, "Controls whether the editor will scroll beyond the last line.")) }
|
|
4152
4179
|
))),
|
|
4153
4180
|
scrollOnMiddleClick: register(( new EditorBooleanOption(
|
|
4154
4181
|
EditorOption.scrollOnMiddleClick,
|
|
4155
4182
|
'scrollOnMiddleClick',
|
|
4156
4183
|
false,
|
|
4157
4184
|
{ description: ( localize(
|
|
4158
|
-
|
|
4185
|
+
620,
|
|
4159
4186
|
"Controls whether the editor will scroll when the middle button is pressed."
|
|
4160
4187
|
)) }
|
|
4161
4188
|
))),
|
|
@@ -4164,12 +4191,12 @@ const EditorOptions = {
|
|
|
4164
4191
|
'scrollPredominantAxis',
|
|
4165
4192
|
true,
|
|
4166
4193
|
{ description: ( localize(
|
|
4167
|
-
|
|
4194
|
+
621,
|
|
4168
4195
|
"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."
|
|
4169
4196
|
)) }
|
|
4170
4197
|
))),
|
|
4171
4198
|
selectionClipboard: register(( new EditorBooleanOption(EditorOption.selectionClipboard, 'selectionClipboard', true, {
|
|
4172
|
-
description: ( localize(
|
|
4199
|
+
description: ( localize(622, "Controls whether the Linux primary clipboard should be supported.")),
|
|
4173
4200
|
included: isLinux
|
|
4174
4201
|
}))),
|
|
4175
4202
|
selectionHighlight: register(( new EditorBooleanOption(
|
|
@@ -4177,7 +4204,7 @@ const EditorOptions = {
|
|
|
4177
4204
|
'selectionHighlight',
|
|
4178
4205
|
true,
|
|
4179
4206
|
{ description: ( localize(
|
|
4180
|
-
|
|
4207
|
+
623,
|
|
4181
4208
|
"Controls whether the editor should highlight matches similar to the selection."
|
|
4182
4209
|
)) }
|
|
4183
4210
|
))),
|
|
@@ -4188,7 +4215,7 @@ const EditorOptions = {
|
|
|
4188
4215
|
0,
|
|
4189
4216
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4190
4217
|
{ description: ( localize(
|
|
4191
|
-
|
|
4218
|
+
624,
|
|
4192
4219
|
"Controls how many characters can be in the selection before similiar matches are not highlighted. Set to zero for unlimited."
|
|
4193
4220
|
)) }
|
|
4194
4221
|
))),
|
|
@@ -4197,7 +4224,7 @@ const EditorOptions = {
|
|
|
4197
4224
|
'selectionHighlightMultiline',
|
|
4198
4225
|
false,
|
|
4199
4226
|
{ description: ( localize(
|
|
4200
|
-
|
|
4227
|
+
625,
|
|
4201
4228
|
"Controls whether the editor should highlight selection matches that span multiple lines."
|
|
4202
4229
|
)) }
|
|
4203
4230
|
))),
|
|
@@ -4209,19 +4236,19 @@ const EditorOptions = {
|
|
|
4209
4236
|
['always', 'never', 'mouseover'],
|
|
4210
4237
|
{
|
|
4211
4238
|
enumDescriptions: [
|
|
4212
|
-
( localize(
|
|
4213
|
-
( localize(
|
|
4214
|
-
( localize(
|
|
4239
|
+
( localize(626, "Always show the folding controls.")),
|
|
4240
|
+
( localize(627, "Never show the folding controls and reduce the gutter size.")),
|
|
4241
|
+
( localize(628, "Only show the folding controls when the mouse is over the gutter.")),
|
|
4215
4242
|
],
|
|
4216
|
-
description: ( localize(
|
|
4243
|
+
description: ( localize(629, "Controls when the folding controls on the gutter are shown."))
|
|
4217
4244
|
}
|
|
4218
4245
|
))),
|
|
4219
|
-
showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, 'showUnused', true, { description: ( localize(
|
|
4246
|
+
showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, 'showUnused', true, { description: ( localize(630, "Controls fading out of unused code.")) }))),
|
|
4220
4247
|
showDeprecated: register(( new EditorBooleanOption(
|
|
4221
4248
|
EditorOption.showDeprecated,
|
|
4222
4249
|
'showDeprecated',
|
|
4223
4250
|
true,
|
|
4224
|
-
{ description: ( localize(
|
|
4251
|
+
{ description: ( localize(631, "Controls strikethrough deprecated variables.")) }
|
|
4225
4252
|
))),
|
|
4226
4253
|
inlayHints: register(( new EditorInlayHints())),
|
|
4227
4254
|
snippetSuggestions: register(( new EditorStringEnumOption(
|
|
@@ -4231,13 +4258,13 @@ const EditorOptions = {
|
|
|
4231
4258
|
['top', 'bottom', 'inline', 'none'],
|
|
4232
4259
|
{
|
|
4233
4260
|
enumDescriptions: [
|
|
4234
|
-
( localize(
|
|
4235
|
-
( localize(
|
|
4236
|
-
( localize(
|
|
4237
|
-
( localize(
|
|
4261
|
+
( localize(632, "Show snippet suggestions on top of other suggestions.")),
|
|
4262
|
+
( localize(633, "Show snippet suggestions below other suggestions.")),
|
|
4263
|
+
( localize(634, "Show snippets suggestions with other suggestions.")),
|
|
4264
|
+
( localize(635, "Do not show snippet suggestions.")),
|
|
4238
4265
|
],
|
|
4239
4266
|
description: ( localize(
|
|
4240
|
-
|
|
4267
|
+
636,
|
|
4241
4268
|
"Controls whether snippets are shown with other suggestions and how they are sorted."
|
|
4242
4269
|
))
|
|
4243
4270
|
}
|
|
@@ -4247,7 +4274,7 @@ const EditorOptions = {
|
|
|
4247
4274
|
EditorOption.smoothScrolling,
|
|
4248
4275
|
'smoothScrolling',
|
|
4249
4276
|
false,
|
|
4250
|
-
{ description: ( localize(
|
|
4277
|
+
{ description: ( localize(637, "Controls whether the editor will scroll using an animation.")) }
|
|
4251
4278
|
))),
|
|
4252
4279
|
stopRenderingLineAfter: register(( new EditorIntOption(
|
|
4253
4280
|
EditorOption.stopRenderingLineAfter,
|
|
@@ -4263,7 +4290,7 @@ const EditorOptions = {
|
|
|
4263
4290
|
'inlineCompletionsAccessibilityVerbose',
|
|
4264
4291
|
false,
|
|
4265
4292
|
{ description: ( localize(
|
|
4266
|
-
|
|
4293
|
+
638,
|
|
4267
4294
|
"Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."
|
|
4268
4295
|
)) }
|
|
4269
4296
|
))),
|
|
@@ -4274,7 +4301,7 @@ const EditorOptions = {
|
|
|
4274
4301
|
0,
|
|
4275
4302
|
1000,
|
|
4276
4303
|
{ markdownDescription: ( localize(
|
|
4277
|
-
|
|
4304
|
+
639,
|
|
4278
4305
|
"Font size for the suggest widget. When set to {0}, the value of {1} is used.",
|
|
4279
4306
|
'`0`',
|
|
4280
4307
|
'`#editor.fontSize#`'
|
|
@@ -4287,7 +4314,7 @@ const EditorOptions = {
|
|
|
4287
4314
|
0,
|
|
4288
4315
|
1000,
|
|
4289
4316
|
{ markdownDescription: ( localize(
|
|
4290
|
-
|
|
4317
|
+
640,
|
|
4291
4318
|
"Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.",
|
|
4292
4319
|
'`0`',
|
|
4293
4320
|
'`#editor.lineHeight#`'
|
|
@@ -4298,7 +4325,7 @@ const EditorOptions = {
|
|
|
4298
4325
|
'suggestOnTriggerCharacters',
|
|
4299
4326
|
true,
|
|
4300
4327
|
{ description: ( localize(
|
|
4301
|
-
|
|
4328
|
+
641,
|
|
4302
4329
|
"Controls whether suggestions should automatically show up when typing trigger characters."
|
|
4303
4330
|
)) }
|
|
4304
4331
|
))),
|
|
@@ -4309,18 +4336,18 @@ const EditorOptions = {
|
|
|
4309
4336
|
['first', 'recentlyUsed', 'recentlyUsedByPrefix'],
|
|
4310
4337
|
{
|
|
4311
4338
|
markdownEnumDescriptions: [
|
|
4312
|
-
( localize(
|
|
4339
|
+
( localize(642, "Always select the first suggestion.")),
|
|
4313
4340
|
( localize(
|
|
4314
|
-
|
|
4341
|
+
643,
|
|
4315
4342
|
"Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently."
|
|
4316
4343
|
)),
|
|
4317
4344
|
( localize(
|
|
4318
|
-
|
|
4345
|
+
644,
|
|
4319
4346
|
"Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`."
|
|
4320
4347
|
)),
|
|
4321
4348
|
],
|
|
4322
4349
|
description: ( localize(
|
|
4323
|
-
|
|
4350
|
+
645,
|
|
4324
4351
|
"Controls how suggestions are pre-selected when showing the suggest list."
|
|
4325
4352
|
))
|
|
4326
4353
|
}
|
|
@@ -4333,16 +4360,16 @@ const EditorOptions = {
|
|
|
4333
4360
|
{
|
|
4334
4361
|
enumDescriptions: [
|
|
4335
4362
|
( localize(
|
|
4336
|
-
|
|
4363
|
+
646,
|
|
4337
4364
|
"Tab complete will insert the best matching suggestion when pressing tab."
|
|
4338
4365
|
)),
|
|
4339
|
-
( localize(
|
|
4366
|
+
( localize(647, "Disable tab completions.")),
|
|
4340
4367
|
( localize(
|
|
4341
|
-
|
|
4368
|
+
648,
|
|
4342
4369
|
"Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."
|
|
4343
4370
|
)),
|
|
4344
4371
|
],
|
|
4345
|
-
description: ( localize(
|
|
4372
|
+
description: ( localize(649, "Enables tab completions."))
|
|
4346
4373
|
}
|
|
4347
4374
|
))),
|
|
4348
4375
|
tabIndex: register(( new EditorIntOption(EditorOption.tabIndex, 'tabIndex', 0, -1, Constants.MAX_SAFE_SMALL_INTEGER))),
|
|
@@ -4351,7 +4378,7 @@ const EditorOptions = {
|
|
|
4351
4378
|
'trimWhitespaceOnDelete',
|
|
4352
4379
|
false,
|
|
4353
4380
|
{ description: ( localize(
|
|
4354
|
-
|
|
4381
|
+
650,
|
|
4355
4382
|
"Controls whether the editor will also delete the next line's indentation whitespace when deleting a newline."
|
|
4356
4383
|
)) }
|
|
4357
4384
|
))),
|
|
@@ -4363,11 +4390,11 @@ const EditorOptions = {
|
|
|
4363
4390
|
['auto', 'off', 'prompt'],
|
|
4364
4391
|
{
|
|
4365
4392
|
enumDescriptions: [
|
|
4366
|
-
( localize(
|
|
4367
|
-
( localize(
|
|
4368
|
-
( localize(
|
|
4393
|
+
( localize(651, "Unusual line terminators are automatically removed.")),
|
|
4394
|
+
( localize(652, "Unusual line terminators are ignored.")),
|
|
4395
|
+
( localize(653, "Unusual line terminators prompt to be removed.")),
|
|
4369
4396
|
],
|
|
4370
|
-
description: ( localize(
|
|
4397
|
+
description: ( localize(654, "Remove unusual line terminators that might cause problems."))
|
|
4371
4398
|
}
|
|
4372
4399
|
))),
|
|
4373
4400
|
useShadowDOM: register(( new EditorBooleanOption(EditorOption.useShadowDOM, 'useShadowDOM', true))),
|
|
@@ -4376,20 +4403,20 @@ const EditorOptions = {
|
|
|
4376
4403
|
'useTabStops',
|
|
4377
4404
|
true,
|
|
4378
4405
|
{ description: ( localize(
|
|
4379
|
-
|
|
4406
|
+
655,
|
|
4380
4407
|
"Spaces and tabs are inserted and deleted in alignment with tab stops."
|
|
4381
4408
|
)) }
|
|
4382
4409
|
))),
|
|
4383
4410
|
wordBreak: register(( new EditorStringEnumOption(EditorOption.wordBreak, 'wordBreak', 'normal', ['normal', 'keepAll'], {
|
|
4384
4411
|
markdownEnumDescriptions: [
|
|
4385
|
-
( localize(
|
|
4412
|
+
( localize(656, "Use the default line break rule.")),
|
|
4386
4413
|
( localize(
|
|
4387
|
-
|
|
4414
|
+
657,
|
|
4388
4415
|
"Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for normal."
|
|
4389
4416
|
)),
|
|
4390
4417
|
],
|
|
4391
4418
|
description: ( localize(
|
|
4392
|
-
|
|
4419
|
+
658,
|
|
4393
4420
|
"Controls the word break rules used for Chinese/Japanese/Korean (CJK) text."
|
|
4394
4421
|
))
|
|
4395
4422
|
}))),
|
|
@@ -4399,7 +4426,7 @@ const EditorOptions = {
|
|
|
4399
4426
|
'wordSeparators',
|
|
4400
4427
|
USUAL_WORD_SEPARATORS,
|
|
4401
4428
|
{ description: ( localize(
|
|
4402
|
-
|
|
4429
|
+
659,
|
|
4403
4430
|
"Characters that will be used as word separators when doing word related navigations or operations."
|
|
4404
4431
|
)) }
|
|
4405
4432
|
))),
|
|
@@ -4410,15 +4437,15 @@ const EditorOptions = {
|
|
|
4410
4437
|
['off', 'on', 'wordWrapColumn', 'bounded'],
|
|
4411
4438
|
{
|
|
4412
4439
|
markdownEnumDescriptions: [
|
|
4413
|
-
( localize(
|
|
4414
|
-
( localize(
|
|
4415
|
-
( localize(
|
|
4440
|
+
( localize(660, "Lines will never wrap.")),
|
|
4441
|
+
( localize(661, "Lines will wrap at the viewport width.")),
|
|
4442
|
+
( localize(662, "Lines will wrap at `#editor.wordWrapColumn#`.")),
|
|
4416
4443
|
( localize(
|
|
4417
|
-
|
|
4444
|
+
663,
|
|
4418
4445
|
"Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`."
|
|
4419
4446
|
)),
|
|
4420
4447
|
],
|
|
4421
|
-
description: ( localize(
|
|
4448
|
+
description: ( localize(664, "Controls how lines should wrap."))
|
|
4422
4449
|
}
|
|
4423
4450
|
))),
|
|
4424
4451
|
wordWrapBreakAfterCharacters: register(( new EditorStringOption(
|
|
@@ -4439,7 +4466,7 @@ const EditorOptions = {
|
|
|
4439
4466
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4440
4467
|
{
|
|
4441
4468
|
markdownDescription: ( localize(
|
|
4442
|
-
|
|
4469
|
+
665,
|
|
4443
4470
|
"Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`."
|
|
4444
4471
|
))
|
|
4445
4472
|
}
|
|
@@ -4461,7 +4488,7 @@ const EditorOptions = {
|
|
|
4461
4488
|
'wrapOnEscapedLineFeeds',
|
|
4462
4489
|
false,
|
|
4463
4490
|
{ markdownDescription: ( localize(
|
|
4464
|
-
|
|
4491
|
+
666,
|
|
4465
4492
|
"Controls whether literal `\\n` shall trigger a wordWrap when `#editor.wordWrap#` is enabled.\n\nFor example:\n```c\nchar* str=\"hello\\nworld\"\n```\nwill be displayed as\n```c\nchar* str=\"hello\\n\n world\"\n```"
|
|
4466
4493
|
)) }
|
|
4467
4494
|
))),
|
|
@@ -4475,14 +4502,14 @@ const EditorOptions = {
|
|
|
4475
4502
|
{
|
|
4476
4503
|
enumDescriptions: [
|
|
4477
4504
|
( localize(
|
|
4478
|
-
|
|
4505
|
+
667,
|
|
4479
4506
|
"Show default color decorators only when no extension provides colors decorators."
|
|
4480
4507
|
)),
|
|
4481
|
-
( localize(
|
|
4482
|
-
( localize(
|
|
4508
|
+
( localize(668, "Always show default color decorators.")),
|
|
4509
|
+
( localize(669, "Never show default color decorators.")),
|
|
4483
4510
|
],
|
|
4484
4511
|
description: ( localize(
|
|
4485
|
-
|
|
4512
|
+
670,
|
|
4486
4513
|
"Controls whether inline color decorations should be shown using the default document color provider."
|
|
4487
4514
|
))
|
|
4488
4515
|
}
|
|
@@ -4493,7 +4520,7 @@ const EditorOptions = {
|
|
|
4493
4520
|
'tabFocusMode',
|
|
4494
4521
|
false,
|
|
4495
4522
|
{ markdownDescription: ( localize(
|
|
4496
|
-
|
|
4523
|
+
671,
|
|
4497
4524
|
"Controls whether the editor receives tabs or defers them to the workbench for navigation."
|
|
4498
4525
|
)) }
|
|
4499
4526
|
))),
|