monaco-editor-core 0.54.0-dev-20250910 → 0.54.0-dev-20250912
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/esm/nls.keys.json +1 -1
- package/esm/nls.messages.de.js +2 -2
- package/esm/nls.messages.es.js +2 -2
- package/esm/nls.messages.fr.js +2 -2
- package/esm/nls.messages.it.js +2 -2
- package/esm/nls.messages.ja.js +2 -2
- package/esm/nls.messages.js +1 -1
- package/esm/nls.messages.json +1 -1
- package/esm/nls.messages.ko.js +2 -2
- package/esm/nls.messages.ru.js +2 -2
- package/esm/nls.messages.zh-cn.js +2 -2
- package/esm/nls.messages.zh-tw.js +2 -2
- package/esm/nls.metadata.json +8 -2
- package/esm/vs/base/browser/domSanitize.js +32 -21
- package/esm/vs/base/browser/domSanitize.js.map +1 -1
- package/esm/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/esm/vs/base/browser/ui/menu/menu.js +2 -0
- package/esm/vs/base/browser/ui/menu/menu.js.map +1 -1
- package/esm/vs/base/common/codiconsLibrary.js +2 -0
- package/esm/vs/base/common/codiconsLibrary.js.map +1 -1
- package/esm/vs/base/common/observableInternal/index.js +3 -0
- package/esm/vs/base/common/observableInternal/index.js.map +1 -1
- package/esm/vs/base/common/observableInternal/logging/debugGetDependencyGraph.js +71 -0
- package/esm/vs/base/common/observableInternal/logging/debugGetDependencyGraph.js.map +1 -0
- package/esm/vs/base/common/observableInternal/observables/baseObservable.js +4 -0
- package/esm/vs/base/common/observableInternal/observables/baseObservable.js.map +1 -1
- package/esm/vs/base/common/observableInternal/observables/derivedImpl.js +10 -0
- package/esm/vs/base/common/observableInternal/observables/derivedImpl.js.map +1 -1
- package/esm/vs/base/common/observableInternal/observables/observableFromEvent.js +3 -0
- package/esm/vs/base/common/observableInternal/observables/observableFromEvent.js.map +1 -1
- package/esm/vs/base/common/observableInternal/reactions/autorunImpl.js +9 -0
- package/esm/vs/base/common/observableInternal/reactions/autorunImpl.js.map +1 -1
- package/esm/vs/editor/browser/config/editorConfiguration.js +1 -1
- package/esm/vs/editor/browser/controller/dragScrolling.js +4 -4
- package/esm/vs/editor/browser/controller/editContext/native/nativeEditContext.js +3 -3
- package/esm/vs/editor/browser/controller/editContext/native/screenReaderContentRich.js +3 -3
- package/esm/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +6 -6
- package/esm/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +9 -9
- package/esm/vs/editor/browser/controller/mouseHandler.js +6 -6
- package/esm/vs/editor/browser/controller/mouseTarget.js +3 -3
- package/esm/vs/editor/browser/coreCommands.js +2 -2
- package/esm/vs/editor/browser/gpu/rectangleRenderer.js +1 -1
- package/esm/vs/editor/browser/gpu/viewGpuContext.js +1 -1
- package/esm/vs/editor/browser/observableCodeEditor.js +1 -1
- package/esm/vs/editor/browser/view/viewController.js +2 -2
- package/esm/vs/editor/browser/view/viewLayer.js +1 -1
- package/esm/vs/editor/browser/view/viewOverlays.js +4 -4
- package/esm/vs/editor/browser/view.js +5 -5
- package/esm/vs/editor/browser/viewParts/blockDecorations/blockDecorations.js +1 -1
- package/esm/vs/editor/browser/viewParts/contentWidgets/contentWidgets.js +3 -3
- package/esm/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.js +6 -6
- package/esm/vs/editor/browser/viewParts/editorScrollbar/editorScrollbar.js +8 -8
- package/esm/vs/editor/browser/viewParts/glyphMargin/glyphMargin.js +2 -2
- package/esm/vs/editor/browser/viewParts/indentGuides/indentGuides.js +2 -2
- package/esm/vs/editor/browser/viewParts/lineNumbers/lineNumbers.js +2 -2
- package/esm/vs/editor/browser/viewParts/linesDecorations/linesDecorations.js +2 -2
- package/esm/vs/editor/browser/viewParts/margin/margin.js +2 -2
- package/esm/vs/editor/browser/viewParts/minimap/minimap.js +5 -5
- package/esm/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.js +2 -2
- package/esm/vs/editor/browser/viewParts/overviewRuler/decorationsOverviewRuler.js +4 -4
- package/esm/vs/editor/browser/viewParts/overviewRuler/overviewRuler.js +3 -3
- package/esm/vs/editor/browser/viewParts/rulers/rulers.js +2 -2
- package/esm/vs/editor/browser/viewParts/rulersGpu/rulersGpu.js +1 -1
- package/esm/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.js +3 -3
- package/esm/vs/editor/browser/viewParts/selections/selections.js +2 -2
- package/esm/vs/editor/browser/viewParts/viewCursors/viewCursor.js +2 -2
- package/esm/vs/editor/browser/viewParts/viewCursors/viewCursors.js +6 -6
- package/esm/vs/editor/browser/viewParts/viewLines/viewLineOptions.js +4 -4
- package/esm/vs/editor/browser/viewParts/viewLines/viewLines.js +11 -11
- package/esm/vs/editor/browser/viewParts/viewLinesGpu/viewLinesGpu.js +1 -1
- package/esm/vs/editor/browser/viewParts/viewZones/viewZones.js +2 -2
- package/esm/vs/editor/browser/viewParts/whitespace/whitespace.js +4 -4
- package/esm/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +12 -12
- package/esm/vs/editor/browser/widget/diffEditor/commands.js +12 -1
- package/esm/vs/editor/browser/widget/diffEditor/commands.js.map +1 -1
- package/esm/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +4 -4
- package/esm/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/diffEditorViewZones.js +3 -3
- package/esm/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/inlineDiffDeletedCodeMargin.js +2 -2
- package/esm/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +2 -2
- package/esm/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +25 -0
- package/esm/vs/editor/browser/widget/diffEditor/diffEditorWidget.js.map +1 -1
- package/esm/vs/editor/browser/widget/diffEditor/features/gutterFeature.js +1 -1
- package/esm/vs/editor/browser/widget/diffEditor/features/overviewRulerFeature.js +1 -1
- package/esm/vs/editor/common/config/editorOptions.js +155 -154
- package/esm/vs/editor/common/config/editorOptions.js.map +1 -1
- package/esm/vs/editor/common/core/editorColorRegistry.js +68 -68
- package/esm/vs/editor/common/core/ranges/lineRange.js +3 -0
- package/esm/vs/editor/common/core/ranges/lineRange.js.map +1 -1
- package/esm/vs/editor/common/cursorCommon.js +19 -19
- package/esm/vs/editor/common/editorContextKeys.js +46 -46
- package/esm/vs/editor/common/languages/modesRegistry.js +1 -1
- package/esm/vs/editor/common/languages.js +56 -56
- package/esm/vs/editor/common/model/editStack.js +1 -1
- package/esm/vs/editor/common/standalone/standaloneEnums.js +86 -85
- package/esm/vs/editor/common/standalone/standaloneEnums.js.map +1 -1
- package/esm/vs/editor/common/standaloneStrings.js +10 -10
- package/esm/vs/editor/common/viewLayout/viewLayout.js +15 -15
- package/esm/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/esm/vs/editor/common/viewModel/monospaceLineBreaksComputer.js +1 -1
- package/esm/vs/editor/common/viewModel/viewModelImpl.js +14 -14
- package/esm/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/esm/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/esm/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/esm/vs/editor/contrib/clipboard/browser/clipboard.js +20 -20
- package/esm/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/esm/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/esm/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/esm/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/esm/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/esm/vs/editor/contrib/codeAction/browser/codeActionModel.js +1 -1
- package/esm/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/esm/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/esm/vs/editor/contrib/colorPicker/browser/colorDetector.js +3 -3
- package/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/esm/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerContribution.js +1 -1
- package/esm/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +2 -2
- package/esm/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/esm/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerParticipant.js +1 -1
- package/esm/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/esm/vs/editor/contrib/contextmenu/browser/contextmenu.js +12 -12
- package/esm/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +12 -12
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/esm/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/esm/vs/editor/contrib/find/browser/findController.js +17 -17
- package/esm/vs/editor/contrib/find/browser/findModel.js +6 -6
- package/esm/vs/editor/contrib/find/browser/findWidget.js +32 -32
- package/esm/vs/editor/contrib/folding/browser/folding.js +23 -23
- package/esm/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/esm/vs/editor/contrib/folding/browser/foldingDecorations.js.map +1 -1
- package/esm/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/esm/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/esm/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/esm/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/esm/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/esm/vs/editor/contrib/gotoSymbol/browser/link/clickLinkGesture.js +21 -11
- package/esm/vs/editor/contrib/gotoSymbol/browser/link/clickLinkGesture.js.map +1 -1
- package/esm/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +2 -2
- package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +4 -4
- package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/esm/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/esm/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/esm/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/esm/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/esm/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/esm/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +10 -10
- package/esm/vs/editor/contrib/hover/browser/markerHoverParticipant.js +6 -6
- package/esm/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/esm/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/esm/vs/editor/contrib/inlayHints/browser/inlayHintsController.js +5 -5
- package/esm/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/esm/vs/editor/contrib/inlayHints/browser/inlayHintsLocations.js +2 -2
- package/esm/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +19 -19
- package/esm/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +12 -12
- package/esm/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +2 -2
- package/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/esm/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +5 -5
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +5 -5
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +4 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +2 -0
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js +1 -0
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewProducer.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +22 -21
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js.map +1 -1
- package/esm/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/esm/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/esm/vs/editor/contrib/linesOperations/browser/linesOperations.js +32 -32
- package/esm/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +4 -4
- package/esm/vs/editor/contrib/links/browser/links.js +11 -11
- package/esm/vs/editor/contrib/links/browser/links.js.map +1 -1
- package/esm/vs/editor/contrib/longLinesHelper/browser/longLinesHelper.js +1 -1
- package/esm/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/esm/vs/editor/contrib/middleScroll/browser/middleScrollController.js +1 -1
- package/esm/vs/editor/contrib/multicursor/browser/multicursor.js +36 -36
- package/esm/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/esm/vs/editor/contrib/parameterHints/browser/parameterHintsModel.js +3 -3
- package/esm/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/esm/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/esm/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/esm/vs/editor/contrib/placeholderText/browser/placeholderTextContribution.js +1 -1
- package/esm/vs/editor/contrib/placeholderText/browser/placeholderTextContribution.js.map +1 -1
- package/esm/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +5 -5
- package/esm/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
- package/esm/vs/editor/contrib/readOnlyMessage/browser/contribution.js +3 -3
- package/esm/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/esm/vs/editor/contrib/rename/browser/renameWidget.js +7 -7
- package/esm/vs/editor/contrib/smartSelect/browser/smartSelect.js +5 -5
- package/esm/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/esm/vs/editor/contrib/snippet/browser/snippetSession.js +2 -2
- package/esm/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +17 -24
- package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js.map +1 -1
- package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollModelProvider.js +1 -1
- package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +12 -3
- package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js.map +1 -1
- package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +5 -5
- package/esm/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/esm/vs/editor/contrib/suggest/browser/suggestController.js +14 -14
- package/esm/vs/editor/contrib/suggest/browser/suggestInlineCompletions.js +2 -2
- package/esm/vs/editor/contrib/suggest/browser/suggestModel.js +11 -11
- package/esm/vs/editor/contrib/suggest/browser/suggestWidget.js +23 -23
- package/esm/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +5 -5
- package/esm/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +5 -5
- package/esm/vs/editor/contrib/suggest/browser/wordContextKey.js +3 -3
- package/esm/vs/editor/contrib/suggest/browser/wordDistance.js +1 -1
- package/esm/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/esm/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/esm/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/esm/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/esm/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +27 -27
- package/esm/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +9 -9
- package/esm/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/esm/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +7 -7
- package/esm/vs/editor/contrib/wordOperations/browser/wordOperations.js +4 -4
- package/esm/vs/editor/editor.api.d.ts +93 -85
- package/esm/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.js +1 -1
- package/esm/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/esm/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/esm/vs/platform/actionWidget/browser/actionList.js +4 -4
- package/esm/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/esm/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/esm/vs/platform/actions/browser/toolbar.js +2 -2
- package/esm/vs/platform/actions/common/menuService.js +2 -2
- package/esm/vs/platform/configuration/common/configurationRegistry.js +10 -10
- package/esm/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/esm/vs/platform/contextkey/common/contextkey.js +9 -9
- package/esm/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/esm/vs/platform/contextkey/common/scanner.js +5 -5
- package/esm/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/esm/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/esm/vs/platform/list/browser/listService.js +27 -27
- package/esm/vs/platform/markers/common/markerService.js +2 -2
- package/esm/vs/platform/markers/common/markers.js +6 -6
- package/esm/vs/platform/quickinput/browser/commandsQuickAccess.js +7 -7
- package/esm/vs/platform/quickinput/browser/helpQuickAccess.js +1 -1
- package/esm/vs/platform/quickinput/browser/quickInput.js +21 -13
- package/esm/vs/platform/quickinput/browser/quickInput.js.map +1 -1
- package/esm/vs/platform/quickinput/browser/quickInputActions.js +42 -8
- package/esm/vs/platform/quickinput/browser/quickInputActions.js.map +1 -1
- package/esm/vs/platform/quickinput/browser/quickInputController.js +10 -64
- package/esm/vs/platform/quickinput/browser/quickInputController.js.map +1 -1
- package/esm/vs/platform/quickinput/browser/quickInputList.js +1 -1
- package/esm/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/esm/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
- package/esm/vs/platform/quickinput/browser/tree/quickInputTreeController.js +12 -0
- package/esm/vs/platform/quickinput/browser/tree/quickInputTreeController.js.map +1 -1
- package/esm/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js +11 -5
- package/esm/vs/platform/quickinput/browser/tree/quickInputTreeRenderer.js.map +1 -1
- package/esm/vs/platform/quickinput/common/quickInput.js.map +1 -1
- package/esm/vs/platform/theme/common/colorUtils.js +2 -2
- package/esm/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/esm/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/esm/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/esm/vs/platform/theme/common/colors/inputColors.js +47 -47
- package/esm/vs/platform/theme/common/colors/listColors.js +36 -36
- package/esm/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/esm/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/esm/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/esm/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/esm/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/esm/vs/platform/theme/common/iconRegistry.js +6 -6
- package/esm/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/esm/vs/platform/workspace/common/workspace.js +1 -1
- package/monaco.d.ts +93 -85
- package/package.json +6 -2
- package/version.txt +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["file:///mnt/vss/_work/1/s/dependencies/vscode/out-editor-src/vs/editor/common/standalone/standaloneEnums.ts","vs/editor/common/standalone/standaloneEnums.ts"],"names":[],"mappings":"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","file":"standaloneEnums.js","sourceRoot":"file:///mnt/vss/_work/1/s/dependencies/vscode/out-editor-src","sourcesContent":["/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n\n// THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY.\n\n\nexport enum AccessibilitySupport {\n\t/**\n\t * This should be the browser case where it is not known if a screen reader is attached or no.\n\t */\n\tUnknown = 0,\n\tDisabled = 1,\n\tEnabled = 2\n}\n\nexport enum CodeActionTriggerType {\n\tInvoke = 1,\n\tAuto = 2\n}\n\nexport enum CompletionItemInsertTextRule {\n\tNone = 0,\n\t/**\n\t * Adjust whitespace/indentation of multiline insert texts to\n\t * match the current line indentation.\n\t */\n\tKeepWhitespace = 1,\n\t/**\n\t * `insertText` is a snippet.\n\t */\n\tInsertAsSnippet = 4\n}\n\nexport enum CompletionItemKind {\n\tMethod = 0,\n\tFunction = 1,\n\tConstructor = 2,\n\tField = 3,\n\tVariable = 4,\n\tClass = 5,\n\tStruct = 6,\n\tInterface = 7,\n\tModule = 8,\n\tProperty = 9,\n\tEvent = 10,\n\tOperator = 11,\n\tUnit = 12,\n\tValue = 13,\n\tConstant = 14,\n\tEnum = 15,\n\tEnumMember = 16,\n\tKeyword = 17,\n\tText = 18,\n\tColor = 19,\n\tFile = 20,\n\tReference = 21,\n\tCustomcolor = 22,\n\tFolder = 23,\n\tTypeParameter = 24,\n\tUser = 25,\n\tIssue = 26,\n\tTool = 27,\n\tSnippet = 28\n}\n\nexport enum CompletionItemTag {\n\tDeprecated = 1\n}\n\n/**\n * How a suggest provider was triggered.\n */\nexport enum CompletionTriggerKind {\n\tInvoke = 0,\n\tTriggerCharacter = 1,\n\tTriggerForIncompleteCompletions = 2\n}\n\n/**\n * A positioning preference for rendering content widgets.\n */\nexport enum ContentWidgetPositionPreference {\n\t/**\n\t * Place the content widget exactly at a position\n\t */\n\tEXACT = 0,\n\t/**\n\t * Place the content widget above a position\n\t */\n\tABOVE = 1,\n\t/**\n\t * Place the content widget below a position\n\t */\n\tBELOW = 2\n}\n\n/**\n * Describes the reason the cursor has changed its position.\n */\nexport enum CursorChangeReason {\n\t/**\n\t * Unknown or not set.\n\t */\n\tNotSet = 0,\n\t/**\n\t * A `model.setValue()` was called.\n\t */\n\tContentFlush = 1,\n\t/**\n\t * The `model` has been changed outside of this cursor and the cursor recovers its position from associated markers.\n\t */\n\tRecoverFromMarkers = 2,\n\t/**\n\t * There was an explicit user gesture.\n\t */\n\tExplicit = 3,\n\t/**\n\t * There was a Paste.\n\t */\n\tPaste = 4,\n\t/**\n\t * There was an Undo.\n\t */\n\tUndo = 5,\n\t/**\n\t * There was a Redo.\n\t */\n\tRedo = 6\n}\n\n/**\n * The default end of line to use when instantiating models.\n */\nexport enum DefaultEndOfLine {\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 1,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 2\n}\n\n/**\n * A document highlight kind.\n */\nexport enum DocumentHighlightKind {\n\t/**\n\t * A textual occurrence.\n\t */\n\tText = 0,\n\t/**\n\t * Read-access of a symbol, like reading a variable.\n\t */\n\tRead = 1,\n\t/**\n\t * Write-access of a symbol, like writing to a variable.\n\t */\n\tWrite = 2\n}\n\n/**\n * Configuration options for auto indentation in the editor\n */\nexport enum EditorAutoIndentStrategy {\n\tNone = 0,\n\tKeep = 1,\n\tBrackets = 2,\n\tAdvanced = 3,\n\tFull = 4\n}\n\nexport enum EditorOption {\n\tacceptSuggestionOnCommitCharacter = 0,\n\tacceptSuggestionOnEnter = 1,\n\taccessibilitySupport = 2,\n\taccessibilityPageSize = 3,\n\tallowOverflow = 4,\n\tallowVariableLineHeights = 5,\n\tallowVariableFonts = 6,\n\tallowVariableFontsInAccessibilityMode = 7,\n\tariaLabel = 8,\n\tariaRequired = 9,\n\tautoClosingBrackets = 10,\n\tautoClosingComments = 11,\n\tscreenReaderAnnounceInlineSuggestion = 12,\n\tautoClosingDelete = 13,\n\tautoClosingOvertype = 14,\n\tautoClosingQuotes = 15,\n\tautoIndent = 16,\n\tautoIndentOnPaste = 17,\n\tautoIndentOnPasteWithinString = 18,\n\tautomaticLayout = 19,\n\tautoSurround = 20,\n\tbracketPairColorization = 21,\n\tguides = 22,\n\tcodeLens = 23,\n\tcodeLensFontFamily = 24,\n\tcodeLensFontSize = 25,\n\tcolorDecorators = 26,\n\tcolorDecoratorsLimit = 27,\n\tcolumnSelection = 28,\n\tcomments = 29,\n\tcontextmenu = 30,\n\tcopyWithSyntaxHighlighting = 31,\n\tcursorBlinking = 32,\n\tcursorSmoothCaretAnimation = 33,\n\tcursorStyle = 34,\n\tcursorSurroundingLines = 35,\n\tcursorSurroundingLinesStyle = 36,\n\tcursorWidth = 37,\n\tcursorHeight = 38,\n\tdisableLayerHinting = 39,\n\tdisableMonospaceOptimizations = 40,\n\tdomReadOnly = 41,\n\tdragAndDrop = 42,\n\tdropIntoEditor = 43,\n\teditContext = 44,\n\temptySelectionClipboard = 45,\n\texperimentalGpuAcceleration = 46,\n\texperimentalWhitespaceRendering = 47,\n\textraEditorClassName = 48,\n\tfastScrollSensitivity = 49,\n\tfind = 50,\n\tfixedOverflowWidgets = 51,\n\tfolding = 52,\n\tfoldingStrategy = 53,\n\tfoldingHighlight = 54,\n\tfoldingImportsByDefault = 55,\n\tfoldingMaximumRegions = 56,\n\tunfoldOnClickAfterEndOfLine = 57,\n\tfontFamily = 58,\n\tfontInfo = 59,\n\tfontLigatures = 60,\n\tfontSize = 61,\n\tfontWeight = 62,\n\tfontVariations = 63,\n\tformatOnPaste = 64,\n\tformatOnType = 65,\n\tglyphMargin = 66,\n\tgotoLocation = 67,\n\thideCursorInOverviewRuler = 68,\n\thover = 69,\n\tinDiffEditor = 70,\n\tinlineSuggest = 71,\n\tletterSpacing = 72,\n\tlightbulb = 73,\n\tlineDecorationsWidth = 74,\n\tlineHeight = 75,\n\tlineNumbers = 76,\n\tlineNumbersMinChars = 77,\n\tlinkedEditing = 78,\n\tlinks = 79,\n\tmatchBrackets = 80,\n\tminimap = 81,\n\tmouseStyle = 82,\n\tmouseWheelScrollSensitivity = 83,\n\tmouseWheelZoom = 84,\n\tmultiCursorMergeOverlapping = 85,\n\tmultiCursorModifier = 86,\n\tmultiCursorPaste = 87,\n\tmultiCursorLimit = 88,\n\toccurrencesHighlight = 89,\n\toccurrencesHighlightDelay = 90,\n\tovertypeCursorStyle = 91,\n\tovertypeOnPaste = 92,\n\toverviewRulerBorder = 93,\n\toverviewRulerLanes = 94,\n\tpadding = 95,\n\tpasteAs = 96,\n\tparameterHints = 97,\n\tpeekWidgetDefaultFocus = 98,\n\tplaceholder = 99,\n\tdefinitionLinkOpensInPeek = 100,\n\tquickSuggestions = 101,\n\tquickSuggestionsDelay = 102,\n\treadOnly = 103,\n\treadOnlyMessage = 104,\n\trenameOnType = 105,\n\trenderRichScreenReaderContent = 106,\n\trenderControlCharacters = 107,\n\trenderFinalNewline = 108,\n\trenderLineHighlight = 109,\n\trenderLineHighlightOnlyWhenFocus = 110,\n\trenderValidationDecorations = 111,\n\trenderWhitespace = 112,\n\trevealHorizontalRightPadding = 113,\n\troundedSelection = 114,\n\trulers = 115,\n\tscrollbar = 116,\n\tscrollBeyondLastColumn = 117,\n\tscrollBeyondLastLine = 118,\n\tscrollPredominantAxis = 119,\n\tselectionClipboard = 120,\n\tselectionHighlight = 121,\n\tselectionHighlightMaxLength = 122,\n\tselectionHighlightMultiline = 123,\n\tselectOnLineNumbers = 124,\n\tshowFoldingControls = 125,\n\tshowUnused = 126,\n\tsnippetSuggestions = 127,\n\tsmartSelect = 128,\n\tsmoothScrolling = 129,\n\tstickyScroll = 130,\n\tstickyTabStops = 131,\n\tstopRenderingLineAfter = 132,\n\tsuggest = 133,\n\tsuggestFontSize = 134,\n\tsuggestLineHeight = 135,\n\tsuggestOnTriggerCharacters = 136,\n\tsuggestSelection = 137,\n\ttabCompletion = 138,\n\ttabIndex = 139,\n\ttrimWhitespaceOnDelete = 140,\n\tunicodeHighlighting = 141,\n\tunusualLineTerminators = 142,\n\tuseShadowDOM = 143,\n\tuseTabStops = 144,\n\twordBreak = 145,\n\twordSegmenterLocales = 146,\n\twordSeparators = 147,\n\twordWrap = 148,\n\twordWrapBreakAfterCharacters = 149,\n\twordWrapBreakBeforeCharacters = 150,\n\twordWrapColumn = 151,\n\twordWrapOverride1 = 152,\n\twordWrapOverride2 = 153,\n\twrappingIndent = 154,\n\twrappingStrategy = 155,\n\tshowDeprecated = 156,\n\tinertialScroll = 157,\n\tinlayHints = 158,\n\twrapOnEscapedLineFeeds = 159,\n\teffectiveCursorStyle = 160,\n\teditorClassName = 161,\n\tpixelRatio = 162,\n\ttabFocusMode = 163,\n\tlayoutInfo = 164,\n\twrappingInfo = 165,\n\tdefaultColorDecorators = 166,\n\tcolorDecoratorsActivatedOn = 167,\n\tinlineCompletionsAccessibilityVerbose = 168,\n\teffectiveEditContext = 169,\n\tscrollOnMiddleClick = 170,\n\teffectiveAllowVariableFonts = 171\n}\n\n/**\n * End of line character preference.\n */\nexport enum EndOfLinePreference {\n\t/**\n\t * Use the end of line character identified in the text buffer.\n\t */\n\tTextDefined = 0,\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 1,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 2\n}\n\n/**\n * End of line character preference.\n */\nexport enum EndOfLineSequence {\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 0,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 1\n}\n\n/**\n * Vertical Lane in the glyph margin of the editor.\n */\nexport enum GlyphMarginLane {\n\tLeft = 1,\n\tCenter = 2,\n\tRight = 3\n}\n\nexport enum HoverVerbosityAction {\n\t/**\n\t * Increase the verbosity of the hover\n\t */\n\tIncrease = 0,\n\t/**\n\t * Decrease the verbosity of the hover\n\t */\n\tDecrease = 1\n}\n\n/**\n * Describes what to do with the indentation when pressing Enter.\n */\nexport enum IndentAction {\n\t/**\n\t * Insert new line and copy the previous line's indentation.\n\t */\n\tNone = 0,\n\t/**\n\t * Insert new line and indent once (relative to the previous line's indentation).\n\t */\n\tIndent = 1,\n\t/**\n\t * Insert two new lines:\n\t * - the first one indented which will hold the cursor\n\t * - the second one at the same indentation level\n\t */\n\tIndentOutdent = 2,\n\t/**\n\t * Insert new line and outdent once (relative to the previous line's indentation).\n\t */\n\tOutdent = 3\n}\n\nexport enum InjectedTextCursorStops {\n\tBoth = 0,\n\tRight = 1,\n\tLeft = 2,\n\tNone = 3\n}\n\nexport enum InlayHintKind {\n\tType = 1,\n\tParameter = 2\n}\n\nexport enum InlineCompletionDisplayLocationKind {\n\tCode = 1,\n\tLabel = 2\n}\n\nexport enum InlineCompletionEndOfLifeReasonKind {\n\tAccepted = 0,\n\tRejected = 1,\n\tIgnored = 2\n}\n\n/**\n * How an {@link InlineCompletionsProvider inline completion provider} was triggered.\n */\nexport enum InlineCompletionTriggerKind {\n\t/**\n\t * Completion was triggered automatically while editing.\n\t * It is sufficient to return a single completion item in this case.\n\t */\n\tAutomatic = 0,\n\t/**\n\t * Completion was triggered explicitly by a user gesture.\n\t * Return multiple completion items to enable cycling through them.\n\t */\n\tExplicit = 1\n}\n/**\n * Virtual Key Codes, the value does not hold any inherent meaning.\n * Inspired somewhat from https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx\n * But these are \"more general\", as they should work across browsers & OS`s.\n */\nexport enum KeyCode {\n\tDependsOnKbLayout = -1,\n\t/**\n\t * Placed first to cover the 0 value of the enum.\n\t */\n\tUnknown = 0,\n\tBackspace = 1,\n\tTab = 2,\n\tEnter = 3,\n\tShift = 4,\n\tCtrl = 5,\n\tAlt = 6,\n\tPauseBreak = 7,\n\tCapsLock = 8,\n\tEscape = 9,\n\tSpace = 10,\n\tPageUp = 11,\n\tPageDown = 12,\n\tEnd = 13,\n\tHome = 14,\n\tLeftArrow = 15,\n\tUpArrow = 16,\n\tRightArrow = 17,\n\tDownArrow = 18,\n\tInsert = 19,\n\tDelete = 20,\n\tDigit0 = 21,\n\tDigit1 = 22,\n\tDigit2 = 23,\n\tDigit3 = 24,\n\tDigit4 = 25,\n\tDigit5 = 26,\n\tDigit6 = 27,\n\tDigit7 = 28,\n\tDigit8 = 29,\n\tDigit9 = 30,\n\tKeyA = 31,\n\tKeyB = 32,\n\tKeyC = 33,\n\tKeyD = 34,\n\tKeyE = 35,\n\tKeyF = 36,\n\tKeyG = 37,\n\tKeyH = 38,\n\tKeyI = 39,\n\tKeyJ = 40,\n\tKeyK = 41,\n\tKeyL = 42,\n\tKeyM = 43,\n\tKeyN = 44,\n\tKeyO = 45,\n\tKeyP = 46,\n\tKeyQ = 47,\n\tKeyR = 48,\n\tKeyS = 49,\n\tKeyT = 50,\n\tKeyU = 51,\n\tKeyV = 52,\n\tKeyW = 53,\n\tKeyX = 54,\n\tKeyY = 55,\n\tKeyZ = 56,\n\tMeta = 57,\n\tContextMenu = 58,\n\tF1 = 59,\n\tF2 = 60,\n\tF3 = 61,\n\tF4 = 62,\n\tF5 = 63,\n\tF6 = 64,\n\tF7 = 65,\n\tF8 = 66,\n\tF9 = 67,\n\tF10 = 68,\n\tF11 = 69,\n\tF12 = 70,\n\tF13 = 71,\n\tF14 = 72,\n\tF15 = 73,\n\tF16 = 74,\n\tF17 = 75,\n\tF18 = 76,\n\tF19 = 77,\n\tF20 = 78,\n\tF21 = 79,\n\tF22 = 80,\n\tF23 = 81,\n\tF24 = 82,\n\tNumLock = 83,\n\tScrollLock = 84,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ';:' key\n\t */\n\tSemicolon = 85,\n\t/**\n\t * For any country/region, the '+' key\n\t * For the US standard keyboard, the '=+' key\n\t */\n\tEqual = 86,\n\t/**\n\t * For any country/region, the ',' key\n\t * For the US standard keyboard, the ',<' key\n\t */\n\tComma = 87,\n\t/**\n\t * For any country/region, the '-' key\n\t * For the US standard keyboard, the '-_' key\n\t */\n\tMinus = 88,\n\t/**\n\t * For any country/region, the '.' key\n\t * For the US standard keyboard, the '.>' key\n\t */\n\tPeriod = 89,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '/?' key\n\t */\n\tSlash = 90,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '`~' key\n\t */\n\tBackquote = 91,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '[{' key\n\t */\n\tBracketLeft = 92,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '\\|' key\n\t */\n\tBackslash = 93,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ']}' key\n\t */\n\tBracketRight = 94,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ''\"' key\n\t */\n\tQuote = 95,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t */\n\tOEM_8 = 96,\n\t/**\n\t * Either the angle bracket key or the backslash key on the RT 102-key keyboard.\n\t */\n\tIntlBackslash = 97,\n\tNumpad0 = 98,// VK_NUMPAD0, 0x60, Numeric keypad 0 key\n\tNumpad1 = 99,// VK_NUMPAD1, 0x61, Numeric keypad 1 key\n\tNumpad2 = 100,// VK_NUMPAD2, 0x62, Numeric keypad 2 key\n\tNumpad3 = 101,// VK_NUMPAD3, 0x63, Numeric keypad 3 key\n\tNumpad4 = 102,// VK_NUMPAD4, 0x64, Numeric keypad 4 key\n\tNumpad5 = 103,// VK_NUMPAD5, 0x65, Numeric keypad 5 key\n\tNumpad6 = 104,// VK_NUMPAD6, 0x66, Numeric keypad 6 key\n\tNumpad7 = 105,// VK_NUMPAD7, 0x67, Numeric keypad 7 key\n\tNumpad8 = 106,// VK_NUMPAD8, 0x68, Numeric keypad 8 key\n\tNumpad9 = 107,// VK_NUMPAD9, 0x69, Numeric keypad 9 key\n\tNumpadMultiply = 108,// VK_MULTIPLY, 0x6A, Multiply key\n\tNumpadAdd = 109,// VK_ADD, 0x6B, Add key\n\tNUMPAD_SEPARATOR = 110,// VK_SEPARATOR, 0x6C, Separator key\n\tNumpadSubtract = 111,// VK_SUBTRACT, 0x6D, Subtract key\n\tNumpadDecimal = 112,// VK_DECIMAL, 0x6E, Decimal key\n\tNumpadDivide = 113,// VK_DIVIDE, 0x6F,\n\t/**\n\t * Cover all key codes when IME is processing input.\n\t */\n\tKEY_IN_COMPOSITION = 114,\n\tABNT_C1 = 115,// Brazilian (ABNT) Keyboard\n\tABNT_C2 = 116,// Brazilian (ABNT) Keyboard\n\tAudioVolumeMute = 117,\n\tAudioVolumeUp = 118,\n\tAudioVolumeDown = 119,\n\tBrowserSearch = 120,\n\tBrowserHome = 121,\n\tBrowserBack = 122,\n\tBrowserForward = 123,\n\tMediaTrackNext = 124,\n\tMediaTrackPrevious = 125,\n\tMediaStop = 126,\n\tMediaPlayPause = 127,\n\tLaunchMediaPlayer = 128,\n\tLaunchMail = 129,\n\tLaunchApp2 = 130,\n\t/**\n\t * VK_CLEAR, 0x0C, CLEAR key\n\t */\n\tClear = 131,\n\t/**\n\t * Placed last to cover the length of the enum.\n\t * Please do not depend on this value!\n\t */\n\tMAX_VALUE = 132\n}\n\nexport enum MarkerSeverity {\n\tHint = 1,\n\tInfo = 2,\n\tWarning = 4,\n\tError = 8\n}\n\nexport enum MarkerTag {\n\tUnnecessary = 1,\n\tDeprecated = 2\n}\n\n/**\n * Position in the minimap to render the decoration.\n */\nexport enum MinimapPosition {\n\tInline = 1,\n\tGutter = 2\n}\n\n/**\n * Section header style.\n */\nexport enum MinimapSectionHeaderStyle {\n\tNormal = 1,\n\tUnderlined = 2\n}\n\n/**\n * Type of hit element with the mouse in the editor.\n */\nexport enum MouseTargetType {\n\t/**\n\t * Mouse is on top of an unknown element.\n\t */\n\tUNKNOWN = 0,\n\t/**\n\t * Mouse is on top of the textarea used for input.\n\t */\n\tTEXTAREA = 1,\n\t/**\n\t * Mouse is on top of the glyph margin\n\t */\n\tGUTTER_GLYPH_MARGIN = 2,\n\t/**\n\t * Mouse is on top of the line numbers\n\t */\n\tGUTTER_LINE_NUMBERS = 3,\n\t/**\n\t * Mouse is on top of the line decorations\n\t */\n\tGUTTER_LINE_DECORATIONS = 4,\n\t/**\n\t * Mouse is on top of the whitespace left in the gutter by a view zone.\n\t */\n\tGUTTER_VIEW_ZONE = 5,\n\t/**\n\t * Mouse is on top of text in the content.\n\t */\n\tCONTENT_TEXT = 6,\n\t/**\n\t * Mouse is on top of empty space in the content (e.g. after line text or below last line)\n\t */\n\tCONTENT_EMPTY = 7,\n\t/**\n\t * Mouse is on top of a view zone in the content.\n\t */\n\tCONTENT_VIEW_ZONE = 8,\n\t/**\n\t * Mouse is on top of a content widget.\n\t */\n\tCONTENT_WIDGET = 9,\n\t/**\n\t * Mouse is on top of the decorations overview ruler.\n\t */\n\tOVERVIEW_RULER = 10,\n\t/**\n\t * Mouse is on top of a scrollbar.\n\t */\n\tSCROLLBAR = 11,\n\t/**\n\t * Mouse is on top of an overlay widget.\n\t */\n\tOVERLAY_WIDGET = 12,\n\t/**\n\t * Mouse is outside of the editor.\n\t */\n\tOUTSIDE_EDITOR = 13\n}\n\nexport enum NewSymbolNameTag {\n\tAIGenerated = 1\n}\n\nexport enum NewSymbolNameTriggerKind {\n\tInvoke = 0,\n\tAutomatic = 1\n}\n\n/**\n * A positioning preference for rendering overlay widgets.\n */\nexport enum OverlayWidgetPositionPreference {\n\t/**\n\t * Position the overlay widget in the top right corner\n\t */\n\tTOP_RIGHT_CORNER = 0,\n\t/**\n\t * Position the overlay widget in the bottom right corner\n\t */\n\tBOTTOM_RIGHT_CORNER = 1,\n\t/**\n\t * Position the overlay widget in the top center\n\t */\n\tTOP_CENTER = 2\n}\n\n/**\n * Vertical Lane in the overview ruler of the editor.\n */\nexport enum OverviewRulerLane {\n\tLeft = 1,\n\tCenter = 2,\n\tRight = 4,\n\tFull = 7\n}\n\n/**\n * How a partial acceptance was triggered.\n */\nexport enum PartialAcceptTriggerKind {\n\tWord = 0,\n\tLine = 1,\n\tSuggest = 2\n}\n\nexport enum PositionAffinity {\n\t/**\n\t * Prefers the left most position.\n\t*/\n\tLeft = 0,\n\t/**\n\t * Prefers the right most position.\n\t*/\n\tRight = 1,\n\t/**\n\t * No preference.\n\t*/\n\tNone = 2,\n\t/**\n\t * If the given position is on injected text, prefers the position left of it.\n\t*/\n\tLeftOfInjectedText = 3,\n\t/**\n\t * If the given position is on injected text, prefers the position right of it.\n\t*/\n\tRightOfInjectedText = 4\n}\n\nexport enum RenderLineNumbersType {\n\tOff = 0,\n\tOn = 1,\n\tRelative = 2,\n\tInterval = 3,\n\tCustom = 4\n}\n\nexport enum RenderMinimap {\n\tNone = 0,\n\tText = 1,\n\tBlocks = 2\n}\n\nexport enum ScrollType {\n\tSmooth = 0,\n\tImmediate = 1\n}\n\nexport enum ScrollbarVisibility {\n\tAuto = 1,\n\tHidden = 2,\n\tVisible = 3\n}\n\n/**\n * The direction of a selection.\n */\nexport enum SelectionDirection {\n\t/**\n\t * The selection starts above where it ends.\n\t */\n\tLTR = 0,\n\t/**\n\t * The selection starts below where it ends.\n\t */\n\tRTL = 1\n}\n\nexport enum ShowLightbulbIconMode {\n\tOff = 'off',\n\tOnCode = 'onCode',\n\tOn = 'on'\n}\n\nexport enum SignatureHelpTriggerKind {\n\tInvoke = 1,\n\tTriggerCharacter = 2,\n\tContentChange = 3\n}\n\n/**\n * A symbol kind.\n */\nexport enum SymbolKind {\n\tFile = 0,\n\tModule = 1,\n\tNamespace = 2,\n\tPackage = 3,\n\tClass = 4,\n\tMethod = 5,\n\tProperty = 6,\n\tField = 7,\n\tConstructor = 8,\n\tEnum = 9,\n\tInterface = 10,\n\tFunction = 11,\n\tVariable = 12,\n\tConstant = 13,\n\tString = 14,\n\tNumber = 15,\n\tBoolean = 16,\n\tArray = 17,\n\tObject = 18,\n\tKey = 19,\n\tNull = 20,\n\tEnumMember = 21,\n\tStruct = 22,\n\tEvent = 23,\n\tOperator = 24,\n\tTypeParameter = 25\n}\n\nexport enum SymbolTag {\n\tDeprecated = 1\n}\n\n/**\n * Text Direction for a decoration.\n */\nexport enum TextDirection {\n\tLTR = 0,\n\tRTL = 1\n}\n\n/**\n * The kind of animation in which the editor's cursor should be rendered.\n */\nexport enum TextEditorCursorBlinkingStyle {\n\t/**\n\t * Hidden\n\t */\n\tHidden = 0,\n\t/**\n\t * Blinking\n\t */\n\tBlink = 1,\n\t/**\n\t * Blinking with smooth fading\n\t */\n\tSmooth = 2,\n\t/**\n\t * Blinking with prolonged filled state and smooth fading\n\t */\n\tPhase = 3,\n\t/**\n\t * Expand collapse animation on the y axis\n\t */\n\tExpand = 4,\n\t/**\n\t * No-Blinking\n\t */\n\tSolid = 5\n}\n\n/**\n * The style in which the editor's cursor should be rendered.\n */\nexport enum TextEditorCursorStyle {\n\t/**\n\t * As a vertical line (sitting between two characters).\n\t */\n\tLine = 1,\n\t/**\n\t * As a block (sitting on top of a character).\n\t */\n\tBlock = 2,\n\t/**\n\t * As a horizontal line (sitting under a character).\n\t */\n\tUnderline = 3,\n\t/**\n\t * As a thin vertical line (sitting between two characters).\n\t */\n\tLineThin = 4,\n\t/**\n\t * As an outlined block (sitting on top of a character).\n\t */\n\tBlockOutline = 5,\n\t/**\n\t * As a thin horizontal line (sitting under a character).\n\t */\n\tUnderlineThin = 6\n}\n\n/**\n * Describes the behavior of decorations when typing/editing near their edges.\n * Note: Please do not edit the values, as they very carefully match `DecorationRangeBehavior`\n */\nexport enum TrackedRangeStickiness {\n\tAlwaysGrowsWhenTypingAtEdges = 0,\n\tNeverGrowsWhenTypingAtEdges = 1,\n\tGrowsOnlyWhenTypingBefore = 2,\n\tGrowsOnlyWhenTypingAfter = 3\n}\n\n/**\n * Describes how to indent wrapped lines.\n */\nexport enum WrappingIndent {\n\t/**\n\t * No indentation => wrapped lines begin at column 1.\n\t */\n\tNone = 0,\n\t/**\n\t * Same => wrapped lines get the same indentation as the parent.\n\t */\n\tSame = 1,\n\t/**\n\t * Indent => wrapped lines get +1 indentation toward the parent.\n\t */\n\tIndent = 2,\n\t/**\n\t * DeepIndent => wrapped lines get +2 indentation toward the parent.\n\t */\n\tDeepIndent = 3\n}","/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n\n// THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY.\n\n\nexport enum AccessibilitySupport {\n\t/**\n\t * This should be the browser case where it is not known if a screen reader is attached or no.\n\t */\n\tUnknown = 0,\n\tDisabled = 1,\n\tEnabled = 2\n}\n\nexport enum CodeActionTriggerType {\n\tInvoke = 1,\n\tAuto = 2\n}\n\nexport enum CompletionItemInsertTextRule {\n\tNone = 0,\n\t/**\n\t * Adjust whitespace/indentation of multiline insert texts to\n\t * match the current line indentation.\n\t */\n\tKeepWhitespace = 1,\n\t/**\n\t * `insertText` is a snippet.\n\t */\n\tInsertAsSnippet = 4\n}\n\nexport enum CompletionItemKind {\n\tMethod = 0,\n\tFunction = 1,\n\tConstructor = 2,\n\tField = 3,\n\tVariable = 4,\n\tClass = 5,\n\tStruct = 6,\n\tInterface = 7,\n\tModule = 8,\n\tProperty = 9,\n\tEvent = 10,\n\tOperator = 11,\n\tUnit = 12,\n\tValue = 13,\n\tConstant = 14,\n\tEnum = 15,\n\tEnumMember = 16,\n\tKeyword = 17,\n\tText = 18,\n\tColor = 19,\n\tFile = 20,\n\tReference = 21,\n\tCustomcolor = 22,\n\tFolder = 23,\n\tTypeParameter = 24,\n\tUser = 25,\n\tIssue = 26,\n\tTool = 27,\n\tSnippet = 28\n}\n\nexport enum CompletionItemTag {\n\tDeprecated = 1\n}\n\n/**\n * How a suggest provider was triggered.\n */\nexport enum CompletionTriggerKind {\n\tInvoke = 0,\n\tTriggerCharacter = 1,\n\tTriggerForIncompleteCompletions = 2\n}\n\n/**\n * A positioning preference for rendering content widgets.\n */\nexport enum ContentWidgetPositionPreference {\n\t/**\n\t * Place the content widget exactly at a position\n\t */\n\tEXACT = 0,\n\t/**\n\t * Place the content widget above a position\n\t */\n\tABOVE = 1,\n\t/**\n\t * Place the content widget below a position\n\t */\n\tBELOW = 2\n}\n\n/**\n * Describes the reason the cursor has changed its position.\n */\nexport enum CursorChangeReason {\n\t/**\n\t * Unknown or not set.\n\t */\n\tNotSet = 0,\n\t/**\n\t * A `model.setValue()` was called.\n\t */\n\tContentFlush = 1,\n\t/**\n\t * The `model` has been changed outside of this cursor and the cursor recovers its position from associated markers.\n\t */\n\tRecoverFromMarkers = 2,\n\t/**\n\t * There was an explicit user gesture.\n\t */\n\tExplicit = 3,\n\t/**\n\t * There was a Paste.\n\t */\n\tPaste = 4,\n\t/**\n\t * There was an Undo.\n\t */\n\tUndo = 5,\n\t/**\n\t * There was a Redo.\n\t */\n\tRedo = 6\n}\n\n/**\n * The default end of line to use when instantiating models.\n */\nexport enum DefaultEndOfLine {\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 1,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 2\n}\n\n/**\n * A document highlight kind.\n */\nexport enum DocumentHighlightKind {\n\t/**\n\t * A textual occurrence.\n\t */\n\tText = 0,\n\t/**\n\t * Read-access of a symbol, like reading a variable.\n\t */\n\tRead = 1,\n\t/**\n\t * Write-access of a symbol, like writing to a variable.\n\t */\n\tWrite = 2\n}\n\n/**\n * Configuration options for auto indentation in the editor\n */\nexport enum EditorAutoIndentStrategy {\n\tNone = 0,\n\tKeep = 1,\n\tBrackets = 2,\n\tAdvanced = 3,\n\tFull = 4\n}\n\nexport enum EditorOption {\n\tacceptSuggestionOnCommitCharacter = 0,\n\tacceptSuggestionOnEnter = 1,\n\taccessibilitySupport = 2,\n\taccessibilityPageSize = 3,\n\tallowOverflow = 4,\n\tallowVariableLineHeights = 5,\n\tallowVariableFonts = 6,\n\tallowVariableFontsInAccessibilityMode = 7,\n\tariaLabel = 8,\n\tariaRequired = 9,\n\tautoClosingBrackets = 10,\n\tautoClosingComments = 11,\n\tscreenReaderAnnounceInlineSuggestion = 12,\n\tautoClosingDelete = 13,\n\tautoClosingOvertype = 14,\n\tautoClosingQuotes = 15,\n\tautoIndent = 16,\n\tautoIndentOnPaste = 17,\n\tautoIndentOnPasteWithinString = 18,\n\tautomaticLayout = 19,\n\tautoSurround = 20,\n\tbracketPairColorization = 21,\n\tguides = 22,\n\tcodeLens = 23,\n\tcodeLensFontFamily = 24,\n\tcodeLensFontSize = 25,\n\tcolorDecorators = 26,\n\tcolorDecoratorsLimit = 27,\n\tcolumnSelection = 28,\n\tcomments = 29,\n\tcontextmenu = 30,\n\tcopyWithSyntaxHighlighting = 31,\n\tcursorBlinking = 32,\n\tcursorSmoothCaretAnimation = 33,\n\tcursorStyle = 34,\n\tcursorSurroundingLines = 35,\n\tcursorSurroundingLinesStyle = 36,\n\tcursorWidth = 37,\n\tcursorHeight = 38,\n\tdisableLayerHinting = 39,\n\tdisableMonospaceOptimizations = 40,\n\tdomReadOnly = 41,\n\tdragAndDrop = 42,\n\tdropIntoEditor = 43,\n\teditContext = 44,\n\temptySelectionClipboard = 45,\n\texperimentalGpuAcceleration = 46,\n\texperimentalWhitespaceRendering = 47,\n\textraEditorClassName = 48,\n\tfastScrollSensitivity = 49,\n\tfind = 50,\n\tfixedOverflowWidgets = 51,\n\tfolding = 52,\n\tfoldingStrategy = 53,\n\tfoldingHighlight = 54,\n\tfoldingImportsByDefault = 55,\n\tfoldingMaximumRegions = 56,\n\tunfoldOnClickAfterEndOfLine = 57,\n\tfontFamily = 58,\n\tfontInfo = 59,\n\tfontLigatures = 60,\n\tfontSize = 61,\n\tfontWeight = 62,\n\tfontVariations = 63,\n\tformatOnPaste = 64,\n\tformatOnType = 65,\n\tglyphMargin = 66,\n\tgotoLocation = 67,\n\thideCursorInOverviewRuler = 68,\n\thover = 69,\n\tinDiffEditor = 70,\n\tinlineSuggest = 71,\n\tletterSpacing = 72,\n\tlightbulb = 73,\n\tlineDecorationsWidth = 74,\n\tlineHeight = 75,\n\tlineNumbers = 76,\n\tlineNumbersMinChars = 77,\n\tlinkedEditing = 78,\n\tlinks = 79,\n\tmatchBrackets = 80,\n\tminimap = 81,\n\tmouseStyle = 82,\n\tmouseWheelScrollSensitivity = 83,\n\tmouseWheelZoom = 84,\n\tmultiCursorMergeOverlapping = 85,\n\tmultiCursorModifier = 86,\n\tmultiCursorPaste = 87,\n\tmultiCursorLimit = 88,\n\toccurrencesHighlight = 89,\n\toccurrencesHighlightDelay = 90,\n\tovertypeCursorStyle = 91,\n\tovertypeOnPaste = 92,\n\toverviewRulerBorder = 93,\n\toverviewRulerLanes = 94,\n\tpadding = 95,\n\tpasteAs = 96,\n\tparameterHints = 97,\n\tpeekWidgetDefaultFocus = 98,\n\tplaceholder = 99,\n\tdefinitionLinkOpensInPeek = 100,\n\tquickSuggestions = 101,\n\tquickSuggestionsDelay = 102,\n\treadOnly = 103,\n\treadOnlyMessage = 104,\n\trenameOnType = 105,\n\trenderRichScreenReaderContent = 106,\n\trenderControlCharacters = 107,\n\trenderFinalNewline = 108,\n\trenderLineHighlight = 109,\n\trenderLineHighlightOnlyWhenFocus = 110,\n\trenderValidationDecorations = 111,\n\trenderWhitespace = 112,\n\trevealHorizontalRightPadding = 113,\n\troundedSelection = 114,\n\trulers = 115,\n\tscrollbar = 116,\n\tscrollBeyondLastColumn = 117,\n\tscrollBeyondLastLine = 118,\n\tscrollPredominantAxis = 119,\n\tselectionClipboard = 120,\n\tselectionHighlight = 121,\n\tselectionHighlightMaxLength = 122,\n\tselectionHighlightMultiline = 123,\n\tselectOnLineNumbers = 124,\n\tshowFoldingControls = 125,\n\tshowUnused = 126,\n\tsnippetSuggestions = 127,\n\tsmartSelect = 128,\n\tsmoothScrolling = 129,\n\tstickyScroll = 130,\n\tstickyTabStops = 131,\n\tstopRenderingLineAfter = 132,\n\tsuggest = 133,\n\tsuggestFontSize = 134,\n\tsuggestLineHeight = 135,\n\tsuggestOnTriggerCharacters = 136,\n\tsuggestSelection = 137,\n\ttabCompletion = 138,\n\ttabIndex = 139,\n\ttrimWhitespaceOnDelete = 140,\n\tunicodeHighlighting = 141,\n\tunusualLineTerminators = 142,\n\tuseShadowDOM = 143,\n\tuseTabStops = 144,\n\twordBreak = 145,\n\twordSegmenterLocales = 146,\n\twordSeparators = 147,\n\twordWrap = 148,\n\twordWrapBreakAfterCharacters = 149,\n\twordWrapBreakBeforeCharacters = 150,\n\twordWrapColumn = 151,\n\twordWrapOverride1 = 152,\n\twordWrapOverride2 = 153,\n\twrappingIndent = 154,\n\twrappingStrategy = 155,\n\tshowDeprecated = 156,\n\tinertialScroll = 157,\n\tinlayHints = 158,\n\twrapOnEscapedLineFeeds = 159,\n\teffectiveCursorStyle = 160,\n\teditorClassName = 161,\n\tpixelRatio = 162,\n\ttabFocusMode = 163,\n\tlayoutInfo = 164,\n\twrappingInfo = 165,\n\tdefaultColorDecorators = 166,\n\tcolorDecoratorsActivatedOn = 167,\n\tinlineCompletionsAccessibilityVerbose = 168,\n\teffectiveEditContext = 169,\n\tscrollOnMiddleClick = 170,\n\teffectiveAllowVariableFonts = 171\n}\n\n/**\n * End of line character preference.\n */\nexport enum EndOfLinePreference {\n\t/**\n\t * Use the end of line character identified in the text buffer.\n\t */\n\tTextDefined = 0,\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 1,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 2\n}\n\n/**\n * End of line character preference.\n */\nexport enum EndOfLineSequence {\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 0,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 1\n}\n\n/**\n * Vertical Lane in the glyph margin of the editor.\n */\nexport enum GlyphMarginLane {\n\tLeft = 1,\n\tCenter = 2,\n\tRight = 3\n}\n\nexport enum HoverVerbosityAction {\n\t/**\n\t * Increase the verbosity of the hover\n\t */\n\tIncrease = 0,\n\t/**\n\t * Decrease the verbosity of the hover\n\t */\n\tDecrease = 1\n}\n\n/**\n * Describes what to do with the indentation when pressing Enter.\n */\nexport enum IndentAction {\n\t/**\n\t * Insert new line and copy the previous line's indentation.\n\t */\n\tNone = 0,\n\t/**\n\t * Insert new line and indent once (relative to the previous line's indentation).\n\t */\n\tIndent = 1,\n\t/**\n\t * Insert two new lines:\n\t * - the first one indented which will hold the cursor\n\t * - the second one at the same indentation level\n\t */\n\tIndentOutdent = 2,\n\t/**\n\t * Insert new line and outdent once (relative to the previous line's indentation).\n\t */\n\tOutdent = 3\n}\n\nexport enum InjectedTextCursorStops {\n\tBoth = 0,\n\tRight = 1,\n\tLeft = 2,\n\tNone = 3\n}\n\nexport enum InlayHintKind {\n\tType = 1,\n\tParameter = 2\n}\n\nexport enum InlineCompletionDisplayLocationKind {\n\tCode = 1,\n\tLabel = 2\n}\n\nexport enum InlineCompletionEndOfLifeReasonKind {\n\tAccepted = 0,\n\tRejected = 1,\n\tIgnored = 2\n}\n\n/**\n * How an {@link InlineCompletionsProvider inline completion provider} was triggered.\n */\nexport enum InlineCompletionTriggerKind {\n\t/**\n\t * Completion was triggered automatically while editing.\n\t * It is sufficient to return a single completion item in this case.\n\t */\n\tAutomatic = 0,\n\t/**\n\t * Completion was triggered explicitly by a user gesture.\n\t * Return multiple completion items to enable cycling through them.\n\t */\n\tExplicit = 1\n}\n/**\n * Virtual Key Codes, the value does not hold any inherent meaning.\n * Inspired somewhat from https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx\n * But these are \"more general\", as they should work across browsers & OS`s.\n */\nexport enum KeyCode {\n\tDependsOnKbLayout = -1,\n\t/**\n\t * Placed first to cover the 0 value of the enum.\n\t */\n\tUnknown = 0,\n\tBackspace = 1,\n\tTab = 2,\n\tEnter = 3,\n\tShift = 4,\n\tCtrl = 5,\n\tAlt = 6,\n\tPauseBreak = 7,\n\tCapsLock = 8,\n\tEscape = 9,\n\tSpace = 10,\n\tPageUp = 11,\n\tPageDown = 12,\n\tEnd = 13,\n\tHome = 14,\n\tLeftArrow = 15,\n\tUpArrow = 16,\n\tRightArrow = 17,\n\tDownArrow = 18,\n\tInsert = 19,\n\tDelete = 20,\n\tDigit0 = 21,\n\tDigit1 = 22,\n\tDigit2 = 23,\n\tDigit3 = 24,\n\tDigit4 = 25,\n\tDigit5 = 26,\n\tDigit6 = 27,\n\tDigit7 = 28,\n\tDigit8 = 29,\n\tDigit9 = 30,\n\tKeyA = 31,\n\tKeyB = 32,\n\tKeyC = 33,\n\tKeyD = 34,\n\tKeyE = 35,\n\tKeyF = 36,\n\tKeyG = 37,\n\tKeyH = 38,\n\tKeyI = 39,\n\tKeyJ = 40,\n\tKeyK = 41,\n\tKeyL = 42,\n\tKeyM = 43,\n\tKeyN = 44,\n\tKeyO = 45,\n\tKeyP = 46,\n\tKeyQ = 47,\n\tKeyR = 48,\n\tKeyS = 49,\n\tKeyT = 50,\n\tKeyU = 51,\n\tKeyV = 52,\n\tKeyW = 53,\n\tKeyX = 54,\n\tKeyY = 55,\n\tKeyZ = 56,\n\tMeta = 57,\n\tContextMenu = 58,\n\tF1 = 59,\n\tF2 = 60,\n\tF3 = 61,\n\tF4 = 62,\n\tF5 = 63,\n\tF6 = 64,\n\tF7 = 65,\n\tF8 = 66,\n\tF9 = 67,\n\tF10 = 68,\n\tF11 = 69,\n\tF12 = 70,\n\tF13 = 71,\n\tF14 = 72,\n\tF15 = 73,\n\tF16 = 74,\n\tF17 = 75,\n\tF18 = 76,\n\tF19 = 77,\n\tF20 = 78,\n\tF21 = 79,\n\tF22 = 80,\n\tF23 = 81,\n\tF24 = 82,\n\tNumLock = 83,\n\tScrollLock = 84,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ';:' key\n\t */\n\tSemicolon = 85,\n\t/**\n\t * For any country/region, the '+' key\n\t * For the US standard keyboard, the '=+' key\n\t */\n\tEqual = 86,\n\t/**\n\t * For any country/region, the ',' key\n\t * For the US standard keyboard, the ',<' key\n\t */\n\tComma = 87,\n\t/**\n\t * For any country/region, the '-' key\n\t * For the US standard keyboard, the '-_' key\n\t */\n\tMinus = 88,\n\t/**\n\t * For any country/region, the '.' key\n\t * For the US standard keyboard, the '.>' key\n\t */\n\tPeriod = 89,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '/?' key\n\t */\n\tSlash = 90,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '`~' key\n\t */\n\tBackquote = 91,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '[{' key\n\t */\n\tBracketLeft = 92,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '\\|' key\n\t */\n\tBackslash = 93,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ']}' key\n\t */\n\tBracketRight = 94,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ''\"' key\n\t */\n\tQuote = 95,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t */\n\tOEM_8 = 96,\n\t/**\n\t * Either the angle bracket key or the backslash key on the RT 102-key keyboard.\n\t */\n\tIntlBackslash = 97,\n\tNumpad0 = 98,// VK_NUMPAD0, 0x60, Numeric keypad 0 key\n\tNumpad1 = 99,// VK_NUMPAD1, 0x61, Numeric keypad 1 key\n\tNumpad2 = 100,// VK_NUMPAD2, 0x62, Numeric keypad 2 key\n\tNumpad3 = 101,// VK_NUMPAD3, 0x63, Numeric keypad 3 key\n\tNumpad4 = 102,// VK_NUMPAD4, 0x64, Numeric keypad 4 key\n\tNumpad5 = 103,// VK_NUMPAD5, 0x65, Numeric keypad 5 key\n\tNumpad6 = 104,// VK_NUMPAD6, 0x66, Numeric keypad 6 key\n\tNumpad7 = 105,// VK_NUMPAD7, 0x67, Numeric keypad 7 key\n\tNumpad8 = 106,// VK_NUMPAD8, 0x68, Numeric keypad 8 key\n\tNumpad9 = 107,// VK_NUMPAD9, 0x69, Numeric keypad 9 key\n\tNumpadMultiply = 108,// VK_MULTIPLY, 0x6A, Multiply key\n\tNumpadAdd = 109,// VK_ADD, 0x6B, Add key\n\tNUMPAD_SEPARATOR = 110,// VK_SEPARATOR, 0x6C, Separator key\n\tNumpadSubtract = 111,// VK_SUBTRACT, 0x6D, Subtract key\n\tNumpadDecimal = 112,// VK_DECIMAL, 0x6E, Decimal key\n\tNumpadDivide = 113,// VK_DIVIDE, 0x6F,\n\t/**\n\t * Cover all key codes when IME is processing input.\n\t */\n\tKEY_IN_COMPOSITION = 114,\n\tABNT_C1 = 115,// Brazilian (ABNT) Keyboard\n\tABNT_C2 = 116,// Brazilian (ABNT) Keyboard\n\tAudioVolumeMute = 117,\n\tAudioVolumeUp = 118,\n\tAudioVolumeDown = 119,\n\tBrowserSearch = 120,\n\tBrowserHome = 121,\n\tBrowserBack = 122,\n\tBrowserForward = 123,\n\tMediaTrackNext = 124,\n\tMediaTrackPrevious = 125,\n\tMediaStop = 126,\n\tMediaPlayPause = 127,\n\tLaunchMediaPlayer = 128,\n\tLaunchMail = 129,\n\tLaunchApp2 = 130,\n\t/**\n\t * VK_CLEAR, 0x0C, CLEAR key\n\t */\n\tClear = 131,\n\t/**\n\t * Placed last to cover the length of the enum.\n\t * Please do not depend on this value!\n\t */\n\tMAX_VALUE = 132\n}\n\nexport enum MarkerSeverity {\n\tHint = 1,\n\tInfo = 2,\n\tWarning = 4,\n\tError = 8\n}\n\nexport enum MarkerTag {\n\tUnnecessary = 1,\n\tDeprecated = 2\n}\n\n/**\n * Position in the minimap to render the decoration.\n */\nexport enum MinimapPosition {\n\tInline = 1,\n\tGutter = 2\n}\n\n/**\n * Section header style.\n */\nexport enum MinimapSectionHeaderStyle {\n\tNormal = 1,\n\tUnderlined = 2\n}\n\n/**\n * Type of hit element with the mouse in the editor.\n */\nexport enum MouseTargetType {\n\t/**\n\t * Mouse is on top of an unknown element.\n\t */\n\tUNKNOWN = 0,\n\t/**\n\t * Mouse is on top of the textarea used for input.\n\t */\n\tTEXTAREA = 1,\n\t/**\n\t * Mouse is on top of the glyph margin\n\t */\n\tGUTTER_GLYPH_MARGIN = 2,\n\t/**\n\t * Mouse is on top of the line numbers\n\t */\n\tGUTTER_LINE_NUMBERS = 3,\n\t/**\n\t * Mouse is on top of the line decorations\n\t */\n\tGUTTER_LINE_DECORATIONS = 4,\n\t/**\n\t * Mouse is on top of the whitespace left in the gutter by a view zone.\n\t */\n\tGUTTER_VIEW_ZONE = 5,\n\t/**\n\t * Mouse is on top of text in the content.\n\t */\n\tCONTENT_TEXT = 6,\n\t/**\n\t * Mouse is on top of empty space in the content (e.g. after line text or below last line)\n\t */\n\tCONTENT_EMPTY = 7,\n\t/**\n\t * Mouse is on top of a view zone in the content.\n\t */\n\tCONTENT_VIEW_ZONE = 8,\n\t/**\n\t * Mouse is on top of a content widget.\n\t */\n\tCONTENT_WIDGET = 9,\n\t/**\n\t * Mouse is on top of the decorations overview ruler.\n\t */\n\tOVERVIEW_RULER = 10,\n\t/**\n\t * Mouse is on top of a scrollbar.\n\t */\n\tSCROLLBAR = 11,\n\t/**\n\t * Mouse is on top of an overlay widget.\n\t */\n\tOVERLAY_WIDGET = 12,\n\t/**\n\t * Mouse is outside of the editor.\n\t */\n\tOUTSIDE_EDITOR = 13\n}\n\nexport enum NewSymbolNameTag {\n\tAIGenerated = 1\n}\n\nexport enum NewSymbolNameTriggerKind {\n\tInvoke = 0,\n\tAutomatic = 1\n}\n\n/**\n * A positioning preference for rendering overlay widgets.\n */\nexport enum OverlayWidgetPositionPreference {\n\t/**\n\t * Position the overlay widget in the top right corner\n\t */\n\tTOP_RIGHT_CORNER = 0,\n\t/**\n\t * Position the overlay widget in the bottom right corner\n\t */\n\tBOTTOM_RIGHT_CORNER = 1,\n\t/**\n\t * Position the overlay widget in the top center\n\t */\n\tTOP_CENTER = 2\n}\n\n/**\n * Vertical Lane in the overview ruler of the editor.\n */\nexport enum OverviewRulerLane {\n\tLeft = 1,\n\tCenter = 2,\n\tRight = 4,\n\tFull = 7\n}\n\n/**\n * How a partial acceptance was triggered.\n */\nexport enum PartialAcceptTriggerKind {\n\tWord = 0,\n\tLine = 1,\n\tSuggest = 2\n}\n\nexport enum PositionAffinity {\n\t/**\n\t * Prefers the left most position.\n\t*/\n\tLeft = 0,\n\t/**\n\t * Prefers the right most position.\n\t*/\n\tRight = 1,\n\t/**\n\t * No preference.\n\t*/\n\tNone = 2,\n\t/**\n\t * If the given position is on injected text, prefers the position left of it.\n\t*/\n\tLeftOfInjectedText = 3,\n\t/**\n\t * If the given position is on injected text, prefers the position right of it.\n\t*/\n\tRightOfInjectedText = 4\n}\n\nexport enum RenderLineNumbersType {\n\tOff = 0,\n\tOn = 1,\n\tRelative = 2,\n\tInterval = 3,\n\tCustom = 4\n}\n\nexport enum RenderMinimap {\n\tNone = 0,\n\tText = 1,\n\tBlocks = 2\n}\n\nexport enum ScrollType {\n\tSmooth = 0,\n\tImmediate = 1\n}\n\nexport enum ScrollbarVisibility {\n\tAuto = 1,\n\tHidden = 2,\n\tVisible = 3\n}\n\n/**\n * The direction of a selection.\n */\nexport enum SelectionDirection {\n\t/**\n\t * The selection starts above where it ends.\n\t */\n\tLTR = 0,\n\t/**\n\t * The selection starts below where it ends.\n\t */\n\tRTL = 1\n}\n\nexport enum ShowLightbulbIconMode {\n\tOff = 'off',\n\tOnCode = 'onCode',\n\tOn = 'on'\n}\n\nexport enum SignatureHelpTriggerKind {\n\tInvoke = 1,\n\tTriggerCharacter = 2,\n\tContentChange = 3\n}\n\n/**\n * A symbol kind.\n */\nexport enum SymbolKind {\n\tFile = 0,\n\tModule = 1,\n\tNamespace = 2,\n\tPackage = 3,\n\tClass = 4,\n\tMethod = 5,\n\tProperty = 6,\n\tField = 7,\n\tConstructor = 8,\n\tEnum = 9,\n\tInterface = 10,\n\tFunction = 11,\n\tVariable = 12,\n\tConstant = 13,\n\tString = 14,\n\tNumber = 15,\n\tBoolean = 16,\n\tArray = 17,\n\tObject = 18,\n\tKey = 19,\n\tNull = 20,\n\tEnumMember = 21,\n\tStruct = 22,\n\tEvent = 23,\n\tOperator = 24,\n\tTypeParameter = 25\n}\n\nexport enum SymbolTag {\n\tDeprecated = 1\n}\n\n/**\n * Text Direction for a decoration.\n */\nexport enum TextDirection {\n\tLTR = 0,\n\tRTL = 1\n}\n\n/**\n * The kind of animation in which the editor's cursor should be rendered.\n */\nexport enum TextEditorCursorBlinkingStyle {\n\t/**\n\t * Hidden\n\t */\n\tHidden = 0,\n\t/**\n\t * Blinking\n\t */\n\tBlink = 1,\n\t/**\n\t * Blinking with smooth fading\n\t */\n\tSmooth = 2,\n\t/**\n\t * Blinking with prolonged filled state and smooth fading\n\t */\n\tPhase = 3,\n\t/**\n\t * Expand collapse animation on the y axis\n\t */\n\tExpand = 4,\n\t/**\n\t * No-Blinking\n\t */\n\tSolid = 5\n}\n\n/**\n * The style in which the editor's cursor should be rendered.\n */\nexport enum TextEditorCursorStyle {\n\t/**\n\t * As a vertical line (sitting between two characters).\n\t */\n\tLine = 1,\n\t/**\n\t * As a block (sitting on top of a character).\n\t */\n\tBlock = 2,\n\t/**\n\t * As a horizontal line (sitting under a character).\n\t */\n\tUnderline = 3,\n\t/**\n\t * As a thin vertical line (sitting between two characters).\n\t */\n\tLineThin = 4,\n\t/**\n\t * As an outlined block (sitting on top of a character).\n\t */\n\tBlockOutline = 5,\n\t/**\n\t * As a thin horizontal line (sitting under a character).\n\t */\n\tUnderlineThin = 6\n}\n\n/**\n * Describes the behavior of decorations when typing/editing near their edges.\n * Note: Please do not edit the values, as they very carefully match `DecorationRangeBehavior`\n */\nexport enum TrackedRangeStickiness {\n\tAlwaysGrowsWhenTypingAtEdges = 0,\n\tNeverGrowsWhenTypingAtEdges = 1,\n\tGrowsOnlyWhenTypingBefore = 2,\n\tGrowsOnlyWhenTypingAfter = 3\n}\n\n/**\n * Describes how to indent wrapped lines.\n */\nexport enum WrappingIndent {\n\t/**\n\t * No indentation => wrapped lines begin at column 1.\n\t */\n\tNone = 0,\n\t/**\n\t * Same => wrapped lines get the same indentation as the parent.\n\t */\n\tSame = 1,\n\t/**\n\t * Indent => wrapped lines get +1 indentation toward the parent.\n\t */\n\tIndent = 2,\n\t/**\n\t * DeepIndent => wrapped lines get +2 indentation toward the parent.\n\t */\n\tDeepIndent = 3\n}"]}
|
|
1
|
+
{"version":3,"sources":["file:///mnt/vss/_work/1/s/dependencies/vscode/out-editor-src/vs/editor/common/standalone/standaloneEnums.ts","vs/editor/common/standalone/standaloneEnums.ts"],"names":[],"mappings":"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","file":"standaloneEnums.js","sourceRoot":"file:///mnt/vss/_work/1/s/dependencies/vscode/out-editor-src","sourcesContent":["/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n\n// THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY.\n\n\nexport enum AccessibilitySupport {\n\t/**\n\t * This should be the browser case where it is not known if a screen reader is attached or no.\n\t */\n\tUnknown = 0,\n\tDisabled = 1,\n\tEnabled = 2\n}\n\nexport enum CodeActionTriggerType {\n\tInvoke = 1,\n\tAuto = 2\n}\n\nexport enum CompletionItemInsertTextRule {\n\tNone = 0,\n\t/**\n\t * Adjust whitespace/indentation of multiline insert texts to\n\t * match the current line indentation.\n\t */\n\tKeepWhitespace = 1,\n\t/**\n\t * `insertText` is a snippet.\n\t */\n\tInsertAsSnippet = 4\n}\n\nexport enum CompletionItemKind {\n\tMethod = 0,\n\tFunction = 1,\n\tConstructor = 2,\n\tField = 3,\n\tVariable = 4,\n\tClass = 5,\n\tStruct = 6,\n\tInterface = 7,\n\tModule = 8,\n\tProperty = 9,\n\tEvent = 10,\n\tOperator = 11,\n\tUnit = 12,\n\tValue = 13,\n\tConstant = 14,\n\tEnum = 15,\n\tEnumMember = 16,\n\tKeyword = 17,\n\tText = 18,\n\tColor = 19,\n\tFile = 20,\n\tReference = 21,\n\tCustomcolor = 22,\n\tFolder = 23,\n\tTypeParameter = 24,\n\tUser = 25,\n\tIssue = 26,\n\tTool = 27,\n\tSnippet = 28\n}\n\nexport enum CompletionItemTag {\n\tDeprecated = 1\n}\n\n/**\n * How a suggest provider was triggered.\n */\nexport enum CompletionTriggerKind {\n\tInvoke = 0,\n\tTriggerCharacter = 1,\n\tTriggerForIncompleteCompletions = 2\n}\n\n/**\n * A positioning preference for rendering content widgets.\n */\nexport enum ContentWidgetPositionPreference {\n\t/**\n\t * Place the content widget exactly at a position\n\t */\n\tEXACT = 0,\n\t/**\n\t * Place the content widget above a position\n\t */\n\tABOVE = 1,\n\t/**\n\t * Place the content widget below a position\n\t */\n\tBELOW = 2\n}\n\n/**\n * Describes the reason the cursor has changed its position.\n */\nexport enum CursorChangeReason {\n\t/**\n\t * Unknown or not set.\n\t */\n\tNotSet = 0,\n\t/**\n\t * A `model.setValue()` was called.\n\t */\n\tContentFlush = 1,\n\t/**\n\t * The `model` has been changed outside of this cursor and the cursor recovers its position from associated markers.\n\t */\n\tRecoverFromMarkers = 2,\n\t/**\n\t * There was an explicit user gesture.\n\t */\n\tExplicit = 3,\n\t/**\n\t * There was a Paste.\n\t */\n\tPaste = 4,\n\t/**\n\t * There was an Undo.\n\t */\n\tUndo = 5,\n\t/**\n\t * There was a Redo.\n\t */\n\tRedo = 6\n}\n\n/**\n * The default end of line to use when instantiating models.\n */\nexport enum DefaultEndOfLine {\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 1,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 2\n}\n\n/**\n * A document highlight kind.\n */\nexport enum DocumentHighlightKind {\n\t/**\n\t * A textual occurrence.\n\t */\n\tText = 0,\n\t/**\n\t * Read-access of a symbol, like reading a variable.\n\t */\n\tRead = 1,\n\t/**\n\t * Write-access of a symbol, like writing to a variable.\n\t */\n\tWrite = 2\n}\n\n/**\n * Configuration options for auto indentation in the editor\n */\nexport enum EditorAutoIndentStrategy {\n\tNone = 0,\n\tKeep = 1,\n\tBrackets = 2,\n\tAdvanced = 3,\n\tFull = 4\n}\n\nexport enum EditorOption {\n\tacceptSuggestionOnCommitCharacter = 0,\n\tacceptSuggestionOnEnter = 1,\n\taccessibilitySupport = 2,\n\taccessibilityPageSize = 3,\n\tallowOverflow = 4,\n\tallowVariableLineHeights = 5,\n\tallowVariableFonts = 6,\n\tallowVariableFontsInAccessibilityMode = 7,\n\tariaLabel = 8,\n\tariaRequired = 9,\n\tautoClosingBrackets = 10,\n\tautoClosingComments = 11,\n\tscreenReaderAnnounceInlineSuggestion = 12,\n\tautoClosingDelete = 13,\n\tautoClosingOvertype = 14,\n\tautoClosingQuotes = 15,\n\tautoIndent = 16,\n\tautoIndentOnPaste = 17,\n\tautoIndentOnPasteWithinString = 18,\n\tautomaticLayout = 19,\n\tautoSurround = 20,\n\tbracketPairColorization = 21,\n\tguides = 22,\n\tcodeLens = 23,\n\tcodeLensFontFamily = 24,\n\tcodeLensFontSize = 25,\n\tcolorDecorators = 26,\n\tcolorDecoratorsLimit = 27,\n\tcolumnSelection = 28,\n\tcomments = 29,\n\tcontextmenu = 30,\n\tcopyWithSyntaxHighlighting = 31,\n\tcursorBlinking = 32,\n\tcursorSmoothCaretAnimation = 33,\n\tcursorStyle = 34,\n\tcursorSurroundingLines = 35,\n\tcursorSurroundingLinesStyle = 36,\n\tcursorWidth = 37,\n\tcursorHeight = 38,\n\tdisableLayerHinting = 39,\n\tdisableMonospaceOptimizations = 40,\n\tdomReadOnly = 41,\n\tdragAndDrop = 42,\n\tdropIntoEditor = 43,\n\teditContext = 44,\n\temptySelectionClipboard = 45,\n\texperimentalGpuAcceleration = 46,\n\texperimentalWhitespaceRendering = 47,\n\textraEditorClassName = 48,\n\tfastScrollSensitivity = 49,\n\tfind = 50,\n\tfixedOverflowWidgets = 51,\n\tfolding = 52,\n\tfoldingStrategy = 53,\n\tfoldingHighlight = 54,\n\tfoldingImportsByDefault = 55,\n\tfoldingMaximumRegions = 56,\n\tunfoldOnClickAfterEndOfLine = 57,\n\tfontFamily = 58,\n\tfontInfo = 59,\n\tfontLigatures = 60,\n\tfontSize = 61,\n\tfontWeight = 62,\n\tfontVariations = 63,\n\tformatOnPaste = 64,\n\tformatOnType = 65,\n\tglyphMargin = 66,\n\tgotoLocation = 67,\n\thideCursorInOverviewRuler = 68,\n\thover = 69,\n\tinDiffEditor = 70,\n\tinlineSuggest = 71,\n\tletterSpacing = 72,\n\tlightbulb = 73,\n\tlineDecorationsWidth = 74,\n\tlineHeight = 75,\n\tlineNumbers = 76,\n\tlineNumbersMinChars = 77,\n\tlinkedEditing = 78,\n\tlinks = 79,\n\tmatchBrackets = 80,\n\tminimap = 81,\n\tmouseStyle = 82,\n\tmouseWheelScrollSensitivity = 83,\n\tmouseWheelZoom = 84,\n\tmultiCursorMergeOverlapping = 85,\n\tmultiCursorModifier = 86,\n\tmouseMiddleClickAction = 87,\n\tmultiCursorPaste = 88,\n\tmultiCursorLimit = 89,\n\toccurrencesHighlight = 90,\n\toccurrencesHighlightDelay = 91,\n\tovertypeCursorStyle = 92,\n\tovertypeOnPaste = 93,\n\toverviewRulerBorder = 94,\n\toverviewRulerLanes = 95,\n\tpadding = 96,\n\tpasteAs = 97,\n\tparameterHints = 98,\n\tpeekWidgetDefaultFocus = 99,\n\tplaceholder = 100,\n\tdefinitionLinkOpensInPeek = 101,\n\tquickSuggestions = 102,\n\tquickSuggestionsDelay = 103,\n\treadOnly = 104,\n\treadOnlyMessage = 105,\n\trenameOnType = 106,\n\trenderRichScreenReaderContent = 107,\n\trenderControlCharacters = 108,\n\trenderFinalNewline = 109,\n\trenderLineHighlight = 110,\n\trenderLineHighlightOnlyWhenFocus = 111,\n\trenderValidationDecorations = 112,\n\trenderWhitespace = 113,\n\trevealHorizontalRightPadding = 114,\n\troundedSelection = 115,\n\trulers = 116,\n\tscrollbar = 117,\n\tscrollBeyondLastColumn = 118,\n\tscrollBeyondLastLine = 119,\n\tscrollPredominantAxis = 120,\n\tselectionClipboard = 121,\n\tselectionHighlight = 122,\n\tselectionHighlightMaxLength = 123,\n\tselectionHighlightMultiline = 124,\n\tselectOnLineNumbers = 125,\n\tshowFoldingControls = 126,\n\tshowUnused = 127,\n\tsnippetSuggestions = 128,\n\tsmartSelect = 129,\n\tsmoothScrolling = 130,\n\tstickyScroll = 131,\n\tstickyTabStops = 132,\n\tstopRenderingLineAfter = 133,\n\tsuggest = 134,\n\tsuggestFontSize = 135,\n\tsuggestLineHeight = 136,\n\tsuggestOnTriggerCharacters = 137,\n\tsuggestSelection = 138,\n\ttabCompletion = 139,\n\ttabIndex = 140,\n\ttrimWhitespaceOnDelete = 141,\n\tunicodeHighlighting = 142,\n\tunusualLineTerminators = 143,\n\tuseShadowDOM = 144,\n\tuseTabStops = 145,\n\twordBreak = 146,\n\twordSegmenterLocales = 147,\n\twordSeparators = 148,\n\twordWrap = 149,\n\twordWrapBreakAfterCharacters = 150,\n\twordWrapBreakBeforeCharacters = 151,\n\twordWrapColumn = 152,\n\twordWrapOverride1 = 153,\n\twordWrapOverride2 = 154,\n\twrappingIndent = 155,\n\twrappingStrategy = 156,\n\tshowDeprecated = 157,\n\tinertialScroll = 158,\n\tinlayHints = 159,\n\twrapOnEscapedLineFeeds = 160,\n\teffectiveCursorStyle = 161,\n\teditorClassName = 162,\n\tpixelRatio = 163,\n\ttabFocusMode = 164,\n\tlayoutInfo = 165,\n\twrappingInfo = 166,\n\tdefaultColorDecorators = 167,\n\tcolorDecoratorsActivatedOn = 168,\n\tinlineCompletionsAccessibilityVerbose = 169,\n\teffectiveEditContext = 170,\n\tscrollOnMiddleClick = 171,\n\teffectiveAllowVariableFonts = 172\n}\n\n/**\n * End of line character preference.\n */\nexport enum EndOfLinePreference {\n\t/**\n\t * Use the end of line character identified in the text buffer.\n\t */\n\tTextDefined = 0,\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 1,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 2\n}\n\n/**\n * End of line character preference.\n */\nexport enum EndOfLineSequence {\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 0,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 1\n}\n\n/**\n * Vertical Lane in the glyph margin of the editor.\n */\nexport enum GlyphMarginLane {\n\tLeft = 1,\n\tCenter = 2,\n\tRight = 3\n}\n\nexport enum HoverVerbosityAction {\n\t/**\n\t * Increase the verbosity of the hover\n\t */\n\tIncrease = 0,\n\t/**\n\t * Decrease the verbosity of the hover\n\t */\n\tDecrease = 1\n}\n\n/**\n * Describes what to do with the indentation when pressing Enter.\n */\nexport enum IndentAction {\n\t/**\n\t * Insert new line and copy the previous line's indentation.\n\t */\n\tNone = 0,\n\t/**\n\t * Insert new line and indent once (relative to the previous line's indentation).\n\t */\n\tIndent = 1,\n\t/**\n\t * Insert two new lines:\n\t * - the first one indented which will hold the cursor\n\t * - the second one at the same indentation level\n\t */\n\tIndentOutdent = 2,\n\t/**\n\t * Insert new line and outdent once (relative to the previous line's indentation).\n\t */\n\tOutdent = 3\n}\n\nexport enum InjectedTextCursorStops {\n\tBoth = 0,\n\tRight = 1,\n\tLeft = 2,\n\tNone = 3\n}\n\nexport enum InlayHintKind {\n\tType = 1,\n\tParameter = 2\n}\n\nexport enum InlineCompletionDisplayLocationKind {\n\tCode = 1,\n\tLabel = 2\n}\n\nexport enum InlineCompletionEndOfLifeReasonKind {\n\tAccepted = 0,\n\tRejected = 1,\n\tIgnored = 2\n}\n\n/**\n * How an {@link InlineCompletionsProvider inline completion provider} was triggered.\n */\nexport enum InlineCompletionTriggerKind {\n\t/**\n\t * Completion was triggered automatically while editing.\n\t * It is sufficient to return a single completion item in this case.\n\t */\n\tAutomatic = 0,\n\t/**\n\t * Completion was triggered explicitly by a user gesture.\n\t * Return multiple completion items to enable cycling through them.\n\t */\n\tExplicit = 1\n}\n/**\n * Virtual Key Codes, the value does not hold any inherent meaning.\n * Inspired somewhat from https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx\n * But these are \"more general\", as they should work across browsers & OS`s.\n */\nexport enum KeyCode {\n\tDependsOnKbLayout = -1,\n\t/**\n\t * Placed first to cover the 0 value of the enum.\n\t */\n\tUnknown = 0,\n\tBackspace = 1,\n\tTab = 2,\n\tEnter = 3,\n\tShift = 4,\n\tCtrl = 5,\n\tAlt = 6,\n\tPauseBreak = 7,\n\tCapsLock = 8,\n\tEscape = 9,\n\tSpace = 10,\n\tPageUp = 11,\n\tPageDown = 12,\n\tEnd = 13,\n\tHome = 14,\n\tLeftArrow = 15,\n\tUpArrow = 16,\n\tRightArrow = 17,\n\tDownArrow = 18,\n\tInsert = 19,\n\tDelete = 20,\n\tDigit0 = 21,\n\tDigit1 = 22,\n\tDigit2 = 23,\n\tDigit3 = 24,\n\tDigit4 = 25,\n\tDigit5 = 26,\n\tDigit6 = 27,\n\tDigit7 = 28,\n\tDigit8 = 29,\n\tDigit9 = 30,\n\tKeyA = 31,\n\tKeyB = 32,\n\tKeyC = 33,\n\tKeyD = 34,\n\tKeyE = 35,\n\tKeyF = 36,\n\tKeyG = 37,\n\tKeyH = 38,\n\tKeyI = 39,\n\tKeyJ = 40,\n\tKeyK = 41,\n\tKeyL = 42,\n\tKeyM = 43,\n\tKeyN = 44,\n\tKeyO = 45,\n\tKeyP = 46,\n\tKeyQ = 47,\n\tKeyR = 48,\n\tKeyS = 49,\n\tKeyT = 50,\n\tKeyU = 51,\n\tKeyV = 52,\n\tKeyW = 53,\n\tKeyX = 54,\n\tKeyY = 55,\n\tKeyZ = 56,\n\tMeta = 57,\n\tContextMenu = 58,\n\tF1 = 59,\n\tF2 = 60,\n\tF3 = 61,\n\tF4 = 62,\n\tF5 = 63,\n\tF6 = 64,\n\tF7 = 65,\n\tF8 = 66,\n\tF9 = 67,\n\tF10 = 68,\n\tF11 = 69,\n\tF12 = 70,\n\tF13 = 71,\n\tF14 = 72,\n\tF15 = 73,\n\tF16 = 74,\n\tF17 = 75,\n\tF18 = 76,\n\tF19 = 77,\n\tF20 = 78,\n\tF21 = 79,\n\tF22 = 80,\n\tF23 = 81,\n\tF24 = 82,\n\tNumLock = 83,\n\tScrollLock = 84,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ';:' key\n\t */\n\tSemicolon = 85,\n\t/**\n\t * For any country/region, the '+' key\n\t * For the US standard keyboard, the '=+' key\n\t */\n\tEqual = 86,\n\t/**\n\t * For any country/region, the ',' key\n\t * For the US standard keyboard, the ',<' key\n\t */\n\tComma = 87,\n\t/**\n\t * For any country/region, the '-' key\n\t * For the US standard keyboard, the '-_' key\n\t */\n\tMinus = 88,\n\t/**\n\t * For any country/region, the '.' key\n\t * For the US standard keyboard, the '.>' key\n\t */\n\tPeriod = 89,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '/?' key\n\t */\n\tSlash = 90,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '`~' key\n\t */\n\tBackquote = 91,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '[{' key\n\t */\n\tBracketLeft = 92,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '\\|' key\n\t */\n\tBackslash = 93,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ']}' key\n\t */\n\tBracketRight = 94,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ''\"' key\n\t */\n\tQuote = 95,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t */\n\tOEM_8 = 96,\n\t/**\n\t * Either the angle bracket key or the backslash key on the RT 102-key keyboard.\n\t */\n\tIntlBackslash = 97,\n\tNumpad0 = 98,// VK_NUMPAD0, 0x60, Numeric keypad 0 key\n\tNumpad1 = 99,// VK_NUMPAD1, 0x61, Numeric keypad 1 key\n\tNumpad2 = 100,// VK_NUMPAD2, 0x62, Numeric keypad 2 key\n\tNumpad3 = 101,// VK_NUMPAD3, 0x63, Numeric keypad 3 key\n\tNumpad4 = 102,// VK_NUMPAD4, 0x64, Numeric keypad 4 key\n\tNumpad5 = 103,// VK_NUMPAD5, 0x65, Numeric keypad 5 key\n\tNumpad6 = 104,// VK_NUMPAD6, 0x66, Numeric keypad 6 key\n\tNumpad7 = 105,// VK_NUMPAD7, 0x67, Numeric keypad 7 key\n\tNumpad8 = 106,// VK_NUMPAD8, 0x68, Numeric keypad 8 key\n\tNumpad9 = 107,// VK_NUMPAD9, 0x69, Numeric keypad 9 key\n\tNumpadMultiply = 108,// VK_MULTIPLY, 0x6A, Multiply key\n\tNumpadAdd = 109,// VK_ADD, 0x6B, Add key\n\tNUMPAD_SEPARATOR = 110,// VK_SEPARATOR, 0x6C, Separator key\n\tNumpadSubtract = 111,// VK_SUBTRACT, 0x6D, Subtract key\n\tNumpadDecimal = 112,// VK_DECIMAL, 0x6E, Decimal key\n\tNumpadDivide = 113,// VK_DIVIDE, 0x6F,\n\t/**\n\t * Cover all key codes when IME is processing input.\n\t */\n\tKEY_IN_COMPOSITION = 114,\n\tABNT_C1 = 115,// Brazilian (ABNT) Keyboard\n\tABNT_C2 = 116,// Brazilian (ABNT) Keyboard\n\tAudioVolumeMute = 117,\n\tAudioVolumeUp = 118,\n\tAudioVolumeDown = 119,\n\tBrowserSearch = 120,\n\tBrowserHome = 121,\n\tBrowserBack = 122,\n\tBrowserForward = 123,\n\tMediaTrackNext = 124,\n\tMediaTrackPrevious = 125,\n\tMediaStop = 126,\n\tMediaPlayPause = 127,\n\tLaunchMediaPlayer = 128,\n\tLaunchMail = 129,\n\tLaunchApp2 = 130,\n\t/**\n\t * VK_CLEAR, 0x0C, CLEAR key\n\t */\n\tClear = 131,\n\t/**\n\t * Placed last to cover the length of the enum.\n\t * Please do not depend on this value!\n\t */\n\tMAX_VALUE = 132\n}\n\nexport enum MarkerSeverity {\n\tHint = 1,\n\tInfo = 2,\n\tWarning = 4,\n\tError = 8\n}\n\nexport enum MarkerTag {\n\tUnnecessary = 1,\n\tDeprecated = 2\n}\n\n/**\n * Position in the minimap to render the decoration.\n */\nexport enum MinimapPosition {\n\tInline = 1,\n\tGutter = 2\n}\n\n/**\n * Section header style.\n */\nexport enum MinimapSectionHeaderStyle {\n\tNormal = 1,\n\tUnderlined = 2\n}\n\n/**\n * Type of hit element with the mouse in the editor.\n */\nexport enum MouseTargetType {\n\t/**\n\t * Mouse is on top of an unknown element.\n\t */\n\tUNKNOWN = 0,\n\t/**\n\t * Mouse is on top of the textarea used for input.\n\t */\n\tTEXTAREA = 1,\n\t/**\n\t * Mouse is on top of the glyph margin\n\t */\n\tGUTTER_GLYPH_MARGIN = 2,\n\t/**\n\t * Mouse is on top of the line numbers\n\t */\n\tGUTTER_LINE_NUMBERS = 3,\n\t/**\n\t * Mouse is on top of the line decorations\n\t */\n\tGUTTER_LINE_DECORATIONS = 4,\n\t/**\n\t * Mouse is on top of the whitespace left in the gutter by a view zone.\n\t */\n\tGUTTER_VIEW_ZONE = 5,\n\t/**\n\t * Mouse is on top of text in the content.\n\t */\n\tCONTENT_TEXT = 6,\n\t/**\n\t * Mouse is on top of empty space in the content (e.g. after line text or below last line)\n\t */\n\tCONTENT_EMPTY = 7,\n\t/**\n\t * Mouse is on top of a view zone in the content.\n\t */\n\tCONTENT_VIEW_ZONE = 8,\n\t/**\n\t * Mouse is on top of a content widget.\n\t */\n\tCONTENT_WIDGET = 9,\n\t/**\n\t * Mouse is on top of the decorations overview ruler.\n\t */\n\tOVERVIEW_RULER = 10,\n\t/**\n\t * Mouse is on top of a scrollbar.\n\t */\n\tSCROLLBAR = 11,\n\t/**\n\t * Mouse is on top of an overlay widget.\n\t */\n\tOVERLAY_WIDGET = 12,\n\t/**\n\t * Mouse is outside of the editor.\n\t */\n\tOUTSIDE_EDITOR = 13\n}\n\nexport enum NewSymbolNameTag {\n\tAIGenerated = 1\n}\n\nexport enum NewSymbolNameTriggerKind {\n\tInvoke = 0,\n\tAutomatic = 1\n}\n\n/**\n * A positioning preference for rendering overlay widgets.\n */\nexport enum OverlayWidgetPositionPreference {\n\t/**\n\t * Position the overlay widget in the top right corner\n\t */\n\tTOP_RIGHT_CORNER = 0,\n\t/**\n\t * Position the overlay widget in the bottom right corner\n\t */\n\tBOTTOM_RIGHT_CORNER = 1,\n\t/**\n\t * Position the overlay widget in the top center\n\t */\n\tTOP_CENTER = 2\n}\n\n/**\n * Vertical Lane in the overview ruler of the editor.\n */\nexport enum OverviewRulerLane {\n\tLeft = 1,\n\tCenter = 2,\n\tRight = 4,\n\tFull = 7\n}\n\n/**\n * How a partial acceptance was triggered.\n */\nexport enum PartialAcceptTriggerKind {\n\tWord = 0,\n\tLine = 1,\n\tSuggest = 2\n}\n\nexport enum PositionAffinity {\n\t/**\n\t * Prefers the left most position.\n\t*/\n\tLeft = 0,\n\t/**\n\t * Prefers the right most position.\n\t*/\n\tRight = 1,\n\t/**\n\t * No preference.\n\t*/\n\tNone = 2,\n\t/**\n\t * If the given position is on injected text, prefers the position left of it.\n\t*/\n\tLeftOfInjectedText = 3,\n\t/**\n\t * If the given position is on injected text, prefers the position right of it.\n\t*/\n\tRightOfInjectedText = 4\n}\n\nexport enum RenderLineNumbersType {\n\tOff = 0,\n\tOn = 1,\n\tRelative = 2,\n\tInterval = 3,\n\tCustom = 4\n}\n\nexport enum RenderMinimap {\n\tNone = 0,\n\tText = 1,\n\tBlocks = 2\n}\n\nexport enum ScrollType {\n\tSmooth = 0,\n\tImmediate = 1\n}\n\nexport enum ScrollbarVisibility {\n\tAuto = 1,\n\tHidden = 2,\n\tVisible = 3\n}\n\n/**\n * The direction of a selection.\n */\nexport enum SelectionDirection {\n\t/**\n\t * The selection starts above where it ends.\n\t */\n\tLTR = 0,\n\t/**\n\t * The selection starts below where it ends.\n\t */\n\tRTL = 1\n}\n\nexport enum ShowLightbulbIconMode {\n\tOff = 'off',\n\tOnCode = 'onCode',\n\tOn = 'on'\n}\n\nexport enum SignatureHelpTriggerKind {\n\tInvoke = 1,\n\tTriggerCharacter = 2,\n\tContentChange = 3\n}\n\n/**\n * A symbol kind.\n */\nexport enum SymbolKind {\n\tFile = 0,\n\tModule = 1,\n\tNamespace = 2,\n\tPackage = 3,\n\tClass = 4,\n\tMethod = 5,\n\tProperty = 6,\n\tField = 7,\n\tConstructor = 8,\n\tEnum = 9,\n\tInterface = 10,\n\tFunction = 11,\n\tVariable = 12,\n\tConstant = 13,\n\tString = 14,\n\tNumber = 15,\n\tBoolean = 16,\n\tArray = 17,\n\tObject = 18,\n\tKey = 19,\n\tNull = 20,\n\tEnumMember = 21,\n\tStruct = 22,\n\tEvent = 23,\n\tOperator = 24,\n\tTypeParameter = 25\n}\n\nexport enum SymbolTag {\n\tDeprecated = 1\n}\n\n/**\n * Text Direction for a decoration.\n */\nexport enum TextDirection {\n\tLTR = 0,\n\tRTL = 1\n}\n\n/**\n * The kind of animation in which the editor's cursor should be rendered.\n */\nexport enum TextEditorCursorBlinkingStyle {\n\t/**\n\t * Hidden\n\t */\n\tHidden = 0,\n\t/**\n\t * Blinking\n\t */\n\tBlink = 1,\n\t/**\n\t * Blinking with smooth fading\n\t */\n\tSmooth = 2,\n\t/**\n\t * Blinking with prolonged filled state and smooth fading\n\t */\n\tPhase = 3,\n\t/**\n\t * Expand collapse animation on the y axis\n\t */\n\tExpand = 4,\n\t/**\n\t * No-Blinking\n\t */\n\tSolid = 5\n}\n\n/**\n * The style in which the editor's cursor should be rendered.\n */\nexport enum TextEditorCursorStyle {\n\t/**\n\t * As a vertical line (sitting between two characters).\n\t */\n\tLine = 1,\n\t/**\n\t * As a block (sitting on top of a character).\n\t */\n\tBlock = 2,\n\t/**\n\t * As a horizontal line (sitting under a character).\n\t */\n\tUnderline = 3,\n\t/**\n\t * As a thin vertical line (sitting between two characters).\n\t */\n\tLineThin = 4,\n\t/**\n\t * As an outlined block (sitting on top of a character).\n\t */\n\tBlockOutline = 5,\n\t/**\n\t * As a thin horizontal line (sitting under a character).\n\t */\n\tUnderlineThin = 6\n}\n\n/**\n * Describes the behavior of decorations when typing/editing near their edges.\n * Note: Please do not edit the values, as they very carefully match `DecorationRangeBehavior`\n */\nexport enum TrackedRangeStickiness {\n\tAlwaysGrowsWhenTypingAtEdges = 0,\n\tNeverGrowsWhenTypingAtEdges = 1,\n\tGrowsOnlyWhenTypingBefore = 2,\n\tGrowsOnlyWhenTypingAfter = 3\n}\n\n/**\n * Describes how to indent wrapped lines.\n */\nexport enum WrappingIndent {\n\t/**\n\t * No indentation => wrapped lines begin at column 1.\n\t */\n\tNone = 0,\n\t/**\n\t * Same => wrapped lines get the same indentation as the parent.\n\t */\n\tSame = 1,\n\t/**\n\t * Indent => wrapped lines get +1 indentation toward the parent.\n\t */\n\tIndent = 2,\n\t/**\n\t * DeepIndent => wrapped lines get +2 indentation toward the parent.\n\t */\n\tDeepIndent = 3\n}","/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n\n// THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY.\n\n\nexport enum AccessibilitySupport {\n\t/**\n\t * This should be the browser case where it is not known if a screen reader is attached or no.\n\t */\n\tUnknown = 0,\n\tDisabled = 1,\n\tEnabled = 2\n}\n\nexport enum CodeActionTriggerType {\n\tInvoke = 1,\n\tAuto = 2\n}\n\nexport enum CompletionItemInsertTextRule {\n\tNone = 0,\n\t/**\n\t * Adjust whitespace/indentation of multiline insert texts to\n\t * match the current line indentation.\n\t */\n\tKeepWhitespace = 1,\n\t/**\n\t * `insertText` is a snippet.\n\t */\n\tInsertAsSnippet = 4\n}\n\nexport enum CompletionItemKind {\n\tMethod = 0,\n\tFunction = 1,\n\tConstructor = 2,\n\tField = 3,\n\tVariable = 4,\n\tClass = 5,\n\tStruct = 6,\n\tInterface = 7,\n\tModule = 8,\n\tProperty = 9,\n\tEvent = 10,\n\tOperator = 11,\n\tUnit = 12,\n\tValue = 13,\n\tConstant = 14,\n\tEnum = 15,\n\tEnumMember = 16,\n\tKeyword = 17,\n\tText = 18,\n\tColor = 19,\n\tFile = 20,\n\tReference = 21,\n\tCustomcolor = 22,\n\tFolder = 23,\n\tTypeParameter = 24,\n\tUser = 25,\n\tIssue = 26,\n\tTool = 27,\n\tSnippet = 28\n}\n\nexport enum CompletionItemTag {\n\tDeprecated = 1\n}\n\n/**\n * How a suggest provider was triggered.\n */\nexport enum CompletionTriggerKind {\n\tInvoke = 0,\n\tTriggerCharacter = 1,\n\tTriggerForIncompleteCompletions = 2\n}\n\n/**\n * A positioning preference for rendering content widgets.\n */\nexport enum ContentWidgetPositionPreference {\n\t/**\n\t * Place the content widget exactly at a position\n\t */\n\tEXACT = 0,\n\t/**\n\t * Place the content widget above a position\n\t */\n\tABOVE = 1,\n\t/**\n\t * Place the content widget below a position\n\t */\n\tBELOW = 2\n}\n\n/**\n * Describes the reason the cursor has changed its position.\n */\nexport enum CursorChangeReason {\n\t/**\n\t * Unknown or not set.\n\t */\n\tNotSet = 0,\n\t/**\n\t * A `model.setValue()` was called.\n\t */\n\tContentFlush = 1,\n\t/**\n\t * The `model` has been changed outside of this cursor and the cursor recovers its position from associated markers.\n\t */\n\tRecoverFromMarkers = 2,\n\t/**\n\t * There was an explicit user gesture.\n\t */\n\tExplicit = 3,\n\t/**\n\t * There was a Paste.\n\t */\n\tPaste = 4,\n\t/**\n\t * There was an Undo.\n\t */\n\tUndo = 5,\n\t/**\n\t * There was a Redo.\n\t */\n\tRedo = 6\n}\n\n/**\n * The default end of line to use when instantiating models.\n */\nexport enum DefaultEndOfLine {\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 1,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 2\n}\n\n/**\n * A document highlight kind.\n */\nexport enum DocumentHighlightKind {\n\t/**\n\t * A textual occurrence.\n\t */\n\tText = 0,\n\t/**\n\t * Read-access of a symbol, like reading a variable.\n\t */\n\tRead = 1,\n\t/**\n\t * Write-access of a symbol, like writing to a variable.\n\t */\n\tWrite = 2\n}\n\n/**\n * Configuration options for auto indentation in the editor\n */\nexport enum EditorAutoIndentStrategy {\n\tNone = 0,\n\tKeep = 1,\n\tBrackets = 2,\n\tAdvanced = 3,\n\tFull = 4\n}\n\nexport enum EditorOption {\n\tacceptSuggestionOnCommitCharacter = 0,\n\tacceptSuggestionOnEnter = 1,\n\taccessibilitySupport = 2,\n\taccessibilityPageSize = 3,\n\tallowOverflow = 4,\n\tallowVariableLineHeights = 5,\n\tallowVariableFonts = 6,\n\tallowVariableFontsInAccessibilityMode = 7,\n\tariaLabel = 8,\n\tariaRequired = 9,\n\tautoClosingBrackets = 10,\n\tautoClosingComments = 11,\n\tscreenReaderAnnounceInlineSuggestion = 12,\n\tautoClosingDelete = 13,\n\tautoClosingOvertype = 14,\n\tautoClosingQuotes = 15,\n\tautoIndent = 16,\n\tautoIndentOnPaste = 17,\n\tautoIndentOnPasteWithinString = 18,\n\tautomaticLayout = 19,\n\tautoSurround = 20,\n\tbracketPairColorization = 21,\n\tguides = 22,\n\tcodeLens = 23,\n\tcodeLensFontFamily = 24,\n\tcodeLensFontSize = 25,\n\tcolorDecorators = 26,\n\tcolorDecoratorsLimit = 27,\n\tcolumnSelection = 28,\n\tcomments = 29,\n\tcontextmenu = 30,\n\tcopyWithSyntaxHighlighting = 31,\n\tcursorBlinking = 32,\n\tcursorSmoothCaretAnimation = 33,\n\tcursorStyle = 34,\n\tcursorSurroundingLines = 35,\n\tcursorSurroundingLinesStyle = 36,\n\tcursorWidth = 37,\n\tcursorHeight = 38,\n\tdisableLayerHinting = 39,\n\tdisableMonospaceOptimizations = 40,\n\tdomReadOnly = 41,\n\tdragAndDrop = 42,\n\tdropIntoEditor = 43,\n\teditContext = 44,\n\temptySelectionClipboard = 45,\n\texperimentalGpuAcceleration = 46,\n\texperimentalWhitespaceRendering = 47,\n\textraEditorClassName = 48,\n\tfastScrollSensitivity = 49,\n\tfind = 50,\n\tfixedOverflowWidgets = 51,\n\tfolding = 52,\n\tfoldingStrategy = 53,\n\tfoldingHighlight = 54,\n\tfoldingImportsByDefault = 55,\n\tfoldingMaximumRegions = 56,\n\tunfoldOnClickAfterEndOfLine = 57,\n\tfontFamily = 58,\n\tfontInfo = 59,\n\tfontLigatures = 60,\n\tfontSize = 61,\n\tfontWeight = 62,\n\tfontVariations = 63,\n\tformatOnPaste = 64,\n\tformatOnType = 65,\n\tglyphMargin = 66,\n\tgotoLocation = 67,\n\thideCursorInOverviewRuler = 68,\n\thover = 69,\n\tinDiffEditor = 70,\n\tinlineSuggest = 71,\n\tletterSpacing = 72,\n\tlightbulb = 73,\n\tlineDecorationsWidth = 74,\n\tlineHeight = 75,\n\tlineNumbers = 76,\n\tlineNumbersMinChars = 77,\n\tlinkedEditing = 78,\n\tlinks = 79,\n\tmatchBrackets = 80,\n\tminimap = 81,\n\tmouseStyle = 82,\n\tmouseWheelScrollSensitivity = 83,\n\tmouseWheelZoom = 84,\n\tmultiCursorMergeOverlapping = 85,\n\tmultiCursorModifier = 86,\n\tmouseMiddleClickAction = 87,\n\tmultiCursorPaste = 88,\n\tmultiCursorLimit = 89,\n\toccurrencesHighlight = 90,\n\toccurrencesHighlightDelay = 91,\n\tovertypeCursorStyle = 92,\n\tovertypeOnPaste = 93,\n\toverviewRulerBorder = 94,\n\toverviewRulerLanes = 95,\n\tpadding = 96,\n\tpasteAs = 97,\n\tparameterHints = 98,\n\tpeekWidgetDefaultFocus = 99,\n\tplaceholder = 100,\n\tdefinitionLinkOpensInPeek = 101,\n\tquickSuggestions = 102,\n\tquickSuggestionsDelay = 103,\n\treadOnly = 104,\n\treadOnlyMessage = 105,\n\trenameOnType = 106,\n\trenderRichScreenReaderContent = 107,\n\trenderControlCharacters = 108,\n\trenderFinalNewline = 109,\n\trenderLineHighlight = 110,\n\trenderLineHighlightOnlyWhenFocus = 111,\n\trenderValidationDecorations = 112,\n\trenderWhitespace = 113,\n\trevealHorizontalRightPadding = 114,\n\troundedSelection = 115,\n\trulers = 116,\n\tscrollbar = 117,\n\tscrollBeyondLastColumn = 118,\n\tscrollBeyondLastLine = 119,\n\tscrollPredominantAxis = 120,\n\tselectionClipboard = 121,\n\tselectionHighlight = 122,\n\tselectionHighlightMaxLength = 123,\n\tselectionHighlightMultiline = 124,\n\tselectOnLineNumbers = 125,\n\tshowFoldingControls = 126,\n\tshowUnused = 127,\n\tsnippetSuggestions = 128,\n\tsmartSelect = 129,\n\tsmoothScrolling = 130,\n\tstickyScroll = 131,\n\tstickyTabStops = 132,\n\tstopRenderingLineAfter = 133,\n\tsuggest = 134,\n\tsuggestFontSize = 135,\n\tsuggestLineHeight = 136,\n\tsuggestOnTriggerCharacters = 137,\n\tsuggestSelection = 138,\n\ttabCompletion = 139,\n\ttabIndex = 140,\n\ttrimWhitespaceOnDelete = 141,\n\tunicodeHighlighting = 142,\n\tunusualLineTerminators = 143,\n\tuseShadowDOM = 144,\n\tuseTabStops = 145,\n\twordBreak = 146,\n\twordSegmenterLocales = 147,\n\twordSeparators = 148,\n\twordWrap = 149,\n\twordWrapBreakAfterCharacters = 150,\n\twordWrapBreakBeforeCharacters = 151,\n\twordWrapColumn = 152,\n\twordWrapOverride1 = 153,\n\twordWrapOverride2 = 154,\n\twrappingIndent = 155,\n\twrappingStrategy = 156,\n\tshowDeprecated = 157,\n\tinertialScroll = 158,\n\tinlayHints = 159,\n\twrapOnEscapedLineFeeds = 160,\n\teffectiveCursorStyle = 161,\n\teditorClassName = 162,\n\tpixelRatio = 163,\n\ttabFocusMode = 164,\n\tlayoutInfo = 165,\n\twrappingInfo = 166,\n\tdefaultColorDecorators = 167,\n\tcolorDecoratorsActivatedOn = 168,\n\tinlineCompletionsAccessibilityVerbose = 169,\n\teffectiveEditContext = 170,\n\tscrollOnMiddleClick = 171,\n\teffectiveAllowVariableFonts = 172\n}\n\n/**\n * End of line character preference.\n */\nexport enum EndOfLinePreference {\n\t/**\n\t * Use the end of line character identified in the text buffer.\n\t */\n\tTextDefined = 0,\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 1,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 2\n}\n\n/**\n * End of line character preference.\n */\nexport enum EndOfLineSequence {\n\t/**\n\t * Use line feed (\\n) as the end of line character.\n\t */\n\tLF = 0,\n\t/**\n\t * Use carriage return and line feed (\\r\\n) as the end of line character.\n\t */\n\tCRLF = 1\n}\n\n/**\n * Vertical Lane in the glyph margin of the editor.\n */\nexport enum GlyphMarginLane {\n\tLeft = 1,\n\tCenter = 2,\n\tRight = 3\n}\n\nexport enum HoverVerbosityAction {\n\t/**\n\t * Increase the verbosity of the hover\n\t */\n\tIncrease = 0,\n\t/**\n\t * Decrease the verbosity of the hover\n\t */\n\tDecrease = 1\n}\n\n/**\n * Describes what to do with the indentation when pressing Enter.\n */\nexport enum IndentAction {\n\t/**\n\t * Insert new line and copy the previous line's indentation.\n\t */\n\tNone = 0,\n\t/**\n\t * Insert new line and indent once (relative to the previous line's indentation).\n\t */\n\tIndent = 1,\n\t/**\n\t * Insert two new lines:\n\t * - the first one indented which will hold the cursor\n\t * - the second one at the same indentation level\n\t */\n\tIndentOutdent = 2,\n\t/**\n\t * Insert new line and outdent once (relative to the previous line's indentation).\n\t */\n\tOutdent = 3\n}\n\nexport enum InjectedTextCursorStops {\n\tBoth = 0,\n\tRight = 1,\n\tLeft = 2,\n\tNone = 3\n}\n\nexport enum InlayHintKind {\n\tType = 1,\n\tParameter = 2\n}\n\nexport enum InlineCompletionDisplayLocationKind {\n\tCode = 1,\n\tLabel = 2\n}\n\nexport enum InlineCompletionEndOfLifeReasonKind {\n\tAccepted = 0,\n\tRejected = 1,\n\tIgnored = 2\n}\n\n/**\n * How an {@link InlineCompletionsProvider inline completion provider} was triggered.\n */\nexport enum InlineCompletionTriggerKind {\n\t/**\n\t * Completion was triggered automatically while editing.\n\t * It is sufficient to return a single completion item in this case.\n\t */\n\tAutomatic = 0,\n\t/**\n\t * Completion was triggered explicitly by a user gesture.\n\t * Return multiple completion items to enable cycling through them.\n\t */\n\tExplicit = 1\n}\n/**\n * Virtual Key Codes, the value does not hold any inherent meaning.\n * Inspired somewhat from https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx\n * But these are \"more general\", as they should work across browsers & OS`s.\n */\nexport enum KeyCode {\n\tDependsOnKbLayout = -1,\n\t/**\n\t * Placed first to cover the 0 value of the enum.\n\t */\n\tUnknown = 0,\n\tBackspace = 1,\n\tTab = 2,\n\tEnter = 3,\n\tShift = 4,\n\tCtrl = 5,\n\tAlt = 6,\n\tPauseBreak = 7,\n\tCapsLock = 8,\n\tEscape = 9,\n\tSpace = 10,\n\tPageUp = 11,\n\tPageDown = 12,\n\tEnd = 13,\n\tHome = 14,\n\tLeftArrow = 15,\n\tUpArrow = 16,\n\tRightArrow = 17,\n\tDownArrow = 18,\n\tInsert = 19,\n\tDelete = 20,\n\tDigit0 = 21,\n\tDigit1 = 22,\n\tDigit2 = 23,\n\tDigit3 = 24,\n\tDigit4 = 25,\n\tDigit5 = 26,\n\tDigit6 = 27,\n\tDigit7 = 28,\n\tDigit8 = 29,\n\tDigit9 = 30,\n\tKeyA = 31,\n\tKeyB = 32,\n\tKeyC = 33,\n\tKeyD = 34,\n\tKeyE = 35,\n\tKeyF = 36,\n\tKeyG = 37,\n\tKeyH = 38,\n\tKeyI = 39,\n\tKeyJ = 40,\n\tKeyK = 41,\n\tKeyL = 42,\n\tKeyM = 43,\n\tKeyN = 44,\n\tKeyO = 45,\n\tKeyP = 46,\n\tKeyQ = 47,\n\tKeyR = 48,\n\tKeyS = 49,\n\tKeyT = 50,\n\tKeyU = 51,\n\tKeyV = 52,\n\tKeyW = 53,\n\tKeyX = 54,\n\tKeyY = 55,\n\tKeyZ = 56,\n\tMeta = 57,\n\tContextMenu = 58,\n\tF1 = 59,\n\tF2 = 60,\n\tF3 = 61,\n\tF4 = 62,\n\tF5 = 63,\n\tF6 = 64,\n\tF7 = 65,\n\tF8 = 66,\n\tF9 = 67,\n\tF10 = 68,\n\tF11 = 69,\n\tF12 = 70,\n\tF13 = 71,\n\tF14 = 72,\n\tF15 = 73,\n\tF16 = 74,\n\tF17 = 75,\n\tF18 = 76,\n\tF19 = 77,\n\tF20 = 78,\n\tF21 = 79,\n\tF22 = 80,\n\tF23 = 81,\n\tF24 = 82,\n\tNumLock = 83,\n\tScrollLock = 84,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ';:' key\n\t */\n\tSemicolon = 85,\n\t/**\n\t * For any country/region, the '+' key\n\t * For the US standard keyboard, the '=+' key\n\t */\n\tEqual = 86,\n\t/**\n\t * For any country/region, the ',' key\n\t * For the US standard keyboard, the ',<' key\n\t */\n\tComma = 87,\n\t/**\n\t * For any country/region, the '-' key\n\t * For the US standard keyboard, the '-_' key\n\t */\n\tMinus = 88,\n\t/**\n\t * For any country/region, the '.' key\n\t * For the US standard keyboard, the '.>' key\n\t */\n\tPeriod = 89,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '/?' key\n\t */\n\tSlash = 90,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '`~' key\n\t */\n\tBackquote = 91,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '[{' key\n\t */\n\tBracketLeft = 92,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the '\\|' key\n\t */\n\tBackslash = 93,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ']}' key\n\t */\n\tBracketRight = 94,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t * For the US standard keyboard, the ''\"' key\n\t */\n\tQuote = 95,\n\t/**\n\t * Used for miscellaneous characters; it can vary by keyboard.\n\t */\n\tOEM_8 = 96,\n\t/**\n\t * Either the angle bracket key or the backslash key on the RT 102-key keyboard.\n\t */\n\tIntlBackslash = 97,\n\tNumpad0 = 98,// VK_NUMPAD0, 0x60, Numeric keypad 0 key\n\tNumpad1 = 99,// VK_NUMPAD1, 0x61, Numeric keypad 1 key\n\tNumpad2 = 100,// VK_NUMPAD2, 0x62, Numeric keypad 2 key\n\tNumpad3 = 101,// VK_NUMPAD3, 0x63, Numeric keypad 3 key\n\tNumpad4 = 102,// VK_NUMPAD4, 0x64, Numeric keypad 4 key\n\tNumpad5 = 103,// VK_NUMPAD5, 0x65, Numeric keypad 5 key\n\tNumpad6 = 104,// VK_NUMPAD6, 0x66, Numeric keypad 6 key\n\tNumpad7 = 105,// VK_NUMPAD7, 0x67, Numeric keypad 7 key\n\tNumpad8 = 106,// VK_NUMPAD8, 0x68, Numeric keypad 8 key\n\tNumpad9 = 107,// VK_NUMPAD9, 0x69, Numeric keypad 9 key\n\tNumpadMultiply = 108,// VK_MULTIPLY, 0x6A, Multiply key\n\tNumpadAdd = 109,// VK_ADD, 0x6B, Add key\n\tNUMPAD_SEPARATOR = 110,// VK_SEPARATOR, 0x6C, Separator key\n\tNumpadSubtract = 111,// VK_SUBTRACT, 0x6D, Subtract key\n\tNumpadDecimal = 112,// VK_DECIMAL, 0x6E, Decimal key\n\tNumpadDivide = 113,// VK_DIVIDE, 0x6F,\n\t/**\n\t * Cover all key codes when IME is processing input.\n\t */\n\tKEY_IN_COMPOSITION = 114,\n\tABNT_C1 = 115,// Brazilian (ABNT) Keyboard\n\tABNT_C2 = 116,// Brazilian (ABNT) Keyboard\n\tAudioVolumeMute = 117,\n\tAudioVolumeUp = 118,\n\tAudioVolumeDown = 119,\n\tBrowserSearch = 120,\n\tBrowserHome = 121,\n\tBrowserBack = 122,\n\tBrowserForward = 123,\n\tMediaTrackNext = 124,\n\tMediaTrackPrevious = 125,\n\tMediaStop = 126,\n\tMediaPlayPause = 127,\n\tLaunchMediaPlayer = 128,\n\tLaunchMail = 129,\n\tLaunchApp2 = 130,\n\t/**\n\t * VK_CLEAR, 0x0C, CLEAR key\n\t */\n\tClear = 131,\n\t/**\n\t * Placed last to cover the length of the enum.\n\t * Please do not depend on this value!\n\t */\n\tMAX_VALUE = 132\n}\n\nexport enum MarkerSeverity {\n\tHint = 1,\n\tInfo = 2,\n\tWarning = 4,\n\tError = 8\n}\n\nexport enum MarkerTag {\n\tUnnecessary = 1,\n\tDeprecated = 2\n}\n\n/**\n * Position in the minimap to render the decoration.\n */\nexport enum MinimapPosition {\n\tInline = 1,\n\tGutter = 2\n}\n\n/**\n * Section header style.\n */\nexport enum MinimapSectionHeaderStyle {\n\tNormal = 1,\n\tUnderlined = 2\n}\n\n/**\n * Type of hit element with the mouse in the editor.\n */\nexport enum MouseTargetType {\n\t/**\n\t * Mouse is on top of an unknown element.\n\t */\n\tUNKNOWN = 0,\n\t/**\n\t * Mouse is on top of the textarea used for input.\n\t */\n\tTEXTAREA = 1,\n\t/**\n\t * Mouse is on top of the glyph margin\n\t */\n\tGUTTER_GLYPH_MARGIN = 2,\n\t/**\n\t * Mouse is on top of the line numbers\n\t */\n\tGUTTER_LINE_NUMBERS = 3,\n\t/**\n\t * Mouse is on top of the line decorations\n\t */\n\tGUTTER_LINE_DECORATIONS = 4,\n\t/**\n\t * Mouse is on top of the whitespace left in the gutter by a view zone.\n\t */\n\tGUTTER_VIEW_ZONE = 5,\n\t/**\n\t * Mouse is on top of text in the content.\n\t */\n\tCONTENT_TEXT = 6,\n\t/**\n\t * Mouse is on top of empty space in the content (e.g. after line text or below last line)\n\t */\n\tCONTENT_EMPTY = 7,\n\t/**\n\t * Mouse is on top of a view zone in the content.\n\t */\n\tCONTENT_VIEW_ZONE = 8,\n\t/**\n\t * Mouse is on top of a content widget.\n\t */\n\tCONTENT_WIDGET = 9,\n\t/**\n\t * Mouse is on top of the decorations overview ruler.\n\t */\n\tOVERVIEW_RULER = 10,\n\t/**\n\t * Mouse is on top of a scrollbar.\n\t */\n\tSCROLLBAR = 11,\n\t/**\n\t * Mouse is on top of an overlay widget.\n\t */\n\tOVERLAY_WIDGET = 12,\n\t/**\n\t * Mouse is outside of the editor.\n\t */\n\tOUTSIDE_EDITOR = 13\n}\n\nexport enum NewSymbolNameTag {\n\tAIGenerated = 1\n}\n\nexport enum NewSymbolNameTriggerKind {\n\tInvoke = 0,\n\tAutomatic = 1\n}\n\n/**\n * A positioning preference for rendering overlay widgets.\n */\nexport enum OverlayWidgetPositionPreference {\n\t/**\n\t * Position the overlay widget in the top right corner\n\t */\n\tTOP_RIGHT_CORNER = 0,\n\t/**\n\t * Position the overlay widget in the bottom right corner\n\t */\n\tBOTTOM_RIGHT_CORNER = 1,\n\t/**\n\t * Position the overlay widget in the top center\n\t */\n\tTOP_CENTER = 2\n}\n\n/**\n * Vertical Lane in the overview ruler of the editor.\n */\nexport enum OverviewRulerLane {\n\tLeft = 1,\n\tCenter = 2,\n\tRight = 4,\n\tFull = 7\n}\n\n/**\n * How a partial acceptance was triggered.\n */\nexport enum PartialAcceptTriggerKind {\n\tWord = 0,\n\tLine = 1,\n\tSuggest = 2\n}\n\nexport enum PositionAffinity {\n\t/**\n\t * Prefers the left most position.\n\t*/\n\tLeft = 0,\n\t/**\n\t * Prefers the right most position.\n\t*/\n\tRight = 1,\n\t/**\n\t * No preference.\n\t*/\n\tNone = 2,\n\t/**\n\t * If the given position is on injected text, prefers the position left of it.\n\t*/\n\tLeftOfInjectedText = 3,\n\t/**\n\t * If the given position is on injected text, prefers the position right of it.\n\t*/\n\tRightOfInjectedText = 4\n}\n\nexport enum RenderLineNumbersType {\n\tOff = 0,\n\tOn = 1,\n\tRelative = 2,\n\tInterval = 3,\n\tCustom = 4\n}\n\nexport enum RenderMinimap {\n\tNone = 0,\n\tText = 1,\n\tBlocks = 2\n}\n\nexport enum ScrollType {\n\tSmooth = 0,\n\tImmediate = 1\n}\n\nexport enum ScrollbarVisibility {\n\tAuto = 1,\n\tHidden = 2,\n\tVisible = 3\n}\n\n/**\n * The direction of a selection.\n */\nexport enum SelectionDirection {\n\t/**\n\t * The selection starts above where it ends.\n\t */\n\tLTR = 0,\n\t/**\n\t * The selection starts below where it ends.\n\t */\n\tRTL = 1\n}\n\nexport enum ShowLightbulbIconMode {\n\tOff = 'off',\n\tOnCode = 'onCode',\n\tOn = 'on'\n}\n\nexport enum SignatureHelpTriggerKind {\n\tInvoke = 1,\n\tTriggerCharacter = 2,\n\tContentChange = 3\n}\n\n/**\n * A symbol kind.\n */\nexport enum SymbolKind {\n\tFile = 0,\n\tModule = 1,\n\tNamespace = 2,\n\tPackage = 3,\n\tClass = 4,\n\tMethod = 5,\n\tProperty = 6,\n\tField = 7,\n\tConstructor = 8,\n\tEnum = 9,\n\tInterface = 10,\n\tFunction = 11,\n\tVariable = 12,\n\tConstant = 13,\n\tString = 14,\n\tNumber = 15,\n\tBoolean = 16,\n\tArray = 17,\n\tObject = 18,\n\tKey = 19,\n\tNull = 20,\n\tEnumMember = 21,\n\tStruct = 22,\n\tEvent = 23,\n\tOperator = 24,\n\tTypeParameter = 25\n}\n\nexport enum SymbolTag {\n\tDeprecated = 1\n}\n\n/**\n * Text Direction for a decoration.\n */\nexport enum TextDirection {\n\tLTR = 0,\n\tRTL = 1\n}\n\n/**\n * The kind of animation in which the editor's cursor should be rendered.\n */\nexport enum TextEditorCursorBlinkingStyle {\n\t/**\n\t * Hidden\n\t */\n\tHidden = 0,\n\t/**\n\t * Blinking\n\t */\n\tBlink = 1,\n\t/**\n\t * Blinking with smooth fading\n\t */\n\tSmooth = 2,\n\t/**\n\t * Blinking with prolonged filled state and smooth fading\n\t */\n\tPhase = 3,\n\t/**\n\t * Expand collapse animation on the y axis\n\t */\n\tExpand = 4,\n\t/**\n\t * No-Blinking\n\t */\n\tSolid = 5\n}\n\n/**\n * The style in which the editor's cursor should be rendered.\n */\nexport enum TextEditorCursorStyle {\n\t/**\n\t * As a vertical line (sitting between two characters).\n\t */\n\tLine = 1,\n\t/**\n\t * As a block (sitting on top of a character).\n\t */\n\tBlock = 2,\n\t/**\n\t * As a horizontal line (sitting under a character).\n\t */\n\tUnderline = 3,\n\t/**\n\t * As a thin vertical line (sitting between two characters).\n\t */\n\tLineThin = 4,\n\t/**\n\t * As an outlined block (sitting on top of a character).\n\t */\n\tBlockOutline = 5,\n\t/**\n\t * As a thin horizontal line (sitting under a character).\n\t */\n\tUnderlineThin = 6\n}\n\n/**\n * Describes the behavior of decorations when typing/editing near their edges.\n * Note: Please do not edit the values, as they very carefully match `DecorationRangeBehavior`\n */\nexport enum TrackedRangeStickiness {\n\tAlwaysGrowsWhenTypingAtEdges = 0,\n\tNeverGrowsWhenTypingAtEdges = 1,\n\tGrowsOnlyWhenTypingBefore = 2,\n\tGrowsOnlyWhenTypingAfter = 3\n}\n\n/**\n * Describes how to indent wrapped lines.\n */\nexport enum WrappingIndent {\n\t/**\n\t * No indentation => wrapped lines begin at column 1.\n\t */\n\tNone = 0,\n\t/**\n\t * Same => wrapped lines get the same indentation as the parent.\n\t */\n\tSame = 1,\n\t/**\n\t * Indent => wrapped lines get +1 indentation toward the parent.\n\t */\n\tIndent = 2,\n\t/**\n\t * DeepIndent => wrapped lines get +2 indentation toward the parent.\n\t */\n\tDeepIndent = 3\n}"]}
|
|
@@ -5,36 +5,36 @@
|
|
|
5
5
|
import * as nls from '../../nls.js';
|
|
6
6
|
export var InspectTokensNLS;
|
|
7
7
|
(function (InspectTokensNLS) {
|
|
8
|
-
InspectTokensNLS.inspectTokensAction = nls.localize(
|
|
8
|
+
InspectTokensNLS.inspectTokensAction = nls.localize(780, "Developer: Inspect Tokens");
|
|
9
9
|
})(InspectTokensNLS || (InspectTokensNLS = {}));
|
|
10
10
|
export var GoToLineNLS;
|
|
11
11
|
(function (GoToLineNLS) {
|
|
12
|
-
GoToLineNLS.gotoLineActionLabel = nls.localize(
|
|
12
|
+
GoToLineNLS.gotoLineActionLabel = nls.localize(781, "Go to Line/Column...");
|
|
13
13
|
})(GoToLineNLS || (GoToLineNLS = {}));
|
|
14
14
|
export var QuickHelpNLS;
|
|
15
15
|
(function (QuickHelpNLS) {
|
|
16
|
-
QuickHelpNLS.helpQuickAccessActionLabel = nls.localize(
|
|
16
|
+
QuickHelpNLS.helpQuickAccessActionLabel = nls.localize(782, "Show all Quick Access Providers");
|
|
17
17
|
})(QuickHelpNLS || (QuickHelpNLS = {}));
|
|
18
18
|
export var QuickCommandNLS;
|
|
19
19
|
(function (QuickCommandNLS) {
|
|
20
|
-
QuickCommandNLS.quickCommandActionLabel = nls.localize(
|
|
21
|
-
QuickCommandNLS.quickCommandHelp = nls.localize(
|
|
20
|
+
QuickCommandNLS.quickCommandActionLabel = nls.localize(783, "Command Palette");
|
|
21
|
+
QuickCommandNLS.quickCommandHelp = nls.localize(784, "Show And Run Commands");
|
|
22
22
|
})(QuickCommandNLS || (QuickCommandNLS = {}));
|
|
23
23
|
export var QuickOutlineNLS;
|
|
24
24
|
(function (QuickOutlineNLS) {
|
|
25
|
-
QuickOutlineNLS.quickOutlineActionLabel = nls.localize(
|
|
26
|
-
QuickOutlineNLS.quickOutlineByCategoryActionLabel = nls.localize(
|
|
25
|
+
QuickOutlineNLS.quickOutlineActionLabel = nls.localize(785, "Go to Symbol...");
|
|
26
|
+
QuickOutlineNLS.quickOutlineByCategoryActionLabel = nls.localize(786, "Go to Symbol by Category...");
|
|
27
27
|
})(QuickOutlineNLS || (QuickOutlineNLS = {}));
|
|
28
28
|
export var StandaloneCodeEditorNLS;
|
|
29
29
|
(function (StandaloneCodeEditorNLS) {
|
|
30
|
-
StandaloneCodeEditorNLS.editorViewAccessibleLabel = nls.localize(
|
|
30
|
+
StandaloneCodeEditorNLS.editorViewAccessibleLabel = nls.localize(787, "Editor content");
|
|
31
31
|
})(StandaloneCodeEditorNLS || (StandaloneCodeEditorNLS = {}));
|
|
32
32
|
export var ToggleHighContrastNLS;
|
|
33
33
|
(function (ToggleHighContrastNLS) {
|
|
34
|
-
ToggleHighContrastNLS.toggleHighContrast = nls.localize(
|
|
34
|
+
ToggleHighContrastNLS.toggleHighContrast = nls.localize(788, "Toggle High Contrast Theme");
|
|
35
35
|
})(ToggleHighContrastNLS || (ToggleHighContrastNLS = {}));
|
|
36
36
|
export var StandaloneServicesNLS;
|
|
37
37
|
(function (StandaloneServicesNLS) {
|
|
38
|
-
StandaloneServicesNLS.bulkEditServiceSummary = nls.localize(
|
|
38
|
+
StandaloneServicesNLS.bulkEditServiceSummary = nls.localize(789, "Made {0} edits in {1} files");
|
|
39
39
|
})(StandaloneServicesNLS || (StandaloneServicesNLS = {}));
|
|
40
40
|
//# sourceMappingURL=standaloneStrings.js.map
|
|
@@ -105,8 +105,8 @@ export class ViewLayout extends Disposable {
|
|
|
105
105
|
super();
|
|
106
106
|
this._configuration = configuration;
|
|
107
107
|
const options = this._configuration.options;
|
|
108
|
-
const layoutInfo = options.get(
|
|
109
|
-
const padding = options.get(
|
|
108
|
+
const layoutInfo = options.get(165 /* EditorOption.layoutInfo */);
|
|
109
|
+
const padding = options.get(96 /* EditorOption.padding */);
|
|
110
110
|
this._linesLayout = new LinesLayout(lineCount, options.get(75 /* EditorOption.lineHeight */), padding.top, padding.bottom, customLineHeightData);
|
|
111
111
|
this._maxLineWidth = 0;
|
|
112
112
|
this._overlayWidgetsMinWidth = 0;
|
|
@@ -127,7 +127,7 @@ export class ViewLayout extends Disposable {
|
|
|
127
127
|
this._updateHeight();
|
|
128
128
|
}
|
|
129
129
|
_configureSmoothScrollDuration() {
|
|
130
|
-
this._scrollable.setSmoothScrollDuration(this._configuration.options.get(
|
|
130
|
+
this._scrollable.setSmoothScrollDuration(this._configuration.options.get(130 /* EditorOption.smoothScrolling */) ? SMOOTH_SCROLLING_TIME : 0);
|
|
131
131
|
}
|
|
132
132
|
// ---- begin view event handlers
|
|
133
133
|
onConfigurationChanged(e) {
|
|
@@ -135,12 +135,12 @@ export class ViewLayout extends Disposable {
|
|
|
135
135
|
if (e.hasChanged(75 /* EditorOption.lineHeight */)) {
|
|
136
136
|
this._linesLayout.setDefaultLineHeight(options.get(75 /* EditorOption.lineHeight */));
|
|
137
137
|
}
|
|
138
|
-
if (e.hasChanged(
|
|
139
|
-
const padding = options.get(
|
|
138
|
+
if (e.hasChanged(96 /* EditorOption.padding */)) {
|
|
139
|
+
const padding = options.get(96 /* EditorOption.padding */);
|
|
140
140
|
this._linesLayout.setPadding(padding.top, padding.bottom);
|
|
141
141
|
}
|
|
142
|
-
if (e.hasChanged(
|
|
143
|
-
const layoutInfo = options.get(
|
|
142
|
+
if (e.hasChanged(165 /* EditorOption.layoutInfo */)) {
|
|
143
|
+
const layoutInfo = options.get(165 /* EditorOption.layoutInfo */);
|
|
144
144
|
const width = layoutInfo.contentWidth;
|
|
145
145
|
const height = layoutInfo.height;
|
|
146
146
|
const scrollDimensions = this._scrollable.getScrollDimensions();
|
|
@@ -150,7 +150,7 @@ export class ViewLayout extends Disposable {
|
|
|
150
150
|
else {
|
|
151
151
|
this._updateHeight();
|
|
152
152
|
}
|
|
153
|
-
if (e.hasChanged(
|
|
153
|
+
if (e.hasChanged(130 /* EditorOption.smoothScrolling */)) {
|
|
154
154
|
this._configureSmoothScrollDuration();
|
|
155
155
|
}
|
|
156
156
|
}
|
|
@@ -166,7 +166,7 @@ export class ViewLayout extends Disposable {
|
|
|
166
166
|
// ---- end view event handlers
|
|
167
167
|
_getHorizontalScrollbarHeight(width, scrollWidth) {
|
|
168
168
|
const options = this._configuration.options;
|
|
169
|
-
const scrollbar = options.get(
|
|
169
|
+
const scrollbar = options.get(117 /* EditorOption.scrollbar */);
|
|
170
170
|
if (scrollbar.horizontal === 2 /* ScrollbarVisibility.Hidden */) {
|
|
171
171
|
// horizontal scrollbar not visible
|
|
172
172
|
return 0;
|
|
@@ -180,10 +180,10 @@ export class ViewLayout extends Disposable {
|
|
|
180
180
|
_getContentHeight(width, height, contentWidth) {
|
|
181
181
|
const options = this._configuration.options;
|
|
182
182
|
let result = this._linesLayout.getLinesTotalHeight();
|
|
183
|
-
if (options.get(
|
|
184
|
-
result += Math.max(0, height - options.get(75 /* EditorOption.lineHeight */) - options.get(
|
|
183
|
+
if (options.get(119 /* EditorOption.scrollBeyondLastLine */)) {
|
|
184
|
+
result += Math.max(0, height - options.get(75 /* EditorOption.lineHeight */) - options.get(96 /* EditorOption.padding */).bottom);
|
|
185
185
|
}
|
|
186
|
-
else if (!options.get(
|
|
186
|
+
else if (!options.get(117 /* EditorOption.scrollbar */).ignoreHorizontalScrollbarInContentHeight) {
|
|
187
187
|
result += this._getHorizontalScrollbarHeight(width, contentWidth);
|
|
188
188
|
}
|
|
189
189
|
return result;
|
|
@@ -209,9 +209,9 @@ export class ViewLayout extends Disposable {
|
|
|
209
209
|
_computeContentWidth() {
|
|
210
210
|
const options = this._configuration.options;
|
|
211
211
|
const maxLineWidth = this._maxLineWidth;
|
|
212
|
-
const wrappingInfo = options.get(
|
|
212
|
+
const wrappingInfo = options.get(166 /* EditorOption.wrappingInfo */);
|
|
213
213
|
const fontInfo = options.get(59 /* EditorOption.fontInfo */);
|
|
214
|
-
const layoutInfo = options.get(
|
|
214
|
+
const layoutInfo = options.get(165 /* EditorOption.layoutInfo */);
|
|
215
215
|
if (wrappingInfo.isViewportWrapping) {
|
|
216
216
|
const minimap = options.get(81 /* EditorOption.minimap */);
|
|
217
217
|
if (maxLineWidth > layoutInfo.contentWidth + fontInfo.typicalHalfwidthCharacterWidth) {
|
|
@@ -224,7 +224,7 @@ export class ViewLayout extends Disposable {
|
|
|
224
224
|
return maxLineWidth;
|
|
225
225
|
}
|
|
226
226
|
else {
|
|
227
|
-
const extraHorizontalSpace = options.get(
|
|
227
|
+
const extraHorizontalSpace = options.get(118 /* EditorOption.scrollBeyondLastColumn */) * fontInfo.typicalHalfwidthCharacterWidth;
|
|
228
228
|
const whitespaceMinWidth = this._linesLayout.getWhitespaceMinWidth();
|
|
229
229
|
return Math.max(maxLineWidth + extraHorizontalSpace + layoutInfo.verticalScrollbarWidth, whitespaceMinWidth, this._overlayWidgetsMinWidth);
|
|
230
230
|
}
|
|
@@ -886,7 +886,7 @@ function _renderLine(input, sb) {
|
|
|
886
886
|
}
|
|
887
887
|
if (isOverflowing) {
|
|
888
888
|
sb.appendString('<span class="mtkoverflow">');
|
|
889
|
-
sb.appendString(nls.localize(
|
|
889
|
+
sb.appendString(nls.localize(790, "Show more ({0})", renderOverflowingCharCount(overflowingCharCount)));
|
|
890
890
|
sb.appendString('</span>');
|
|
891
891
|
}
|
|
892
892
|
sb.appendString('</span>');
|
|
@@ -897,7 +897,7 @@ function to4CharHex(n) {
|
|
|
897
897
|
}
|
|
898
898
|
function renderOverflowingCharCount(n) {
|
|
899
899
|
if (n < 1024) {
|
|
900
|
-
return nls.localize(
|
|
900
|
+
return nls.localize(791, "{0} chars", n);
|
|
901
901
|
}
|
|
902
902
|
if (n < 1024 * 1024) {
|
|
903
903
|
return `${(n / 1024).toFixed(1)} KB`;
|
|
@@ -8,7 +8,7 @@ import { LineInjectedText } from '../textModelEvents.js';
|
|
|
8
8
|
import { ModelLineProjectionData } from '../modelLineProjectionData.js';
|
|
9
9
|
export class MonospaceLineBreaksComputerFactory {
|
|
10
10
|
static create(options) {
|
|
11
|
-
return new MonospaceLineBreaksComputerFactory(options.get(
|
|
11
|
+
return new MonospaceLineBreaksComputerFactory(options.get(151 /* EditorOption.wordWrapBreakBeforeCharacters */), options.get(150 /* EditorOption.wordWrapBreakAfterCharacters */));
|
|
12
12
|
}
|
|
13
13
|
constructor(breakBeforeChars, breakAfterChars) {
|
|
14
14
|
this.classifier = new WrappingCharacterClassifier(breakBeforeChars, breakAfterChars);
|
|
@@ -52,11 +52,11 @@ export class ViewModel extends Disposable {
|
|
|
52
52
|
else {
|
|
53
53
|
const options = this._configuration.options;
|
|
54
54
|
const fontInfo = options.get(59 /* EditorOption.fontInfo */);
|
|
55
|
-
const wrappingStrategy = options.get(
|
|
56
|
-
const wrappingInfo = options.get(
|
|
57
|
-
const wrappingIndent = options.get(
|
|
58
|
-
const wordBreak = options.get(
|
|
59
|
-
const wrapOnEscapedLineFeeds = options.get(
|
|
55
|
+
const wrappingStrategy = options.get(156 /* EditorOption.wrappingStrategy */);
|
|
56
|
+
const wrappingInfo = options.get(166 /* EditorOption.wrappingInfo */);
|
|
57
|
+
const wrappingIndent = options.get(155 /* EditorOption.wrappingIndent */);
|
|
58
|
+
const wordBreak = options.get(146 /* EditorOption.wordBreak */);
|
|
59
|
+
const wrapOnEscapedLineFeeds = options.get(160 /* EditorOption.wrapOnEscapedLineFeeds */);
|
|
60
60
|
this._lines = new ViewModelLinesFromProjectedModel(this._editorId, this.model, domLineBreaksComputerFactory, monospaceLineBreaksComputerFactory, fontInfo, this.model.getOptions().tabSize, wrappingStrategy, wrappingInfo.wrappingColumn, wrappingIndent, wordBreak, wrapOnEscapedLineFeeds);
|
|
61
61
|
}
|
|
62
62
|
this.coordinatesConverter = this._lines.createCoordinatesConverter();
|
|
@@ -176,10 +176,10 @@ export class ViewModel extends Disposable {
|
|
|
176
176
|
const stableViewport = this._captureStableViewport();
|
|
177
177
|
const options = this._configuration.options;
|
|
178
178
|
const fontInfo = options.get(59 /* EditorOption.fontInfo */);
|
|
179
|
-
const wrappingStrategy = options.get(
|
|
180
|
-
const wrappingInfo = options.get(
|
|
181
|
-
const wrappingIndent = options.get(
|
|
182
|
-
const wordBreak = options.get(
|
|
179
|
+
const wrappingStrategy = options.get(156 /* EditorOption.wrappingStrategy */);
|
|
180
|
+
const wrappingInfo = options.get(166 /* EditorOption.wrappingInfo */);
|
|
181
|
+
const wrappingIndent = options.get(155 /* EditorOption.wrappingIndent */);
|
|
182
|
+
const wordBreak = options.get(146 /* EditorOption.wordBreak */);
|
|
183
183
|
if (this._lines.setWrappingSettings(fontInfo, wrappingStrategy, wrappingInfo.wrappingColumn, wrappingIndent, wordBreak)) {
|
|
184
184
|
eventsCollector.emitViewEvent(new viewEvents.ViewFlushedEvent());
|
|
185
185
|
eventsCollector.emitViewEvent(new viewEvents.ViewLineMappingChangedEvent());
|
|
@@ -189,12 +189,12 @@ export class ViewModel extends Disposable {
|
|
|
189
189
|
this.viewLayout.onFlushed(this.getLineCount(), this._getCustomLineHeights());
|
|
190
190
|
this._updateConfigurationViewLineCount.schedule();
|
|
191
191
|
}
|
|
192
|
-
if (e.hasChanged(
|
|
192
|
+
if (e.hasChanged(104 /* EditorOption.readOnly */)) {
|
|
193
193
|
// Must read again all decorations due to readOnly filtering
|
|
194
194
|
this._decorations.reset();
|
|
195
195
|
eventsCollector.emitViewEvent(new viewEvents.ViewDecorationsChangedEvent(null));
|
|
196
196
|
}
|
|
197
|
-
if (e.hasChanged(
|
|
197
|
+
if (e.hasChanged(112 /* EditorOption.renderValidationDecorations */)) {
|
|
198
198
|
this._decorations.reset();
|
|
199
199
|
eventsCollector.emitViewEvent(new viewEvents.ViewDecorationsChangedEvent(null));
|
|
200
200
|
}
|
|
@@ -356,7 +356,7 @@ export class ViewModel extends Disposable {
|
|
|
356
356
|
}
|
|
357
357
|
}));
|
|
358
358
|
}
|
|
359
|
-
const allowVariableFonts = this._configuration.options.get(
|
|
359
|
+
const allowVariableFonts = this._configuration.options.get(172 /* EditorOption.effectiveAllowVariableFonts */);
|
|
360
360
|
if (allowVariableFonts) {
|
|
361
361
|
this._register(this.model.onDidChangeFont((e) => {
|
|
362
362
|
const filteredChanges = e.changes.filter((change) => change.ownerId === this._editorId || change.ownerId === 0);
|
|
@@ -420,7 +420,7 @@ export class ViewModel extends Disposable {
|
|
|
420
420
|
}));
|
|
421
421
|
}
|
|
422
422
|
getFontSizeAtPosition(position) {
|
|
423
|
-
const allowVariableFonts = this._configuration.options.get(
|
|
423
|
+
const allowVariableFonts = this._configuration.options.get(172 /* EditorOption.effectiveAllowVariableFonts */);
|
|
424
424
|
if (!allowVariableFonts) {
|
|
425
425
|
return null;
|
|
426
426
|
}
|
|
@@ -475,7 +475,7 @@ export class ViewModel extends Disposable {
|
|
|
475
475
|
}
|
|
476
476
|
}
|
|
477
477
|
getVisibleRangesPlusViewportAboveBelow() {
|
|
478
|
-
const layoutInfo = this._configuration.options.get(
|
|
478
|
+
const layoutInfo = this._configuration.options.get(165 /* EditorOption.layoutInfo */);
|
|
479
479
|
const lineHeight = this._configuration.options.get(75 /* EditorOption.lineHeight */);
|
|
480
480
|
const linesAround = Math.max(20, Math.round(layoutInfo.height / lineHeight));
|
|
481
481
|
const partialData = this.viewLayout.getLinesViewportData();
|
|
@@ -43,12 +43,12 @@ let SelectionAnchorController = class SelectionAnchorController {
|
|
|
43
43
|
this.decorationId = accessor.addDecoration(Selection.fromPositions(position, position), {
|
|
44
44
|
description: 'selection-anchor',
|
|
45
45
|
stickiness: 1 /* TrackedRangeStickiness.NeverGrowsWhenTypingAtEdges */,
|
|
46
|
-
hoverMessage: new MarkdownString().appendText(localize(
|
|
46
|
+
hoverMessage: new MarkdownString().appendText(localize(792, "Selection Anchor")),
|
|
47
47
|
className: 'selection-anchor'
|
|
48
48
|
});
|
|
49
49
|
});
|
|
50
50
|
this.selectionAnchorSetContextKey.set(!!this.decorationId);
|
|
51
|
-
alert(localize(
|
|
51
|
+
alert(localize(793, "Anchor set at {0}:{1}", position.lineNumber, position.column));
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
goToSelectionAnchor() {
|
|
@@ -91,7 +91,7 @@ class SetSelectionAnchor extends EditorAction {
|
|
|
91
91
|
constructor() {
|
|
92
92
|
super({
|
|
93
93
|
id: 'editor.action.setSelectionAnchor',
|
|
94
|
-
label: localize2(
|
|
94
|
+
label: localize2(794, "Set Selection Anchor"),
|
|
95
95
|
precondition: undefined,
|
|
96
96
|
kbOpts: {
|
|
97
97
|
kbExpr: EditorContextKeys.editorTextFocus,
|
|
@@ -108,7 +108,7 @@ class GoToSelectionAnchor extends EditorAction {
|
|
|
108
108
|
constructor() {
|
|
109
109
|
super({
|
|
110
110
|
id: 'editor.action.goToSelectionAnchor',
|
|
111
|
-
label: localize2(
|
|
111
|
+
label: localize2(795, "Go to Selection Anchor"),
|
|
112
112
|
precondition: SelectionAnchorSet,
|
|
113
113
|
});
|
|
114
114
|
}
|
|
@@ -120,7 +120,7 @@ class SelectFromAnchorToCursor extends EditorAction {
|
|
|
120
120
|
constructor() {
|
|
121
121
|
super({
|
|
122
122
|
id: 'editor.action.selectFromAnchorToCursor',
|
|
123
|
-
label: localize2(
|
|
123
|
+
label: localize2(796, "Select from Anchor to Cursor"),
|
|
124
124
|
precondition: SelectionAnchorSet,
|
|
125
125
|
kbOpts: {
|
|
126
126
|
kbExpr: EditorContextKeys.editorTextFocus,
|
|
@@ -137,7 +137,7 @@ class CancelSelectionAnchor extends EditorAction {
|
|
|
137
137
|
constructor() {
|
|
138
138
|
super({
|
|
139
139
|
id: 'editor.action.cancelSelectionAnchor',
|
|
140
|
-
label: localize2(
|
|
140
|
+
label: localize2(797, "Cancel Selection Anchor"),
|
|
141
141
|
precondition: SelectionAnchorSet,
|
|
142
142
|
kbOpts: {
|
|
143
143
|
kbExpr: EditorContextKeys.editorTextFocus,
|