monaco-editor-core 0.54.0-dev-20250910 → 0.54.0-dev-20250911
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/common/codiconsLibrary.js +2 -0
- package/esm/vs/base/common/codiconsLibrary.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/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/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/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/inlineEditsModel.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- 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 +20 -12
- 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 +6 -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/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 +2 -2
- package/version.txt +1 -1
|
@@ -259,91 +259,92 @@ export var EditorOption;
|
|
|
259
259
|
EditorOption[EditorOption["mouseWheelZoom"] = 84] = "mouseWheelZoom";
|
|
260
260
|
EditorOption[EditorOption["multiCursorMergeOverlapping"] = 85] = "multiCursorMergeOverlapping";
|
|
261
261
|
EditorOption[EditorOption["multiCursorModifier"] = 86] = "multiCursorModifier";
|
|
262
|
-
EditorOption[EditorOption["
|
|
263
|
-
EditorOption[EditorOption["
|
|
264
|
-
EditorOption[EditorOption["
|
|
265
|
-
EditorOption[EditorOption["
|
|
266
|
-
EditorOption[EditorOption["
|
|
267
|
-
EditorOption[EditorOption["
|
|
268
|
-
EditorOption[EditorOption["
|
|
269
|
-
EditorOption[EditorOption["
|
|
270
|
-
EditorOption[EditorOption["
|
|
271
|
-
EditorOption[EditorOption["
|
|
272
|
-
EditorOption[EditorOption["
|
|
273
|
-
EditorOption[EditorOption["
|
|
274
|
-
EditorOption[EditorOption["
|
|
275
|
-
EditorOption[EditorOption["
|
|
276
|
-
EditorOption[EditorOption["
|
|
277
|
-
EditorOption[EditorOption["
|
|
278
|
-
EditorOption[EditorOption["
|
|
279
|
-
EditorOption[EditorOption["
|
|
280
|
-
EditorOption[EditorOption["
|
|
281
|
-
EditorOption[EditorOption["
|
|
282
|
-
EditorOption[EditorOption["
|
|
283
|
-
EditorOption[EditorOption["
|
|
284
|
-
EditorOption[EditorOption["
|
|
285
|
-
EditorOption[EditorOption["
|
|
286
|
-
EditorOption[EditorOption["
|
|
287
|
-
EditorOption[EditorOption["
|
|
288
|
-
EditorOption[EditorOption["
|
|
289
|
-
EditorOption[EditorOption["
|
|
290
|
-
EditorOption[EditorOption["
|
|
291
|
-
EditorOption[EditorOption["
|
|
292
|
-
EditorOption[EditorOption["
|
|
293
|
-
EditorOption[EditorOption["
|
|
294
|
-
EditorOption[EditorOption["
|
|
295
|
-
EditorOption[EditorOption["
|
|
296
|
-
EditorOption[EditorOption["
|
|
297
|
-
EditorOption[EditorOption["
|
|
298
|
-
EditorOption[EditorOption["
|
|
299
|
-
EditorOption[EditorOption["
|
|
300
|
-
EditorOption[EditorOption["
|
|
301
|
-
EditorOption[EditorOption["
|
|
302
|
-
EditorOption[EditorOption["
|
|
303
|
-
EditorOption[EditorOption["
|
|
304
|
-
EditorOption[EditorOption["
|
|
305
|
-
EditorOption[EditorOption["
|
|
306
|
-
EditorOption[EditorOption["
|
|
307
|
-
EditorOption[EditorOption["
|
|
308
|
-
EditorOption[EditorOption["
|
|
309
|
-
EditorOption[EditorOption["
|
|
310
|
-
EditorOption[EditorOption["
|
|
311
|
-
EditorOption[EditorOption["
|
|
312
|
-
EditorOption[EditorOption["
|
|
313
|
-
EditorOption[EditorOption["
|
|
314
|
-
EditorOption[EditorOption["
|
|
315
|
-
EditorOption[EditorOption["
|
|
316
|
-
EditorOption[EditorOption["
|
|
317
|
-
EditorOption[EditorOption["
|
|
318
|
-
EditorOption[EditorOption["
|
|
319
|
-
EditorOption[EditorOption["
|
|
320
|
-
EditorOption[EditorOption["
|
|
321
|
-
EditorOption[EditorOption["
|
|
322
|
-
EditorOption[EditorOption["
|
|
323
|
-
EditorOption[EditorOption["
|
|
324
|
-
EditorOption[EditorOption["
|
|
325
|
-
EditorOption[EditorOption["
|
|
326
|
-
EditorOption[EditorOption["
|
|
327
|
-
EditorOption[EditorOption["
|
|
328
|
-
EditorOption[EditorOption["
|
|
329
|
-
EditorOption[EditorOption["
|
|
330
|
-
EditorOption[EditorOption["
|
|
331
|
-
EditorOption[EditorOption["
|
|
332
|
-
EditorOption[EditorOption["
|
|
333
|
-
EditorOption[EditorOption["
|
|
334
|
-
EditorOption[EditorOption["
|
|
335
|
-
EditorOption[EditorOption["
|
|
336
|
-
EditorOption[EditorOption["
|
|
337
|
-
EditorOption[EditorOption["
|
|
338
|
-
EditorOption[EditorOption["
|
|
339
|
-
EditorOption[EditorOption["
|
|
340
|
-
EditorOption[EditorOption["
|
|
341
|
-
EditorOption[EditorOption["
|
|
342
|
-
EditorOption[EditorOption["
|
|
343
|
-
EditorOption[EditorOption["
|
|
344
|
-
EditorOption[EditorOption["
|
|
345
|
-
EditorOption[EditorOption["
|
|
346
|
-
EditorOption[EditorOption["
|
|
262
|
+
EditorOption[EditorOption["mouseMiddleClickAction"] = 87] = "mouseMiddleClickAction";
|
|
263
|
+
EditorOption[EditorOption["multiCursorPaste"] = 88] = "multiCursorPaste";
|
|
264
|
+
EditorOption[EditorOption["multiCursorLimit"] = 89] = "multiCursorLimit";
|
|
265
|
+
EditorOption[EditorOption["occurrencesHighlight"] = 90] = "occurrencesHighlight";
|
|
266
|
+
EditorOption[EditorOption["occurrencesHighlightDelay"] = 91] = "occurrencesHighlightDelay";
|
|
267
|
+
EditorOption[EditorOption["overtypeCursorStyle"] = 92] = "overtypeCursorStyle";
|
|
268
|
+
EditorOption[EditorOption["overtypeOnPaste"] = 93] = "overtypeOnPaste";
|
|
269
|
+
EditorOption[EditorOption["overviewRulerBorder"] = 94] = "overviewRulerBorder";
|
|
270
|
+
EditorOption[EditorOption["overviewRulerLanes"] = 95] = "overviewRulerLanes";
|
|
271
|
+
EditorOption[EditorOption["padding"] = 96] = "padding";
|
|
272
|
+
EditorOption[EditorOption["pasteAs"] = 97] = "pasteAs";
|
|
273
|
+
EditorOption[EditorOption["parameterHints"] = 98] = "parameterHints";
|
|
274
|
+
EditorOption[EditorOption["peekWidgetDefaultFocus"] = 99] = "peekWidgetDefaultFocus";
|
|
275
|
+
EditorOption[EditorOption["placeholder"] = 100] = "placeholder";
|
|
276
|
+
EditorOption[EditorOption["definitionLinkOpensInPeek"] = 101] = "definitionLinkOpensInPeek";
|
|
277
|
+
EditorOption[EditorOption["quickSuggestions"] = 102] = "quickSuggestions";
|
|
278
|
+
EditorOption[EditorOption["quickSuggestionsDelay"] = 103] = "quickSuggestionsDelay";
|
|
279
|
+
EditorOption[EditorOption["readOnly"] = 104] = "readOnly";
|
|
280
|
+
EditorOption[EditorOption["readOnlyMessage"] = 105] = "readOnlyMessage";
|
|
281
|
+
EditorOption[EditorOption["renameOnType"] = 106] = "renameOnType";
|
|
282
|
+
EditorOption[EditorOption["renderRichScreenReaderContent"] = 107] = "renderRichScreenReaderContent";
|
|
283
|
+
EditorOption[EditorOption["renderControlCharacters"] = 108] = "renderControlCharacters";
|
|
284
|
+
EditorOption[EditorOption["renderFinalNewline"] = 109] = "renderFinalNewline";
|
|
285
|
+
EditorOption[EditorOption["renderLineHighlight"] = 110] = "renderLineHighlight";
|
|
286
|
+
EditorOption[EditorOption["renderLineHighlightOnlyWhenFocus"] = 111] = "renderLineHighlightOnlyWhenFocus";
|
|
287
|
+
EditorOption[EditorOption["renderValidationDecorations"] = 112] = "renderValidationDecorations";
|
|
288
|
+
EditorOption[EditorOption["renderWhitespace"] = 113] = "renderWhitespace";
|
|
289
|
+
EditorOption[EditorOption["revealHorizontalRightPadding"] = 114] = "revealHorizontalRightPadding";
|
|
290
|
+
EditorOption[EditorOption["roundedSelection"] = 115] = "roundedSelection";
|
|
291
|
+
EditorOption[EditorOption["rulers"] = 116] = "rulers";
|
|
292
|
+
EditorOption[EditorOption["scrollbar"] = 117] = "scrollbar";
|
|
293
|
+
EditorOption[EditorOption["scrollBeyondLastColumn"] = 118] = "scrollBeyondLastColumn";
|
|
294
|
+
EditorOption[EditorOption["scrollBeyondLastLine"] = 119] = "scrollBeyondLastLine";
|
|
295
|
+
EditorOption[EditorOption["scrollPredominantAxis"] = 120] = "scrollPredominantAxis";
|
|
296
|
+
EditorOption[EditorOption["selectionClipboard"] = 121] = "selectionClipboard";
|
|
297
|
+
EditorOption[EditorOption["selectionHighlight"] = 122] = "selectionHighlight";
|
|
298
|
+
EditorOption[EditorOption["selectionHighlightMaxLength"] = 123] = "selectionHighlightMaxLength";
|
|
299
|
+
EditorOption[EditorOption["selectionHighlightMultiline"] = 124] = "selectionHighlightMultiline";
|
|
300
|
+
EditorOption[EditorOption["selectOnLineNumbers"] = 125] = "selectOnLineNumbers";
|
|
301
|
+
EditorOption[EditorOption["showFoldingControls"] = 126] = "showFoldingControls";
|
|
302
|
+
EditorOption[EditorOption["showUnused"] = 127] = "showUnused";
|
|
303
|
+
EditorOption[EditorOption["snippetSuggestions"] = 128] = "snippetSuggestions";
|
|
304
|
+
EditorOption[EditorOption["smartSelect"] = 129] = "smartSelect";
|
|
305
|
+
EditorOption[EditorOption["smoothScrolling"] = 130] = "smoothScrolling";
|
|
306
|
+
EditorOption[EditorOption["stickyScroll"] = 131] = "stickyScroll";
|
|
307
|
+
EditorOption[EditorOption["stickyTabStops"] = 132] = "stickyTabStops";
|
|
308
|
+
EditorOption[EditorOption["stopRenderingLineAfter"] = 133] = "stopRenderingLineAfter";
|
|
309
|
+
EditorOption[EditorOption["suggest"] = 134] = "suggest";
|
|
310
|
+
EditorOption[EditorOption["suggestFontSize"] = 135] = "suggestFontSize";
|
|
311
|
+
EditorOption[EditorOption["suggestLineHeight"] = 136] = "suggestLineHeight";
|
|
312
|
+
EditorOption[EditorOption["suggestOnTriggerCharacters"] = 137] = "suggestOnTriggerCharacters";
|
|
313
|
+
EditorOption[EditorOption["suggestSelection"] = 138] = "suggestSelection";
|
|
314
|
+
EditorOption[EditorOption["tabCompletion"] = 139] = "tabCompletion";
|
|
315
|
+
EditorOption[EditorOption["tabIndex"] = 140] = "tabIndex";
|
|
316
|
+
EditorOption[EditorOption["trimWhitespaceOnDelete"] = 141] = "trimWhitespaceOnDelete";
|
|
317
|
+
EditorOption[EditorOption["unicodeHighlighting"] = 142] = "unicodeHighlighting";
|
|
318
|
+
EditorOption[EditorOption["unusualLineTerminators"] = 143] = "unusualLineTerminators";
|
|
319
|
+
EditorOption[EditorOption["useShadowDOM"] = 144] = "useShadowDOM";
|
|
320
|
+
EditorOption[EditorOption["useTabStops"] = 145] = "useTabStops";
|
|
321
|
+
EditorOption[EditorOption["wordBreak"] = 146] = "wordBreak";
|
|
322
|
+
EditorOption[EditorOption["wordSegmenterLocales"] = 147] = "wordSegmenterLocales";
|
|
323
|
+
EditorOption[EditorOption["wordSeparators"] = 148] = "wordSeparators";
|
|
324
|
+
EditorOption[EditorOption["wordWrap"] = 149] = "wordWrap";
|
|
325
|
+
EditorOption[EditorOption["wordWrapBreakAfterCharacters"] = 150] = "wordWrapBreakAfterCharacters";
|
|
326
|
+
EditorOption[EditorOption["wordWrapBreakBeforeCharacters"] = 151] = "wordWrapBreakBeforeCharacters";
|
|
327
|
+
EditorOption[EditorOption["wordWrapColumn"] = 152] = "wordWrapColumn";
|
|
328
|
+
EditorOption[EditorOption["wordWrapOverride1"] = 153] = "wordWrapOverride1";
|
|
329
|
+
EditorOption[EditorOption["wordWrapOverride2"] = 154] = "wordWrapOverride2";
|
|
330
|
+
EditorOption[EditorOption["wrappingIndent"] = 155] = "wrappingIndent";
|
|
331
|
+
EditorOption[EditorOption["wrappingStrategy"] = 156] = "wrappingStrategy";
|
|
332
|
+
EditorOption[EditorOption["showDeprecated"] = 157] = "showDeprecated";
|
|
333
|
+
EditorOption[EditorOption["inertialScroll"] = 158] = "inertialScroll";
|
|
334
|
+
EditorOption[EditorOption["inlayHints"] = 159] = "inlayHints";
|
|
335
|
+
EditorOption[EditorOption["wrapOnEscapedLineFeeds"] = 160] = "wrapOnEscapedLineFeeds";
|
|
336
|
+
EditorOption[EditorOption["effectiveCursorStyle"] = 161] = "effectiveCursorStyle";
|
|
337
|
+
EditorOption[EditorOption["editorClassName"] = 162] = "editorClassName";
|
|
338
|
+
EditorOption[EditorOption["pixelRatio"] = 163] = "pixelRatio";
|
|
339
|
+
EditorOption[EditorOption["tabFocusMode"] = 164] = "tabFocusMode";
|
|
340
|
+
EditorOption[EditorOption["layoutInfo"] = 165] = "layoutInfo";
|
|
341
|
+
EditorOption[EditorOption["wrappingInfo"] = 166] = "wrappingInfo";
|
|
342
|
+
EditorOption[EditorOption["defaultColorDecorators"] = 167] = "defaultColorDecorators";
|
|
343
|
+
EditorOption[EditorOption["colorDecoratorsActivatedOn"] = 168] = "colorDecoratorsActivatedOn";
|
|
344
|
+
EditorOption[EditorOption["inlineCompletionsAccessibilityVerbose"] = 169] = "inlineCompletionsAccessibilityVerbose";
|
|
345
|
+
EditorOption[EditorOption["effectiveEditContext"] = 170] = "effectiveEditContext";
|
|
346
|
+
EditorOption[EditorOption["scrollOnMiddleClick"] = 171] = "scrollOnMiddleClick";
|
|
347
|
+
EditorOption[EditorOption["effectiveAllowVariableFonts"] = 172] = "effectiveAllowVariableFonts";
|
|
347
348
|
})(EditorOption || (EditorOption = {}));
|
|
348
349
|
/**
|
|
349
350
|
* End of line character preference.
|
|
@@ -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
|