@codingame/monaco-vscode-api 15.0.3 → 16.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/missing-services.js +245 -43
- package/package.json +11 -8
- package/services.js +7 -7
- package/vscode/src/vs/amdX.d.ts +3 -0
- package/vscode/src/vs/amdX.js +188 -0
- package/vscode/src/vs/base/browser/contextmenu.d.ts +1 -0
- package/vscode/src/vs/base/browser/dnd.d.ts +0 -1
- package/vscode/src/vs/base/browser/dnd.js +2 -19
- package/vscode/src/vs/base/browser/fonts.d.ts +3 -0
- package/vscode/src/vs/base/browser/fonts.js +27 -2
- package/vscode/src/vs/base/browser/markdownRenderer.js +2 -2
- package/vscode/src/vs/base/browser/ui/actionbar/actionViewItems.js +1 -1
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css +97 -0
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.js +1 -1
- package/vscode/src/vs/base/browser/ui/aria/aria.css +4 -0
- package/vscode/src/vs/base/browser/ui/aria/aria.js +1 -1
- package/vscode/src/vs/base/browser/ui/button/button.css +139 -0
- package/vscode/src/vs/base/browser/ui/button/button.d.ts +3 -2
- package/vscode/src/vs/base/browser/ui/button/button.js +16 -13
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css +22 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css +17 -0
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.ttf +0 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.css +10 -0
- package/vscode/src/vs/base/browser/ui/contextview/contextview.js +1 -1
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.css +18 -0
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.js +1 -1
- package/vscode/src/vs/base/browser/ui/dnd/dnd.css +16 -0
- package/vscode/src/vs/base/browser/ui/dnd/dnd.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/dnd/dnd.js +24 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css +35 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.d.ts +1 -0
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.js +6 -2
- package/vscode/src/vs/base/browser/ui/dropdown/dropdownActionViewItem.js +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/findInput.css +50 -0
- package/vscode/src/vs/base/browser/ui/findinput/findInput.js +1 -1
- package/vscode/src/vs/base/browser/ui/findinput/replaceInput.js +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hover.d.ts +84 -0
- package/vscode/src/vs/base/browser/ui/hover/hover.js +12 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hoverDelegate2.js +1 -1
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css +157 -0
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.js +1 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.d.ts +1 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconLabel.js +1 -1
- package/vscode/src/vs/base/browser/ui/iconLabel/iconlabel.css +87 -0
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css +81 -0
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.js +2 -2
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.css +27 -0
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.js +1 -1
- package/vscode/src/vs/base/browser/ui/list/list.css +60 -0
- package/vscode/src/vs/base/browser/ui/list/listPaging.js +1 -1
- package/vscode/src/vs/base/browser/ui/list/listView.js +16 -24
- package/vscode/src/vs/base/browser/ui/list/listWidget.js +5 -5
- package/vscode/src/vs/base/browser/ui/menu/menu.js +1 -0
- package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.css +3 -0
- package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.js +1 -1
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.css +33 -0
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.js +1 -1
- package/vscode/src/vs/base/browser/ui/sash/sash.css +118 -0
- package/vscode/src/vs/base/browser/ui/sash/sash.js +1 -1
- package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css +56 -0
- package/vscode/src/vs/base/browser/ui/scrollbar/scrollableElement.js +1 -1
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css +23 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.js +1 -1
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css +98 -0
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.js +1 -1
- package/vscode/src/vs/base/browser/ui/severityIcon/media/severityIcon.css +25 -0
- package/vscode/src/vs/{platform/severityIcon/browser → base/browser/ui/severityIcon}/severityIcon.d.ts +1 -1
- package/vscode/src/vs/{platform/severityIcon/browser → base/browser/ui/severityIcon}/severityIcon.js +4 -4
- package/vscode/src/vs/base/browser/ui/splitview/splitview.css +54 -0
- package/vscode/src/vs/base/browser/ui/splitview/splitview.js +1 -1
- package/vscode/src/vs/base/browser/ui/table/table.css +45 -0
- package/vscode/src/vs/base/browser/ui/table/tableWidget.js +1 -1
- package/vscode/src/vs/base/browser/ui/toggle/toggle.css +58 -0
- package/vscode/src/vs/base/browser/ui/toggle/toggle.js +1 -1
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.css +7 -0
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.js +1 -1
- package/vscode/src/vs/base/browser/ui/tree/abstractTree.js +1 -1
- package/vscode/src/vs/base/browser/ui/tree/media/tree.css +128 -0
- package/vscode/src/vs/base/browser/webWorkerFactory.d.ts +14 -0
- package/vscode/src/vs/base/browser/{defaultWorkerFactory.js → webWorkerFactory.js} +35 -45
- package/vscode/src/vs/base/common/arrays.d.ts +1 -0
- package/vscode/src/vs/base/common/arrays.js +6 -1
- package/vscode/src/vs/base/common/diff/diff.d.ts +1 -0
- package/vscode/src/vs/base/common/diff/diff.js +126 -1
- package/vscode/src/vs/base/common/history.d.ts +2 -0
- package/vscode/src/vs/base/common/history.js +7 -1
- package/vscode/src/vs/base/common/hotReload.js +80 -0
- package/vscode/src/vs/base/common/hotReloadHelpers.js +33 -4
- package/vscode/src/vs/base/common/htmlContent.d.ts +5 -0
- package/vscode/src/vs/base/common/htmlContent.js +10 -4
- package/vscode/src/vs/base/common/iterator.d.ts +1 -0
- package/vscode/src/vs/base/common/iterator.js +8 -0
- package/vscode/src/vs/base/common/json.js +36 -1
- package/vscode/src/vs/base/common/lifecycle.d.ts +1 -0
- package/vscode/src/vs/base/common/lifecycle.js +13 -1
- package/vscode/src/vs/base/common/marshallingIds.d.ts +2 -1
- package/vscode/src/vs/base/common/marshallingIds.js +1 -0
- package/vscode/src/vs/base/common/mime.d.ts +1 -0
- package/vscode/src/vs/base/common/mime.js +1 -0
- package/vscode/src/vs/base/common/network.d.ts +1 -0
- package/vscode/src/vs/base/common/network.js +4 -4
- package/vscode/src/vs/base/common/objects.d.ts +0 -3
- package/vscode/src/vs/base/common/objects.js +1 -31
- package/vscode/src/vs/base/common/observableInternal/autorun.d.ts +14 -7
- package/vscode/src/vs/base/common/observableInternal/autorun.js +37 -21
- package/vscode/src/vs/base/common/observableInternal/base.d.ts +11 -5
- package/vscode/src/vs/base/common/observableInternal/base.js +31 -0
- package/vscode/src/vs/base/common/observableInternal/derived.d.ts +15 -7
- package/vscode/src/vs/base/common/observableInternal/derived.js +32 -20
- package/vscode/src/vs/base/common/observableInternal/index.d.ts +1 -1
- package/vscode/src/vs/base/common/observableInternal/index.js +6 -1
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/debuggerRpc.d.ts +4 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/debuggerRpc.js +63 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.d.ts +41 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/devToolsLogger.js +436 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/rpc.d.ts +41 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/rpc.js +57 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.d.ts +20 -0
- package/vscode/src/vs/base/common/observableInternal/logging/debugger/utils.js +79 -0
- package/vscode/src/vs/base/common/observableInternal/utils.d.ts +4 -3
- package/vscode/src/vs/base/common/observableInternal/utils.js +19 -16
- package/vscode/src/vs/base/common/policy.d.ts +8 -0
- package/vscode/src/vs/base/common/product.d.ts +26 -5
- package/vscode/src/vs/base/common/strings.js +11 -18
- package/vscode/src/vs/base/common/worker/{simpleWorker.d.ts → webWorker.d.ts} +16 -27
- package/vscode/src/vs/base/common/worker/{simpleWorker.js → webWorker.js} +18 -46
- package/vscode/src/vs/base/common/worker/webWorkerBootstrap.d.ts +3 -0
- package/vscode/src/vs/base/common/worker/webWorkerBootstrap.js +27 -0
- package/vscode/src/vs/editor/browser/config/migrateOptions.js +6 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css +39 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.d.ts +3 -2
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.js +30 -11
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.d.ts +3 -0
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContextUtils.js +25 -5
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.d.ts +1 -1
- package/vscode/src/vs/editor/browser/controller/editContext/native/screenReaderSupport.js +16 -14
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css +19 -0
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.js +1 -1
- package/vscode/src/vs/editor/browser/gpu/css/decorationCssRuleExtractor.js +1 -1
- package/vscode/src/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css +4 -0
- package/vscode/src/vs/editor/browser/rect.d.ts +11 -0
- package/vscode/src/vs/editor/browser/rect.js +39 -11
- package/vscode/src/vs/editor/browser/services/editorWorkerService.d.ts +9 -8
- package/vscode/src/vs/editor/browser/services/editorWorkerService.js +7 -7
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css +97 -0
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.d.ts +2 -2
- package/vscode/src/vs/editor/browser/services/hoverService/hoverService.js +23 -13
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/hoverWidget.js +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/updatableHoverWidget.d.ts +1 -1
- package/vscode/src/vs/editor/browser/services/hoverService/updatableHoverWidget.js +22 -10
- package/vscode/src/vs/editor/browser/view.d.ts +3 -1
- package/vscode/src/vs/editor/browser/view.js +57 -3
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css +21 -0
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.css +4 -0
- package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css +16 -0
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.css +14 -0
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css +24 -0
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css +9 -0
- package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.css +3 -0
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css +6 -0
- package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css +46 -0
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.css +5 -0
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css +7 -0
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.css +21 -0
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.css +66 -0
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css +53 -0
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.js +1 -1
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.css +4 -0
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.js +1 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.d.ts +0 -1
- package/vscode/src/vs/editor/browser/widget/codeEditor/codeEditorWidget.js +18 -55
- package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css +92 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css +54 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.js +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.d.ts +1 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/diffEditorViewZones/renderLines.js +16 -0
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorViewModel.js +7 -11
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffEditorWidget.js +9 -9
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/diffProviderFactoryService.service.d.ts +1 -1
- package/vscode/src/vs/editor/browser/widget/diffEditor/style.css +337 -0
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/markdownRenderer.js +1 -1
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css +15 -0
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.d.ts +2 -0
- package/vscode/src/vs/editor/common/config/editorConfigurationSchema.js +58 -31
- package/vscode/src/vs/editor/common/config/editorOptions.d.ts +1 -4
- package/vscode/src/vs/editor/common/config/editorOptions.js +391 -396
- package/vscode/src/vs/editor/common/core/editorColorRegistry.js +71 -71
- package/vscode/src/vs/editor/common/editorContextKeys.js +46 -46
- package/vscode/src/vs/editor/common/languages/modesRegistry.js +1 -1
- package/vscode/src/vs/editor/common/languages.d.ts +9 -3
- package/vscode/src/vs/editor/common/languages.js +61 -27
- package/vscode/src/vs/editor/common/model/editStack.js +1 -1
- package/vscode/src/vs/editor/common/model/treeSitterTokenStoreService.service.d.ts +3 -0
- package/vscode/src/vs/editor/common/model/treeSitterTokens.d.ts +1 -1
- package/vscode/src/vs/editor/common/model/treeSitterTokens.js +18 -6
- package/vscode/src/vs/editor/common/services/{editorSimpleWorker.d.ts → editorWebWorker.d.ts} +7 -18
- package/vscode/src/vs/editor/common/services/{editorSimpleWorker.js → editorWebWorker.js} +12 -38
- package/vscode/src/vs/editor/common/services/editorWebWorkerMain.d.ts +1 -0
- package/vscode/src/vs/editor/common/services/editorWebWorkerMain.js +5 -0
- package/vscode/src/vs/editor/common/services/editorWorker.service.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/editorWorkerHost.d.ts +3 -3
- package/vscode/src/vs/editor/common/services/textModelSync/textModelSync.impl.d.ts +4 -4
- package/vscode/src/vs/editor/common/services/textResourceConfiguration.service.d.ts +1 -1
- package/vscode/src/vs/editor/common/services/treeSitterParserService.service.d.ts +2 -2
- package/vscode/src/vs/editor/common/standaloneStrings.js +47 -47
- package/vscode/src/vs/editor/common/tokens/lineTokens.js +5 -0
- package/vscode/src/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewModel/viewModelImpl.js +6 -3
- package/vscode/src/vs/editor/common/viewModel.d.ts +1 -0
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.d.ts +21 -12
- package/vscode/src/vs/editor/common/viewModelEventDispatcher.js +29 -12
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.css +4 -0
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +7 -7
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.css +5 -0
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +7 -7
- package/vscode/src/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/vscode/src/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/vscode/src/vs/editor/contrib/clipboard/browser/clipboard.js +18 -23
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/vscode/src/vs/editor/contrib/codeAction/browser/codeActionMenu.js +10 -10
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.css +49 -0
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +10 -10
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codelens.js +5 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css +54 -0
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorDetector.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPicker.css +171 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerBody.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +2 -2
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +4 -4
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerInsertButton.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerSaturationBox.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerStrip.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPickerWidget.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/hoverColorPicker/hoverColorPickerParticipant.js +1 -1
- package/vscode/src/vs/editor/contrib/colorPicker/browser/images/opacity-background.png +0 -0
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/vscode/src/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerWidget.js +1 -1
- package/vscode/src/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/vscode/src/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
- package/vscode/src/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/vscode/src/vs/editor/contrib/dnd/browser/dnd.css +25 -0
- package/vscode/src/vs/editor/contrib/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css +19 -0
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +3 -3
- package/vscode/src/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findController.js +16 -16
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css +6 -0
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.js +1 -1
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.css +223 -0
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.js +28 -28
- package/vscode/src/vs/editor/contrib/folding/browser/folding.css +42 -0
- package/vscode/src/vs/editor/contrib/folding/browser/folding.js +21 -21
- package/vscode/src/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/vscode/src/vs/editor/contrib/folding/browser/syntaxRangeProvider.js +3 -0
- package/vscode/src/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/vscode/src/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +17 -20
- package/vscode/src/vs/editor/contrib/gotoError/browser/media/gotoErrorWidget.css +55 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.css +5 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +2 -2
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.css +64 -0
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +5 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/vscode/src/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverController.js +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/contentHoverRendered.js +3 -3
- package/vscode/src/vs/editor/contrib/hover/browser/glyphHoverController.js +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css +61 -0
- package/vscode/src/vs/editor/contrib/hover/browser/hoverAccessibleViews.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/vscode/src/vs/editor/contrib/hover/browser/hoverActions.js +25 -25
- package/vscode/src/vs/editor/contrib/hover/browser/hoverContribution.js +1 -1
- package/vscode/src/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +9 -9
- package/vscode/src/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.css +3 -0
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +3 -3
- package/vscode/src/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/vscode/src/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +20 -20
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +11 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +10 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css +35 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +6 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsAccessibleView.js +22 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/changeRecorder.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/ghostText.d.ts +2 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.d.ts +9 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +85 -14
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.d.ts +10 -29
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsSource.js +115 -101
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/inlineEdit.js +1 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.d.ts +2 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/model/provideInlineCompletions.js +7 -18
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.d.ts +23 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/structuredLogger.js +41 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.css +62 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.d.ts +1 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.js +18 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineCompletionsView.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.d.ts +3 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +62 -36
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.d.ts +22 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorView.js +310 -61
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.d.ts +1 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditWithChanges.js +1 -3
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.d.ts +35 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +58 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.d.ts +10 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsView.js +103 -130
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.d.ts +18 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViewInterface.js +10 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{viewAndDiffProducer.d.ts → inlineEditsViewProducer.d.ts} +5 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/{viewAndDiffProducer.js → inlineEditsViewProducer.js} +56 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.d.ts +17 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsCollapsedView.js +107 -0
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.d.ts +8 -10
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsDeletionView.js +77 -51
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.d.ts +7 -8
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsInsertionView.js +88 -69
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.d.ts +10 -4
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsLineReplacementView.js +55 -49
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.d.ts +6 -11
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsSideBySideView.js +182 -150
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.d.ts +5 -12
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/inlineEditsWordReplacementView.js +40 -119
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.d.ts +1 -1
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsViews/originalEditorInlineDiffView.js +13 -56
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.d.ts +9 -2
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +85 -54
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.d.ts +2 -5
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/utils/utils.js +11 -75
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css +156 -0
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgress.js +1 -1
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.css +21 -0
- package/vscode/src/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/vscode/src/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/vscode/src/vs/editor/contrib/linesOperations/browser/linesOperations.js +30 -30
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.css +4 -0
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +3 -3
- package/vscode/src/vs/editor/contrib/links/browser/getLinks.js +2 -1
- package/vscode/src/vs/editor/contrib/links/browser/links.css +9 -0
- package/vscode/src/vs/editor/contrib/links/browser/links.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/links/browser/links.js +11 -14
- package/vscode/src/vs/editor/contrib/message/browser/messageController.css +67 -0
- package/vscode/src/vs/editor/contrib/message/browser/messageController.js +2 -2
- package/vscode/src/vs/editor/contrib/multicursor/browser/multicursor.js +23 -23
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css +120 -0
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +5 -5
- package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css +64 -0
- package/vscode/src/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.css +12 -0
- package/vscode/src/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/vscode/src/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css +42 -0
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.js +8 -8
- package/vscode/src/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetController2.js +4 -4
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.css +13 -0
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.js +1 -1
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css +58 -0
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollController.js +12 -15
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.d.ts +4 -3
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollProvider.js +13 -10
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.d.ts +5 -4
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScrollWidget.js +35 -25
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css +348 -0
- package/vscode/src/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestController.js +11 -11
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.d.ts +0 -1
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestModel.js +3 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidget.js +26 -21
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/vscode/src/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css +68 -0
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +39 -39
- package/vscode/src/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/vscode/src/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.css +66 -0
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.css +5 -0
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.d.ts +6 -5
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +51 -43
- package/vscode/src/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.css +32 -0
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +10 -10
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/vscode/src/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.css +11 -0
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.js +2 -2
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css +18 -0
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/keyboard-dark.svg +10 -0
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/keyboard-light.svg +10 -0
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css +49 -0
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInputService.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.d.ts +0 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneServices.js +1 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneThemeService.d.ts +2 -2
- package/vscode/src/vs/editor/standalone/browser/standaloneThemeService.js +1 -1
- package/vscode/src/vs/editor/standalone/browser/standaloneTreeSitterService.d.ts +2 -2
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.d.ts +3 -0
- package/vscode/src/vs/platform/accessibility/browser/accessibleView.js +6 -1
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.d.ts +4 -0
- package/vscode/src/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +68 -54
- package/vscode/src/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionList.js +5 -5
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css +138 -0
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.js +8 -8
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.css +49 -0
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.d.ts +1 -1
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.js +7 -7
- package/vscode/src/vs/platform/actions/browser/toolbar.js +2 -2
- package/vscode/src/vs/platform/actions/common/actions.d.ts +1 -0
- package/vscode/src/vs/platform/actions/common/actions.js +1 -0
- package/vscode/src/vs/platform/actions/common/menuResetAction.js +1 -1
- package/vscode/src/vs/platform/actions/common/menuService.js +2 -2
- package/vscode/src/vs/platform/configuration/common/configuration.d.ts +1 -0
- package/vscode/src/vs/platform/configuration/common/configuration.js +24 -1
- package/vscode/src/vs/platform/configuration/common/configurationModels.js +4 -4
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.d.ts +2 -6
- package/vscode/src/vs/platform/configuration/common/configurationRegistry.js +24 -18
- package/vscode/src/vs/platform/configuration/common/configurations.d.ts +1 -0
- package/vscode/src/vs/platform/configuration/common/configurations.js +18 -9
- package/vscode/src/vs/platform/contextkey/browser/contextKeyService.js +1 -1
- package/vscode/src/vs/platform/contextkey/common/contextkey.d.ts +1 -0
- package/vscode/src/vs/platform/contextkey/common/contextkey.js +14 -11
- package/vscode/src/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/vscode/src/vs/platform/contextkey/common/scanner.js +5 -5
- package/vscode/src/vs/platform/contextview/browser/contextMenuHandler.js +1 -0
- package/vscode/src/vs/platform/dnd/browser/dnd.js +1 -1
- package/vscode/src/vs/platform/environment/common/argv.d.ts +3 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.service.d.ts +9 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionGalleryManifest.service.js +6 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.d.ts +33 -9
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagement.js +23 -11
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.d.ts +2 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionManagementUtil.js +2 -2
- package/vscode/src/vs/platform/extensionManagement/common/extensionNls.js +1 -1
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.d.ts +1 -0
- package/vscode/src/vs/platform/extensionManagement/common/extensionsScannerService.js +8 -7
- package/vscode/src/vs/platform/extensionResourceLoader/common/extensionResourceLoader.service.d.ts +3 -3
- package/vscode/src/vs/platform/extensions/common/extensionValidator.js +20 -20
- package/vscode/src/vs/platform/extensions/common/extensions.d.ts +5 -0
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.d.ts +15 -6
- package/vscode/src/vs/platform/extensions/common/extensionsApiProposals.js +17 -8
- package/vscode/src/vs/platform/files/browser/htmlFileSystemProvider.js +2 -2
- package/vscode/src/vs/platform/files/common/files.js +6 -6
- package/vscode/src/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/vscode/src/vs/platform/hover/browser/hover.d.ts +1 -1
- package/vscode/src/vs/platform/hover/browser/hover.js +1 -1
- package/vscode/src/vs/platform/hover/browser/hover.service.d.ts +1 -1
- package/vscode/src/vs/platform/ipc/common/services.d.ts +1 -1
- package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.d.ts +7 -1
- package/vscode/src/vs/platform/jsonschemas/common/jsonContributionRegistry.js +40 -3
- package/vscode/src/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/vscode/src/vs/platform/list/browser/listService.js +27 -27
- package/vscode/src/vs/platform/log/common/log.d.ts +2 -1
- package/vscode/src/vs/platform/log/common/log.js +13 -9
- package/vscode/src/vs/platform/log/common/log.service.d.ts +1 -1
- package/vscode/src/vs/platform/markers/common/markerService.d.ts +4 -0
- package/vscode/src/vs/platform/markers/common/markerService.js +79 -29
- package/vscode/src/vs/platform/markers/common/markers.js +6 -6
- package/vscode/src/vs/platform/markers/common/markers.service.d.ts +2 -0
- package/vscode/src/vs/platform/observable/common/wrapInHotClass.js +28 -3
- package/vscode/src/vs/platform/observable/common/wrapInReloadableClass.js +42 -4
- package/vscode/src/vs/platform/opener/browser/link.css +6 -0
- package/vscode/src/vs/platform/opener/browser/link.js +1 -1
- package/vscode/src/vs/platform/policy/common/policy.d.ts +7 -4
- package/vscode/src/vs/platform/policy/common/policy.js +1 -0
- package/vscode/src/vs/platform/policy/common/policy.service.d.ts +3 -1
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css +311 -0
- package/vscode/src/vs/platform/quickinput/browser/quickInput.js +12 -12
- package/vscode/src/vs/platform/quickinput/browser/quickInputActions.js +3 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputBox.js +1 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.d.ts +0 -1
- package/vscode/src/vs/platform/quickinput/browser/quickInputController.js +16 -18
- package/vscode/src/vs/platform/quickinput/browser/quickInputTree.js +5 -3
- package/vscode/src/vs/platform/quickinput/browser/quickInputUtils.js +2 -2
- package/vscode/src/vs/platform/quickinput/common/quickInput.d.ts +2 -0
- package/vscode/src/vs/platform/remote/common/remoteSocketFactoryService.service.d.ts +1 -1
- package/vscode/src/vs/platform/request/common/request.js +18 -18
- package/vscode/src/vs/platform/storage/common/storage.d.ts +0 -1
- package/vscode/src/vs/platform/storage/common/storage.js +1 -2
- package/vscode/src/vs/platform/telemetry/common/telemetryUtils.js +2 -2
- package/vscode/src/vs/platform/terminal/common/terminal.d.ts +2 -0
- package/vscode/src/vs/platform/theme/browser/defaultStyles.d.ts +1 -1
- package/vscode/src/vs/platform/theme/common/colorUtils.js +3 -3
- package/vscode/src/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/vscode/src/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/vscode/src/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/vscode/src/vs/platform/theme/common/colors/inputColors.js +45 -45
- package/vscode/src/vs/platform/theme/common/colors/listColors.js +36 -36
- package/vscode/src/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/vscode/src/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/vscode/src/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/vscode/src/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/vscode/src/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/vscode/src/vs/platform/theme/common/iconRegistry.js +6 -6
- package/vscode/src/vs/platform/theme/common/themeService.d.ts +0 -3
- package/vscode/src/vs/platform/theme/common/themeService.js +1 -1
- package/vscode/src/vs/platform/theme/common/themeService.service.d.ts +2 -2
- package/vscode/src/vs/platform/tunnel/common/tunnel.d.ts +1 -1
- package/vscode/src/vs/platform/tunnel/common/tunnel.service.d.ts +1 -1
- package/vscode/src/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/vscode/src/vs/platform/userDataProfile/common/userDataProfile.js +1 -1
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.js +5 -5
- package/vscode/src/vs/platform/userDataSync/common/userDataSync.service.d.ts +2 -1
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.d.ts +12 -0
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.js +14 -0
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.service.d.ts +13 -0
- package/vscode/src/vs/platform/webContentExtractor/common/webContentExtractor.service.js +7 -0
- package/vscode/src/vs/platform/window/common/window.d.ts +7 -0
- package/vscode/src/vs/platform/window/common/window.js +24 -1
- package/vscode/src/vs/platform/workspace/common/workspace.d.ts +4 -4
- package/vscode/src/vs/platform/workspace/common/workspace.js +13 -15
- package/vscode/src/vs/workbench/api/browser/statusBarService.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.d.ts +2 -2
- package/vscode/src/vs/workbench/api/common/extHost.api.impl.js +41 -9
- package/vscode/src/vs/workbench/api/common/extHost.common.services.js +2 -0
- package/vscode/src/vs/workbench/api/common/extHost.protocol.d.ts +34 -5
- package/vscode/src/vs/workbench/api/common/extHost.protocol.js +5 -2
- package/vscode/src/vs/workbench/api/common/extHostAuthentication.js +3 -1
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.d.ts +10 -5
- package/vscode/src/vs/workbench/api/common/extHostChatAgents2.js +37 -45
- package/vscode/src/vs/workbench/api/common/extHostChatStatus.d.ts +9 -0
- package/vscode/src/vs/workbench/api/common/extHostChatStatus.js +77 -0
- package/vscode/src/vs/workbench/api/common/extHostDebugService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostDiagnostics.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostExtensionService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostFileSystemEventService.js +4 -4
- package/vscode/src/vs/workbench/api/common/extHostLanguageFeatures.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.d.ts +4 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModelTools.js +34 -7
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.d.ts +2 -1
- package/vscode/src/vs/workbench/api/common/extHostLanguageModels.js +8 -7
- package/vscode/src/vs/workbench/api/common/extHostLogService.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostMcp.d.ts +23 -0
- package/vscode/src/vs/workbench/api/common/extHostMcp.js +193 -0
- package/vscode/src/vs/workbench/api/common/extHostNotebook.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostStatusBar.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTask.d.ts +10 -1
- package/vscode/src/vs/workbench/api/common/extHostTask.js +28 -0
- package/vscode/src/vs/workbench/api/common/extHostTelemetry.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTerminalService.js +6 -48
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.d.ts +44 -2
- package/vscode/src/vs/workbench/api/common/extHostTerminalShellIntegration.js +121 -29
- package/vscode/src/vs/workbench/api/common/extHostTreeViews.js +1 -1
- package/vscode/src/vs/workbench/api/common/extHostTunnelService.js +2 -2
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.d.ts +9 -4
- package/vscode/src/vs/workbench/api/common/extHostTypeConverters.js +131 -11
- package/vscode/src/vs/workbench/api/common/extHostTypes.d.ts +67 -2
- package/vscode/src/vs/workbench/api/common/extHostTypes.js +97 -3
- package/vscode/src/vs/workbench/api/common/extHostWorkspace.js +1 -1
- package/vscode/src/vs/workbench/api/common/extensionHostMain.d.ts +1 -1
- package/vscode/src/vs/workbench/api/common/jsonValidationExtensionPoint.js +12 -12
- package/vscode/src/vs/workbench/browser/actions/developerActions.js +32 -32
- package/vscode/src/vs/workbench/browser/actions/media/actions.css +45 -0
- package/vscode/src/vs/workbench/browser/actions/textInputActions.js +6 -6
- package/vscode/src/vs/workbench/common/configuration.js +10 -10
- package/vscode/src/vs/workbench/common/contextkeys.js +70 -70
- package/vscode/src/vs/workbench/common/editor.js +4 -4
- package/vscode/src/vs/workbench/common/theme.js +162 -162
- package/vscode/src/vs/workbench/common/views.js +4 -4
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibilityConfiguration.js +176 -141
- package/vscode/src/vs/workbench/contrib/accessibility/browser/accessibleViewActions.js +13 -13
- package/vscode/src/vs/workbench/contrib/chat/browser/chat.service.d.ts +2 -1
- package/vscode/src/vs/workbench/contrib/chat/browser/chatEditing/chatEditingEditorContextKeys.js +5 -5
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatusItemService.service.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/chat/browser/chatStatusItemService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.service.d.ts +4 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.d.ts +16 -3
- package/vscode/src/vs/workbench/contrib/chat/common/chatContextKeys.js +51 -36
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.d.ts +1 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.js +3 -8
- package/vscode/src/vs/workbench/contrib/chat/common/chatEditingService.service.d.ts +3 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.d.ts +15 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.d.ts +15 -4
- package/vscode/src/vs/workbench/contrib/chat/common/chatService.service.d.ts +12 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatSlashCommands.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.d.ts +5 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatTransferService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/chat/common/chatVariables.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/chatWidgetHistoryService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/chat/common/constants.d.ts +24 -0
- package/vscode/src/vs/workbench/contrib/chat/common/constants.js +49 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.d.ts +33 -5
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.js +27 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModelToolsService.service.d.ts +2 -0
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.d.ts +21 -1
- package/vscode/src/vs/workbench/contrib/chat/common/languageModels.js +20 -7
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/contentProviders/types.d.ts +6 -2
- package/vscode/src/vs/workbench/contrib/chat/common/promptSyntax/parsers/types.d.ts +19 -11
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.d.ts +6 -4
- package/vscode/src/vs/workbench/contrib/chat/common/tools/editFileTool.js +53 -22
- package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.d.ts +34 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/promptTsxTypes.js +27 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.d.ts +12 -0
- package/vscode/src/vs/workbench/contrib/chat/common/tools/tools.js +23 -0
- package/vscode/src/vs/workbench/contrib/codeActions/browser/codeActionsContribution.js +13 -13
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css +27 -0
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.d.ts +0 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.js +7 -9
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorAccessibilityHelp.js +5 -5
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/diffEditorHelper.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/largeFileOptimizations.js +3 -3
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/saveParticipants.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMinimap.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleMultiCursorModifier.js +4 -4
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderControlCharacter.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleRenderWhitespace.js +2 -2
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/toggleWordWrap.js +5 -5
- package/vscode/src/vs/workbench/contrib/comments/browser/commentService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/comments/browser/commentsAccessibility.js +12 -12
- package/vscode/src/vs/workbench/contrib/comments/common/commentContextKeys.js +11 -11
- package/vscode/src/vs/workbench/contrib/debug/common/abstractDebugAdapter.js +1 -1
- package/vscode/src/vs/workbench/contrib/debug/common/debug.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/debug/common/debug.js +64 -64
- package/vscode/src/vs/workbench/contrib/extensions/common/extensions.service.d.ts +2 -2
- package/vscode/src/vs/workbench/contrib/files/browser/fileConstants.js +6 -6
- package/vscode/src/vs/workbench/contrib/files/browser/files.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/folding/browser/folding.contribution.js +3 -3
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsMultiple.js +20 -35
- package/vscode/src/vs/workbench/contrib/format/browser/formatActionsNone.js +4 -4
- package/vscode/src/vs/workbench/contrib/format/browser/formatModified.js +1 -1
- package/vscode/src/vs/workbench/contrib/inlayHints/browser/inlayHintsAccessibilty.js +4 -4
- package/vscode/src/vs/workbench/contrib/list/browser/listResizeColumnAction.js +2 -2
- package/vscode/src/vs/workbench/contrib/list/browser/tableColumnResizeQuickPick.js +5 -5
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfigPathsService.service.d.ts +7 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpConfigPathsService.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.d.ts +28 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.d.ts +29 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpRegistryTypes.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.d.ts +205 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.js +164 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.d.ts +10 -0
- package/vscode/src/vs/workbench/contrib/mcp/common/mcpTypes.service.js +6 -0
- package/vscode/src/vs/workbench/contrib/multiDiffEditor/browser/multiDiffSourceResolverService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.d.ts +7 -8
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookCommon.js +20 -20
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiff.service.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/quickDiffService.d.ts +1 -1
- package/vscode/src/vs/workbench/contrib/scm/common/scm.service.d.ts +1 -0
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetCompletionProvider.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsFile.js +3 -3
- package/vscode/src/vs/workbench/contrib/snippets/browser/snippetsService.js +9 -9
- package/vscode/src/vs/workbench/contrib/speech/common/speechService.js +29 -29
- package/vscode/src/vs/workbench/contrib/tasks/common/taskDefinitionRegistry.js +5 -5
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.d.ts +22 -15
- package/vscode/src/vs/workbench/contrib/tasks/common/tasks.js +18 -15
- package/vscode/src/vs/workbench/contrib/testing/common/constants.js +11 -11
- package/vscode/src/vs/workbench/contrib/testing/common/testTypes.js +3 -3
- package/vscode/src/vs/workbench/contrib/url/browser/trustedDomainService.service.d.ts +2 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.d.ts +67 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.js +183 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.service.d.ts +9 -0
- package/vscode/src/vs/workbench/services/accounts/common/defaultAccount.service.js +6 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.d.ts +1 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.js +2 -1
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolver.service.d.ts +7 -12
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.d.ts +40 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/configurationResolverExpression.js +149 -0
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.d.ts +9 -20
- package/vscode/src/vs/workbench/services/configurationResolver/common/variableResolver.js +94 -129
- package/vscode/src/vs/workbench/services/editor/common/editorResolverService.js +1 -1
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.d.ts +9 -8
- package/vscode/src/vs/workbench/services/extensionManagement/common/extensionManagement.js +9 -8
- package/vscode/src/vs/workbench/services/extensions/common/extensions.d.ts +1 -1
- package/vscode/src/vs/workbench/services/extensions/common/extensions.js +1 -0
- package/vscode/src/vs/workbench/services/extensions/common/extensionsRegistry.js +91 -83
- package/vscode/src/vs/workbench/services/extensions/common/rpcProtocol.d.ts +1 -1
- package/vscode/src/vs/workbench/services/filesConfiguration/common/filesConfigurationService.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/language/common/languageService.js +28 -28
- package/vscode/src/vs/workbench/services/layout/browser/layoutService.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycle.service.d.ts +1 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycleService.d.ts +2 -0
- package/vscode/src/vs/workbench/services/lifecycle/common/lifecycleService.js +2 -0
- package/vscode/src/vs/workbench/services/log/common/logConstants.js +1 -1
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.d.ts +8 -0
- package/vscode/src/vs/workbench/services/notebook/common/notebookDocumentService.js +34 -1
- package/vscode/src/vs/workbench/services/preferences/common/preferences.service.d.ts +1 -1
- package/vscode/src/vs/workbench/services/remote/common/remoteExplorerService.js +8 -8
- package/vscode/src/vs/workbench/services/remote/common/tunnelModel.js +6 -6
- package/vscode/src/vs/workbench/services/search/common/queryBuilder.js +1 -1
- package/vscode/src/vs/workbench/services/statusbar/browser/statusbar.d.ts +2 -2
- package/vscode/src/vs/workbench/services/themes/common/colorExtensionPoint.js +22 -22
- package/vscode/src/vs/workbench/services/themes/common/iconExtensionPoint.js +13 -13
- package/vscode/src/vs/workbench/services/userDataSync/common/userDataSync.js +12 -12
- package/vscode-dts/vscode.d.ts +22 -5
- package/vscode-dts/vscode.proposed.chatParticipantAdditions.d.ts +21 -2
- package/vscode-dts/vscode.proposed.chatParticipantPrivate.d.ts +9 -1
- package/vscode-dts/vscode.proposed.chatProvider.d.ts +4 -4
- package/vscode-dts/vscode.proposed.chatStatusItem.d.ts +61 -0
- package/vscode-dts/vscode.proposed.d.ts +5 -2
- package/vscode-dts/vscode.proposed.defaultChatParticipant.d.ts +2 -8
- package/vscode-dts/vscode.proposed.inlineCompletionsAdditions.d.ts +1 -1
- package/vscode-dts/vscode.proposed.languageModelDataPart.d.ts +98 -0
- package/vscode-dts/{vscode.proposed.chatReadonlyPromptReference.d.ts → vscode.proposed.languageModelToolsForAgent.d.ts} +1 -10
- package/vscode-dts/vscode.proposed.mcpConfigurationProvider.d.ts +45 -0
- package/vscode-dts/vscode.proposed.taskProblemMatcherStatus.d.ts +42 -0
- package/vscode-dts/vscode.proposed.terminalShellEnv.d.ts +1 -1
- package/vscode-dts/vscode.proposed.textDocumentEncoding.d.ts +16 -1
- package/workers/editor.worker.d.ts +1 -1
- package/workers/editor.worker.js +1 -1
- package/external/rollup-plugin-styles/dist/runtime/inject-css.js +0 -3
- package/vscode/src/vs/base/browser/defaultWorkerFactory.d.ts +0 -11
- package/vscode/src/vs/base/browser/ui/actionbar/actionbar.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/aria/aria.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/button/button.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon-modifiers.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/codicons/codicon/codicon.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/contextview/contextview.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/countBadge/countBadge.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/dropdown/dropdown.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/findinput/findInput.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/hover/hoverWidget.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/iconLabel/iconlabel.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/inputbox/inputBox.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/keybindingLabel/keybindingLabel.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/list/list.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/mouseCursor/mouseCursor.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/progressbar/progressbar.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/sash/sash.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/scrollbar/media/scrollbars.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/selectBox/selectBox.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/selectBox/selectBoxCustom.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/splitview/splitview.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/table/table.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/toggle/toggle.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/toolbar/toolbar.css.js +0 -6
- package/vscode/src/vs/base/browser/ui/tree/media/tree.css.js +0 -6
- package/vscode/src/vs/editor/browser/controller/editContext/native/nativeEditContext.css.js +0 -6
- package/vscode/src/vs/editor/browser/controller/editContext/textArea/textAreaEditContext.css.js +0 -6
- package/vscode/src/vs/editor/browser/gpu/css/media/decorationCssRuleExtractor.css.js +0 -6
- package/vscode/src/vs/editor/browser/services/hoverService/hover.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/blockDecorations/blockDecorations.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/currentLineHighlight/currentLineHighlight.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/decorations/decorations.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/glyphMargin/glyphMargin.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/gpuMark/gpuMark.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/indentGuides/indentGuides.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/lineNumbers/lineNumbers.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/linesDecorations/linesDecorations.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/margin/margin.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/marginDecorations/marginDecorations.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/minimap/minimap.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/overlayWidgets/overlayWidgets.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/rulers/rulers.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/scrollDecoration/scrollDecoration.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/selections/selections.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/viewCursors/viewCursors.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/viewLines/viewLines.css.js +0 -6
- package/vscode/src/vs/editor/browser/viewParts/whitespace/whitespace.css.js +0 -6
- package/vscode/src/vs/editor/browser/widget/codeEditor/editor.css.js +0 -6
- package/vscode/src/vs/editor/browser/widget/diffEditor/components/accessibleDiffViewer.css.js +0 -6
- package/vscode/src/vs/editor/browser/widget/diffEditor/style.css.js +0 -6
- package/vscode/src/vs/editor/browser/widget/markdownRenderer/browser/renderedMarkdown.css.js +0 -6
- package/vscode/src/vs/editor/common/services/editorWorkerBootstrap.d.ts +0 -2
- package/vscode/src/vs/editor/common/services/editorWorkerBootstrap.js +0 -25
- package/vscode/src/vs/editor/contrib/anchorSelect/browser/anchorSelect.css.js +0 -6
- package/vscode/src/vs/editor/contrib/bracketMatching/browser/bracketMatching.css.js +0 -6
- package/vscode/src/vs/editor/contrib/codeAction/browser/lightBulbWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/codelens/browser/codelensWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/colorPicker/browser/colorPicker.css.js +0 -6
- package/vscode/src/vs/editor/contrib/dnd/browser/dnd.css.js +0 -6
- package/vscode/src/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/find/browser/findOptionsWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/find/browser/findWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/folding/browser/folding.css.js +0 -6
- package/vscode/src/vs/editor/contrib/gotoError/browser/media/gotoErrorWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.css.js +0 -6
- package/vscode/src/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/hover/browser/hover.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/ghostText/ghostTextView.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/indicatorView.d.ts +0 -19
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/indicatorView.js +0 -77
- package/vscode/src/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/view.css.js +0 -6
- package/vscode/src/vs/editor/contrib/inlineProgress/browser/inlineProgressWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/linkedEditing/browser/linkedEditing.css.js +0 -6
- package/vscode/src/vs/editor/contrib/links/browser/links.css.js +0 -6
- package/vscode/src/vs/editor/contrib/message/browser/messageController.css.js +0 -6
- package/vscode/src/vs/editor/contrib/parameterHints/browser/parameterHints.css.js +0 -6
- package/vscode/src/vs/editor/contrib/peekView/browser/media/peekViewWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/placeholderText/browser/placeholderText.css.js +0 -6
- package/vscode/src/vs/editor/contrib/rename/browser/renameWidget.css.js +0 -6
- package/vscode/src/vs/editor/contrib/snippet/browser/snippetSession.css.js +0 -6
- package/vscode/src/vs/editor/contrib/stickyScroll/browser/stickyScroll.css.js +0 -6
- package/vscode/src/vs/editor/contrib/suggest/browser/media/suggest.css.js +0 -6
- package/vscode/src/vs/editor/contrib/symbolIcons/browser/symbolIcons.css.js +0 -6
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/bannerController.css.js +0 -6
- package/vscode/src/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.css.js +0 -6
- package/vscode/src/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.css.js +0 -6
- package/vscode/src/vs/editor/contrib/zoneWidget/browser/zoneWidget.css.js +0 -6
- package/vscode/src/vs/editor/editor.worker.d.ts +0 -1
- package/vscode/src/vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard.css.js +0 -6
- package/vscode/src/vs/editor/standalone/browser/quickInput/standaloneQuickInput.css.js +0 -6
- package/vscode/src/vs/platform/actionWidget/browser/actionWidget.css.js +0 -6
- package/vscode/src/vs/platform/actions/browser/menuEntryActionViewItem.css.js +0 -6
- package/vscode/src/vs/platform/opener/browser/link.css.js +0 -6
- package/vscode/src/vs/platform/quickinput/browser/media/quickInput.css.js +0 -6
- package/vscode/src/vs/platform/severityIcon/browser/media/severityIcon.css.js +0 -6
- package/vscode/src/vs/workbench/api/common/shared/tasks.d.ts +0 -114
- package/vscode/src/vs/workbench/browser/actions/media/actions.css.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.d.ts +0 -254
- package/vscode/src/vs/workbench/contrib/chat/common/chatAgents.js +0 -469
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementsService.service.d.ts +0 -7
- package/vscode/src/vs/workbench/contrib/chat/common/chatEntitlementsService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/chat/common/chatQuotasService.service.d.ts +0 -11
- package/vscode/src/vs/workbench/contrib/chat/common/chatQuotasService.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/codeEditor/browser/dictation/editorDictation.css.js +0 -6
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.service.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/notebook/browser/contrib/chatEdit/notebookSynchronizer.service.js +0 -6
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookSynchronizerService.service.d.ts +0 -8
- package/vscode/src/vs/workbench/contrib/notebook/common/notebookSynchronizerService.service.js +0 -6
- package/vscode-dts/vscode.proposed.terminalShellType.d.ts +0 -40
- /package/vscode/src/vs/workbench/contrib/notebook/browser/{contrib/chatEdit → diff/inlineDiff}/notebookOriginalCellModelFactory.service.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/notebook/browser/{contrib/chatEdit → diff/inlineDiff}/notebookOriginalCellModelFactory.service.js +0 -0
- /package/vscode/src/vs/workbench/contrib/notebook/browser/{contrib/chatEdit → diff/inlineDiff}/notebookOriginalModelRefFactory.service.d.ts +0 -0
- /package/vscode/src/vs/workbench/contrib/notebook/browser/{contrib/chatEdit → diff/inlineDiff}/notebookOriginalModelRefFactory.service.js +0 -0
|
@@ -279,14 +279,14 @@ class EditorAccessibilitySupport extends BaseEditorOption {
|
|
|
279
279
|
type: 'string',
|
|
280
280
|
enum: ['auto', 'on', 'off'],
|
|
281
281
|
enumDescriptions: [
|
|
282
|
-
( localize(
|
|
283
|
-
( localize(
|
|
284
|
-
( localize(
|
|
282
|
+
( localize(262, "Use platform APIs to detect when a Screen Reader is attached.")),
|
|
283
|
+
( localize(263, "Optimize for usage with a Screen Reader.")),
|
|
284
|
+
( localize(264, "Assume a screen reader is not attached.")),
|
|
285
285
|
],
|
|
286
286
|
default: 'auto',
|
|
287
287
|
tags: ['accessibility'],
|
|
288
288
|
description: ( localize(
|
|
289
|
-
|
|
289
|
+
265,
|
|
290
290
|
"Controls if the UI should run in a mode where it is optimized for screen readers."
|
|
291
291
|
))
|
|
292
292
|
});
|
|
@@ -316,13 +316,13 @@ class EditorComments extends BaseEditorOption {
|
|
|
316
316
|
'editor.comments.insertSpace': {
|
|
317
317
|
type: 'boolean',
|
|
318
318
|
default: defaults.insertSpace,
|
|
319
|
-
description: ( localize(
|
|
319
|
+
description: ( localize(266, "Controls whether a space character is inserted when commenting."))
|
|
320
320
|
},
|
|
321
321
|
'editor.comments.ignoreEmptyLines': {
|
|
322
322
|
type: 'boolean',
|
|
323
323
|
default: defaults.ignoreEmptyLines,
|
|
324
324
|
description: ( localize(
|
|
325
|
-
|
|
325
|
+
267,
|
|
326
326
|
'Controls if empty lines should be ignored with toggle, add or remove actions for line comments.'
|
|
327
327
|
))
|
|
328
328
|
},
|
|
@@ -416,7 +416,7 @@ class EditorClassName extends ComputedEditorOption {
|
|
|
416
416
|
class EditorEmptySelectionClipboard extends EditorBooleanOption {
|
|
417
417
|
constructor() {
|
|
418
418
|
super(EditorOption.emptySelectionClipboard, 'emptySelectionClipboard', true, { description: ( localize(
|
|
419
|
-
|
|
419
|
+
268,
|
|
420
420
|
"Controls whether copying without a selection copies the current line."
|
|
421
421
|
)) });
|
|
422
422
|
}
|
|
@@ -441,7 +441,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
441
441
|
type: 'boolean',
|
|
442
442
|
default: defaults.cursorMoveOnType,
|
|
443
443
|
description: ( localize(
|
|
444
|
-
|
|
444
|
+
269,
|
|
445
445
|
"Controls whether the cursor should jump to find matches while typing."
|
|
446
446
|
))
|
|
447
447
|
},
|
|
@@ -450,15 +450,15 @@ class EditorFind extends BaseEditorOption {
|
|
|
450
450
|
enum: ['never', 'always', 'selection'],
|
|
451
451
|
default: defaults.seedSearchStringFromSelection,
|
|
452
452
|
enumDescriptions: [
|
|
453
|
-
( localize(
|
|
453
|
+
( localize(270, 'Never seed search string from the editor selection.')),
|
|
454
454
|
( localize(
|
|
455
|
-
|
|
455
|
+
271,
|
|
456
456
|
'Always seed search string from the editor selection, including word at cursor position.'
|
|
457
457
|
)),
|
|
458
|
-
( localize(
|
|
458
|
+
( localize(272, 'Only seed search string from the editor selection.'))
|
|
459
459
|
],
|
|
460
460
|
description: ( localize(
|
|
461
|
-
|
|
461
|
+
273,
|
|
462
462
|
"Controls whether the search string in the Find Widget is seeded from the editor selection."
|
|
463
463
|
))
|
|
464
464
|
},
|
|
@@ -467,15 +467,15 @@ class EditorFind extends BaseEditorOption {
|
|
|
467
467
|
enum: ['never', 'always', 'multiline'],
|
|
468
468
|
default: defaults.autoFindInSelection,
|
|
469
469
|
enumDescriptions: [
|
|
470
|
-
( localize(
|
|
471
|
-
( localize(
|
|
470
|
+
( localize(274, 'Never turn on Find in Selection automatically (default).')),
|
|
471
|
+
( localize(275, 'Always turn on Find in Selection automatically.')),
|
|
472
472
|
( localize(
|
|
473
|
-
|
|
473
|
+
276,
|
|
474
474
|
'Turn on Find in Selection automatically when multiple lines of content are selected.'
|
|
475
475
|
))
|
|
476
476
|
],
|
|
477
477
|
description: ( localize(
|
|
478
|
-
|
|
478
|
+
277,
|
|
479
479
|
"Controls the condition for turning on Find in Selection automatically."
|
|
480
480
|
))
|
|
481
481
|
},
|
|
@@ -483,7 +483,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
483
483
|
type: 'boolean',
|
|
484
484
|
default: defaults.globalFindClipboard,
|
|
485
485
|
description: ( localize(
|
|
486
|
-
|
|
486
|
+
278,
|
|
487
487
|
"Controls whether the Find Widget should read or modify the shared find clipboard on macOS."
|
|
488
488
|
)),
|
|
489
489
|
included: isMacintosh
|
|
@@ -492,7 +492,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
492
492
|
type: 'boolean',
|
|
493
493
|
default: defaults.addExtraSpaceOnTop,
|
|
494
494
|
description: ( localize(
|
|
495
|
-
|
|
495
|
+
279,
|
|
496
496
|
"Controls whether the Find Widget should add extra lines on top of the editor. When true, you can scroll beyond the first line when the Find Widget is visible."
|
|
497
497
|
))
|
|
498
498
|
},
|
|
@@ -500,7 +500,7 @@ class EditorFind extends BaseEditorOption {
|
|
|
500
500
|
type: 'boolean',
|
|
501
501
|
default: defaults.loop,
|
|
502
502
|
description: ( localize(
|
|
503
|
-
|
|
503
|
+
280,
|
|
504
504
|
"Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found."
|
|
505
505
|
))
|
|
506
506
|
},
|
|
@@ -509,20 +509,20 @@ class EditorFind extends BaseEditorOption {
|
|
|
509
509
|
enum: ['never', 'workspace'],
|
|
510
510
|
default: 'workspace',
|
|
511
511
|
enumDescriptions: [
|
|
512
|
-
( localize(
|
|
513
|
-
( localize(
|
|
512
|
+
( localize(281, 'Do not store search history from the find widget.')),
|
|
513
|
+
( localize(282, 'Store search history across the active workspace')),
|
|
514
514
|
],
|
|
515
|
-
description: ( localize(
|
|
515
|
+
description: ( localize(283, "Controls how the find widget history should be stored"))
|
|
516
516
|
},
|
|
517
517
|
'editor.find.replaceHistory': {
|
|
518
518
|
type: 'string',
|
|
519
519
|
enum: ['never', 'workspace'],
|
|
520
520
|
default: 'workspace',
|
|
521
521
|
enumDescriptions: [
|
|
522
|
-
( localize(
|
|
523
|
-
( localize(
|
|
522
|
+
( localize(284, 'Do not store history from the replace widget.')),
|
|
523
|
+
( localize(285, 'Store replace history across the active workspace')),
|
|
524
524
|
],
|
|
525
|
-
description: ( localize(
|
|
525
|
+
description: ( localize(286, "Controls how the replace widget history should be stored"))
|
|
526
526
|
}
|
|
527
527
|
});
|
|
528
528
|
}
|
|
@@ -556,20 +556,20 @@ class EditorFontLigatures extends BaseEditorOption {
|
|
|
556
556
|
{
|
|
557
557
|
type: 'boolean',
|
|
558
558
|
description: ( localize(
|
|
559
|
-
|
|
559
|
+
287,
|
|
560
560
|
"Enables/Disables font ligatures ('calt' and 'liga' font features). Change this to a string for fine-grained control of the 'font-feature-settings' CSS property."
|
|
561
561
|
)),
|
|
562
562
|
},
|
|
563
563
|
{
|
|
564
564
|
type: 'string',
|
|
565
565
|
description: ( localize(
|
|
566
|
-
|
|
566
|
+
288,
|
|
567
567
|
"Explicit 'font-feature-settings' CSS property. A boolean can be passed instead if one only needs to turn on/off ligatures."
|
|
568
568
|
))
|
|
569
569
|
}
|
|
570
570
|
],
|
|
571
571
|
description: ( localize(
|
|
572
|
-
|
|
572
|
+
289,
|
|
573
573
|
"Configures font ligatures or font features. Can be either a boolean to enable/disable ligatures or a string for the value of the CSS 'font-feature-settings' property."
|
|
574
574
|
)),
|
|
575
575
|
default: false
|
|
@@ -603,20 +603,20 @@ class EditorFontVariations extends BaseEditorOption {
|
|
|
603
603
|
{
|
|
604
604
|
type: 'boolean',
|
|
605
605
|
description: ( localize(
|
|
606
|
-
|
|
606
|
+
290,
|
|
607
607
|
"Enables/Disables the translation from font-weight to font-variation-settings. Change this to a string for fine-grained control of the 'font-variation-settings' CSS property."
|
|
608
608
|
)),
|
|
609
609
|
},
|
|
610
610
|
{
|
|
611
611
|
type: 'string',
|
|
612
612
|
description: ( localize(
|
|
613
|
-
|
|
613
|
+
291,
|
|
614
614
|
"Explicit 'font-variation-settings' CSS property. A boolean can be passed instead if one only needs to translate font-weight to font-variation-settings."
|
|
615
615
|
))
|
|
616
616
|
}
|
|
617
617
|
],
|
|
618
618
|
description: ( localize(
|
|
619
|
-
|
|
619
|
+
292,
|
|
620
620
|
"Configures font variations. Can be either a boolean to enable/disable the translation from font-weight to font-variation-settings or a string for the value of the CSS 'font-variation-settings' property."
|
|
621
621
|
)),
|
|
622
622
|
default: false
|
|
@@ -668,7 +668,7 @@ class EffectiveExperimentalEditContextEnabled extends ComputedEditorOption {
|
|
|
668
668
|
}
|
|
669
669
|
compute(env, options) {
|
|
670
670
|
const editContextSupported = typeof globalThis.EditContext === 'function';
|
|
671
|
-
return editContextSupported &&
|
|
671
|
+
return editContextSupported && options.get(EditorOption.experimentalEditContextEnabled);
|
|
672
672
|
}
|
|
673
673
|
}
|
|
674
674
|
class EditorFontSize extends SimpleEditorOption {
|
|
@@ -678,7 +678,7 @@ class EditorFontSize extends SimpleEditorOption {
|
|
|
678
678
|
minimum: 6,
|
|
679
679
|
maximum: 100,
|
|
680
680
|
default: EDITOR_FONT_DEFAULTS.fontSize,
|
|
681
|
-
description: ( localize(
|
|
681
|
+
description: ( localize(293, "Controls the font size in pixels."))
|
|
682
682
|
});
|
|
683
683
|
}
|
|
684
684
|
validate(input) {
|
|
@@ -704,7 +704,7 @@ class EditorFontWeight extends BaseEditorOption {
|
|
|
704
704
|
minimum: EditorFontWeight.MINIMUM_VALUE,
|
|
705
705
|
maximum: EditorFontWeight.MAXIMUM_VALUE,
|
|
706
706
|
errorMessage: ( localize(
|
|
707
|
-
|
|
707
|
+
294,
|
|
708
708
|
"Only \"normal\" and \"bold\" keywords or numbers between 1 and 1000 are allowed."
|
|
709
709
|
))
|
|
710
710
|
},
|
|
@@ -718,7 +718,7 @@ class EditorFontWeight extends BaseEditorOption {
|
|
|
718
718
|
],
|
|
719
719
|
default: EDITOR_FONT_DEFAULTS.fontWeight,
|
|
720
720
|
description: ( localize(
|
|
721
|
-
|
|
721
|
+
295,
|
|
722
722
|
"Controls the font weight. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."
|
|
723
723
|
))
|
|
724
724
|
});
|
|
@@ -752,50 +752,50 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
752
752
|
enum: ['peek', 'gotoAndPeek', 'goto'],
|
|
753
753
|
default: defaults.multiple,
|
|
754
754
|
enumDescriptions: [
|
|
755
|
-
( localize(
|
|
756
|
-
( localize(
|
|
757
|
-
( localize(
|
|
755
|
+
( localize(296, 'Show Peek view of the results (default)')),
|
|
756
|
+
( localize(297, 'Go to the primary result and show a Peek view')),
|
|
757
|
+
( localize(298, 'Go to the primary result and enable Peek-less navigation to others'))
|
|
758
758
|
]
|
|
759
759
|
};
|
|
760
760
|
const alternativeCommandOptions = ['', 'editor.action.referenceSearch.trigger', 'editor.action.goToReferences', 'editor.action.peekImplementation', 'editor.action.goToImplementation', 'editor.action.peekTypeDefinition', 'editor.action.goToTypeDefinition', 'editor.action.peekDeclaration', 'editor.action.revealDeclaration', 'editor.action.peekDefinition', 'editor.action.revealDefinitionAside', 'editor.action.revealDefinition'];
|
|
761
761
|
super(EditorOption.gotoLocation, 'gotoLocation', defaults, {
|
|
762
762
|
'editor.gotoLocation.multiple': {
|
|
763
763
|
deprecationMessage: ( localize(
|
|
764
|
-
|
|
764
|
+
299,
|
|
765
765
|
"This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead."
|
|
766
766
|
)),
|
|
767
767
|
},
|
|
768
768
|
'editor.gotoLocation.multipleDefinitions': {
|
|
769
769
|
description: ( localize(
|
|
770
|
-
|
|
770
|
+
300,
|
|
771
771
|
"Controls the behavior the 'Go to Definition'-command when multiple target locations exist."
|
|
772
772
|
)),
|
|
773
773
|
...jsonSubset,
|
|
774
774
|
},
|
|
775
775
|
'editor.gotoLocation.multipleTypeDefinitions': {
|
|
776
776
|
description: ( localize(
|
|
777
|
-
|
|
777
|
+
301,
|
|
778
778
|
"Controls the behavior the 'Go to Type Definition'-command when multiple target locations exist."
|
|
779
779
|
)),
|
|
780
780
|
...jsonSubset,
|
|
781
781
|
},
|
|
782
782
|
'editor.gotoLocation.multipleDeclarations': {
|
|
783
783
|
description: ( localize(
|
|
784
|
-
|
|
784
|
+
302,
|
|
785
785
|
"Controls the behavior the 'Go to Declaration'-command when multiple target locations exist."
|
|
786
786
|
)),
|
|
787
787
|
...jsonSubset,
|
|
788
788
|
},
|
|
789
789
|
'editor.gotoLocation.multipleImplementations': {
|
|
790
790
|
description: ( localize(
|
|
791
|
-
|
|
791
|
+
303,
|
|
792
792
|
"Controls the behavior the 'Go to Implementations'-command when multiple target locations exist."
|
|
793
793
|
)),
|
|
794
794
|
...jsonSubset,
|
|
795
795
|
},
|
|
796
796
|
'editor.gotoLocation.multipleReferences': {
|
|
797
797
|
description: ( localize(
|
|
798
|
-
|
|
798
|
+
304,
|
|
799
799
|
"Controls the behavior the 'Go to References'-command when multiple target locations exist."
|
|
800
800
|
)),
|
|
801
801
|
...jsonSubset,
|
|
@@ -805,7 +805,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
805
805
|
default: defaults.alternativeDefinitionCommand,
|
|
806
806
|
enum: alternativeCommandOptions,
|
|
807
807
|
description: ( localize(
|
|
808
|
-
|
|
808
|
+
305,
|
|
809
809
|
"Alternative command id that is being executed when the result of 'Go to Definition' is the current location."
|
|
810
810
|
))
|
|
811
811
|
},
|
|
@@ -814,7 +814,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
814
814
|
default: defaults.alternativeTypeDefinitionCommand,
|
|
815
815
|
enum: alternativeCommandOptions,
|
|
816
816
|
description: ( localize(
|
|
817
|
-
|
|
817
|
+
306,
|
|
818
818
|
"Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location."
|
|
819
819
|
))
|
|
820
820
|
},
|
|
@@ -823,7 +823,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
823
823
|
default: defaults.alternativeDeclarationCommand,
|
|
824
824
|
enum: alternativeCommandOptions,
|
|
825
825
|
description: ( localize(
|
|
826
|
-
|
|
826
|
+
307,
|
|
827
827
|
"Alternative command id that is being executed when the result of 'Go to Declaration' is the current location."
|
|
828
828
|
))
|
|
829
829
|
},
|
|
@@ -832,7 +832,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
832
832
|
default: defaults.alternativeImplementationCommand,
|
|
833
833
|
enum: alternativeCommandOptions,
|
|
834
834
|
description: ( localize(
|
|
835
|
-
|
|
835
|
+
308,
|
|
836
836
|
"Alternative command id that is being executed when the result of 'Go to Implementation' is the current location."
|
|
837
837
|
))
|
|
838
838
|
},
|
|
@@ -841,7 +841,7 @@ class EditorGoToLocation extends BaseEditorOption {
|
|
|
841
841
|
default: defaults.alternativeReferenceCommand,
|
|
842
842
|
enum: alternativeCommandOptions,
|
|
843
843
|
description: ( localize(
|
|
844
|
-
|
|
844
|
+
309,
|
|
845
845
|
"Alternative command id that is being executed when the result of 'Go to Reference' is the current location."
|
|
846
846
|
))
|
|
847
847
|
},
|
|
@@ -882,20 +882,20 @@ class EditorHover extends BaseEditorOption {
|
|
|
882
882
|
'editor.hover.enabled': {
|
|
883
883
|
type: 'boolean',
|
|
884
884
|
default: defaults.enabled,
|
|
885
|
-
description: ( localize(
|
|
885
|
+
description: ( localize(310, "Controls whether the hover is shown."))
|
|
886
886
|
},
|
|
887
887
|
'editor.hover.delay': {
|
|
888
888
|
type: 'number',
|
|
889
889
|
default: defaults.delay,
|
|
890
890
|
minimum: 0,
|
|
891
891
|
maximum: 10000,
|
|
892
|
-
description: ( localize(
|
|
892
|
+
description: ( localize(311, "Controls the delay in milliseconds after which the hover is shown."))
|
|
893
893
|
},
|
|
894
894
|
'editor.hover.sticky': {
|
|
895
895
|
type: 'boolean',
|
|
896
896
|
default: defaults.sticky,
|
|
897
897
|
description: ( localize(
|
|
898
|
-
|
|
898
|
+
312,
|
|
899
899
|
"Controls whether the hover should remain visible when mouse is moved over it."
|
|
900
900
|
))
|
|
901
901
|
},
|
|
@@ -904,14 +904,14 @@ class EditorHover extends BaseEditorOption {
|
|
|
904
904
|
minimum: 0,
|
|
905
905
|
default: defaults.hidingDelay,
|
|
906
906
|
description: ( localize(
|
|
907
|
-
|
|
907
|
+
313,
|
|
908
908
|
"Controls the delay in milliseconds after which the hover is hidden. Requires `editor.hover.sticky` to be enabled."
|
|
909
909
|
))
|
|
910
910
|
},
|
|
911
911
|
'editor.hover.above': {
|
|
912
912
|
type: 'boolean',
|
|
913
913
|
default: defaults.above,
|
|
914
|
-
description: ( localize(
|
|
914
|
+
description: ( localize(314, "Prefer showing hovers above the line, if there's space."))
|
|
915
915
|
},
|
|
916
916
|
});
|
|
917
917
|
}
|
|
@@ -1221,11 +1221,11 @@ class WrappingStrategy extends BaseEditorOption {
|
|
|
1221
1221
|
'editor.wrappingStrategy': {
|
|
1222
1222
|
enumDescriptions: [
|
|
1223
1223
|
( localize(
|
|
1224
|
-
|
|
1224
|
+
315,
|
|
1225
1225
|
"Assumes that all characters are of the same width. This is a fast algorithm that works correctly for monospace fonts and certain scripts (like Latin characters) where glyphs are of equal width."
|
|
1226
1226
|
)),
|
|
1227
1227
|
( localize(
|
|
1228
|
-
|
|
1228
|
+
316,
|
|
1229
1229
|
"Delegates wrapping points computation to the browser. This is a slow algorithm, that might cause freezes for large files, but it works correctly in all cases."
|
|
1230
1230
|
))
|
|
1231
1231
|
],
|
|
@@ -1233,7 +1233,7 @@ class WrappingStrategy extends BaseEditorOption {
|
|
|
1233
1233
|
enum: ['simple', 'advanced'],
|
|
1234
1234
|
default: 'simple',
|
|
1235
1235
|
description: ( localize(
|
|
1236
|
-
|
|
1236
|
+
317,
|
|
1237
1237
|
"Controls the algorithm that computes wrapping points. Note that when in accessibility mode, advanced will be used for the best experience."
|
|
1238
1238
|
))
|
|
1239
1239
|
}
|
|
@@ -1265,14 +1265,14 @@ class EditorLightbulb extends BaseEditorOption {
|
|
|
1265
1265
|
enum: [ShowLightbulbIconMode.Off, ShowLightbulbIconMode.OnCode, ShowLightbulbIconMode.On],
|
|
1266
1266
|
default: defaults.enabled,
|
|
1267
1267
|
enumDescriptions: [
|
|
1268
|
-
( localize(
|
|
1269
|
-
( localize(
|
|
1268
|
+
( localize(318, 'Disable the code action menu.')),
|
|
1269
|
+
( localize(319, 'Show the code action menu when the cursor is on lines with code.')),
|
|
1270
1270
|
( localize(
|
|
1271
|
-
|
|
1271
|
+
320,
|
|
1272
1272
|
'Show the code action menu when the cursor is on lines with code or on empty lines.'
|
|
1273
1273
|
)),
|
|
1274
1274
|
],
|
|
1275
|
-
description: ( localize(
|
|
1275
|
+
description: ( localize(321, "Enables the Code Action lightbulb in the editor."))
|
|
1276
1276
|
}
|
|
1277
1277
|
});
|
|
1278
1278
|
}
|
|
@@ -1294,7 +1294,7 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1294
1294
|
type: 'boolean',
|
|
1295
1295
|
default: defaults.enabled,
|
|
1296
1296
|
description: ( localize(
|
|
1297
|
-
|
|
1297
|
+
322,
|
|
1298
1298
|
"Shows the nested current scopes during the scroll at the top of the editor."
|
|
1299
1299
|
))
|
|
1300
1300
|
},
|
|
@@ -1303,14 +1303,14 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1303
1303
|
default: defaults.maxLineCount,
|
|
1304
1304
|
minimum: 1,
|
|
1305
1305
|
maximum: 20,
|
|
1306
|
-
description: ( localize(
|
|
1306
|
+
description: ( localize(323, "Defines the maximum number of sticky lines to show."))
|
|
1307
1307
|
},
|
|
1308
1308
|
'editor.stickyScroll.defaultModel': {
|
|
1309
1309
|
type: 'string',
|
|
1310
1310
|
enum: ['outlineModel', 'foldingProviderModel', 'indentationModel'],
|
|
1311
1311
|
default: defaults.defaultModel,
|
|
1312
1312
|
description: ( localize(
|
|
1313
|
-
|
|
1313
|
+
324,
|
|
1314
1314
|
"Defines the model to use for determining which lines to stick. If the outline model does not exist, it will fall back on the folding provider model which falls back on the indentation model. This order is respected in all three cases."
|
|
1315
1315
|
))
|
|
1316
1316
|
},
|
|
@@ -1318,7 +1318,7 @@ class EditorStickyScroll extends BaseEditorOption {
|
|
|
1318
1318
|
type: 'boolean',
|
|
1319
1319
|
default: defaults.scrollWithEditor,
|
|
1320
1320
|
description: ( localize(
|
|
1321
|
-
|
|
1321
|
+
325,
|
|
1322
1322
|
"Enable scrolling of Sticky Scroll with the editor's horizontal scrollbar."
|
|
1323
1323
|
))
|
|
1324
1324
|
},
|
|
@@ -1344,28 +1344,28 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1344
1344
|
'editor.inlayHints.enabled': {
|
|
1345
1345
|
type: 'string',
|
|
1346
1346
|
default: defaults.enabled,
|
|
1347
|
-
description: ( localize(
|
|
1347
|
+
description: ( localize(326, "Enables the inlay hints in the editor.")),
|
|
1348
1348
|
enum: ['on', 'onUnlessPressed', 'offUnlessPressed', 'off'],
|
|
1349
1349
|
markdownEnumDescriptions: [
|
|
1350
|
-
( localize(
|
|
1350
|
+
( localize(327, "Inlay hints are enabled")),
|
|
1351
1351
|
( localize(
|
|
1352
|
-
|
|
1352
|
+
328,
|
|
1353
1353
|
"Inlay hints are showing by default and hide when holding {0}",
|
|
1354
1354
|
isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
|
|
1355
1355
|
)),
|
|
1356
1356
|
( localize(
|
|
1357
|
-
|
|
1357
|
+
329,
|
|
1358
1358
|
"Inlay hints are hidden by default and show when holding {0}",
|
|
1359
1359
|
isMacintosh ? `Ctrl+Option` : `Ctrl+Alt`
|
|
1360
1360
|
)),
|
|
1361
|
-
( localize(
|
|
1361
|
+
( localize(330, "Inlay hints are disabled")),
|
|
1362
1362
|
],
|
|
1363
1363
|
},
|
|
1364
1364
|
'editor.inlayHints.fontSize': {
|
|
1365
1365
|
type: 'number',
|
|
1366
1366
|
default: defaults.fontSize,
|
|
1367
1367
|
markdownDescription: ( localize(
|
|
1368
|
-
|
|
1368
|
+
331,
|
|
1369
1369
|
"Controls font size of inlay hints in the editor. As default the {0} is used when the configured value is less than {1} or greater than the editor font size.",
|
|
1370
1370
|
'`#editor.fontSize#`',
|
|
1371
1371
|
'`5`'
|
|
@@ -1375,7 +1375,7 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1375
1375
|
type: 'string',
|
|
1376
1376
|
default: defaults.fontFamily,
|
|
1377
1377
|
markdownDescription: ( localize(
|
|
1378
|
-
|
|
1378
|
+
332,
|
|
1379
1379
|
"Controls font family of inlay hints in the editor. When set to empty, the {0} is used.",
|
|
1380
1380
|
'`#editor.fontFamily#`'
|
|
1381
1381
|
))
|
|
@@ -1383,13 +1383,13 @@ class EditorInlayHints extends BaseEditorOption {
|
|
|
1383
1383
|
'editor.inlayHints.padding': {
|
|
1384
1384
|
type: 'boolean',
|
|
1385
1385
|
default: defaults.padding,
|
|
1386
|
-
description: ( localize(
|
|
1386
|
+
description: ( localize(333, "Enables the padding around the inlay hints in the editor."))
|
|
1387
1387
|
},
|
|
1388
1388
|
'editor.inlayHints.maximumLength': {
|
|
1389
1389
|
type: 'number',
|
|
1390
1390
|
default: defaults.maximumLength,
|
|
1391
1391
|
markdownDescription: ( localize(
|
|
1392
|
-
|
|
1392
|
+
334,
|
|
1393
1393
|
"Maximum overall length of inlay hints, for a single line, before they get truncated by the editor. Set to `0` to never truncate"
|
|
1394
1394
|
))
|
|
1395
1395
|
}
|
|
@@ -1437,7 +1437,7 @@ class EditorLineDecorationsWidth extends BaseEditorOption {
|
|
|
1437
1437
|
class EditorLineHeight extends EditorFloatOption {
|
|
1438
1438
|
constructor() {
|
|
1439
1439
|
super(EditorOption.lineHeight, 'lineHeight', EDITOR_FONT_DEFAULTS.lineHeight, x => EditorFloatOption.clamp(x, 0, 150), { markdownDescription: ( localize(
|
|
1440
|
-
|
|
1440
|
+
335,
|
|
1441
1441
|
"Controls the line height. \n - Use 0 to automatically compute the line height from the font size.\n - Values between 0 and 8 will be used as a multiplier with the font size.\n - Values greater than or equal to 8 will be used as effective values."
|
|
1442
1442
|
)) });
|
|
1443
1443
|
}
|
|
@@ -1466,44 +1466,44 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1466
1466
|
'editor.minimap.enabled': {
|
|
1467
1467
|
type: 'boolean',
|
|
1468
1468
|
default: defaults.enabled,
|
|
1469
|
-
description: ( localize(
|
|
1469
|
+
description: ( localize(336, "Controls whether the minimap is shown."))
|
|
1470
1470
|
},
|
|
1471
1471
|
'editor.minimap.autohide': {
|
|
1472
1472
|
type: 'boolean',
|
|
1473
1473
|
default: defaults.autohide,
|
|
1474
|
-
description: ( localize(
|
|
1474
|
+
description: ( localize(337, "Controls whether the minimap is hidden automatically."))
|
|
1475
1475
|
},
|
|
1476
1476
|
'editor.minimap.size': {
|
|
1477
1477
|
type: 'string',
|
|
1478
1478
|
enum: ['proportional', 'fill', 'fit'],
|
|
1479
1479
|
enumDescriptions: [
|
|
1480
1480
|
( localize(
|
|
1481
|
-
|
|
1481
|
+
338,
|
|
1482
1482
|
"The minimap has the same size as the editor contents (and might scroll)."
|
|
1483
1483
|
)),
|
|
1484
1484
|
( localize(
|
|
1485
|
-
|
|
1485
|
+
339,
|
|
1486
1486
|
"The minimap will stretch or shrink as necessary to fill the height of the editor (no scrolling)."
|
|
1487
1487
|
)),
|
|
1488
1488
|
( localize(
|
|
1489
|
-
|
|
1489
|
+
340,
|
|
1490
1490
|
"The minimap will shrink as necessary to never be larger than the editor (no scrolling)."
|
|
1491
1491
|
)),
|
|
1492
1492
|
],
|
|
1493
1493
|
default: defaults.size,
|
|
1494
|
-
description: ( localize(
|
|
1494
|
+
description: ( localize(341, "Controls the size of the minimap."))
|
|
1495
1495
|
},
|
|
1496
1496
|
'editor.minimap.side': {
|
|
1497
1497
|
type: 'string',
|
|
1498
1498
|
enum: ['left', 'right'],
|
|
1499
1499
|
default: defaults.side,
|
|
1500
|
-
description: ( localize(
|
|
1500
|
+
description: ( localize(342, "Controls the side where to render the minimap."))
|
|
1501
1501
|
},
|
|
1502
1502
|
'editor.minimap.showSlider': {
|
|
1503
1503
|
type: 'string',
|
|
1504
1504
|
enum: ['always', 'mouseover'],
|
|
1505
1505
|
default: defaults.showSlider,
|
|
1506
|
-
description: ( localize(
|
|
1506
|
+
description: ( localize(343, "Controls when the minimap slider is shown."))
|
|
1507
1507
|
},
|
|
1508
1508
|
'editor.minimap.scale': {
|
|
1509
1509
|
type: 'number',
|
|
@@ -1511,18 +1511,18 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1511
1511
|
minimum: 1,
|
|
1512
1512
|
maximum: 3,
|
|
1513
1513
|
enum: [1, 2, 3],
|
|
1514
|
-
description: ( localize(
|
|
1514
|
+
description: ( localize(344, "Scale of content drawn in the minimap: 1, 2 or 3."))
|
|
1515
1515
|
},
|
|
1516
1516
|
'editor.minimap.renderCharacters': {
|
|
1517
1517
|
type: 'boolean',
|
|
1518
1518
|
default: defaults.renderCharacters,
|
|
1519
|
-
description: ( localize(
|
|
1519
|
+
description: ( localize(345, "Render the actual characters on a line as opposed to color blocks."))
|
|
1520
1520
|
},
|
|
1521
1521
|
'editor.minimap.maxColumn': {
|
|
1522
1522
|
type: 'number',
|
|
1523
1523
|
default: defaults.maxColumn,
|
|
1524
1524
|
description: ( localize(
|
|
1525
|
-
|
|
1525
|
+
346,
|
|
1526
1526
|
"Limit the width of the minimap to render at most a certain number of columns."
|
|
1527
1527
|
))
|
|
1528
1528
|
},
|
|
@@ -1530,7 +1530,7 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1530
1530
|
type: 'boolean',
|
|
1531
1531
|
default: defaults.showRegionSectionHeaders,
|
|
1532
1532
|
description: ( localize(
|
|
1533
|
-
|
|
1533
|
+
347,
|
|
1534
1534
|
"Controls whether named regions are shown as section headers in the minimap."
|
|
1535
1535
|
))
|
|
1536
1536
|
},
|
|
@@ -1538,7 +1538,7 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1538
1538
|
type: 'boolean',
|
|
1539
1539
|
default: defaults.showMarkSectionHeaders,
|
|
1540
1540
|
description: ( localize(
|
|
1541
|
-
|
|
1541
|
+
348,
|
|
1542
1542
|
"Controls whether MARK: comments are shown as section headers in the minimap."
|
|
1543
1543
|
))
|
|
1544
1544
|
},
|
|
@@ -1546,20 +1546,20 @@ class EditorMinimap extends BaseEditorOption {
|
|
|
1546
1546
|
type: 'string',
|
|
1547
1547
|
default: defaults.markSectionHeaderRegex,
|
|
1548
1548
|
description: ( localize(
|
|
1549
|
-
|
|
1549
|
+
349,
|
|
1550
1550
|
"Defines the regular expression used to find section headers in comments. The regex must contain a named match group `label` (written as `(?<label>.+)`) that encapsulates the section header, otherwise it will not work. Optionally you can include another match group named `separator`. Use \\n in the pattern to match multi-line headers."
|
|
1551
1551
|
)),
|
|
1552
1552
|
},
|
|
1553
1553
|
'editor.minimap.sectionHeaderFontSize': {
|
|
1554
1554
|
type: 'number',
|
|
1555
1555
|
default: defaults.sectionHeaderFontSize,
|
|
1556
|
-
description: ( localize(
|
|
1556
|
+
description: ( localize(350, "Controls the font size of section headers in the minimap."))
|
|
1557
1557
|
},
|
|
1558
1558
|
'editor.minimap.sectionHeaderLetterSpacing': {
|
|
1559
1559
|
type: 'number',
|
|
1560
1560
|
default: defaults.sectionHeaderLetterSpacing,
|
|
1561
1561
|
description: ( localize(
|
|
1562
|
-
|
|
1562
|
+
351,
|
|
1563
1563
|
"Controls the amount of space (in pixels) between characters of section header. This helps the readability of the header in small font sizes."
|
|
1564
1564
|
))
|
|
1565
1565
|
}
|
|
@@ -1611,7 +1611,7 @@ class EditorPadding extends BaseEditorOption {
|
|
|
1611
1611
|
minimum: 0,
|
|
1612
1612
|
maximum: 1000,
|
|
1613
1613
|
description: ( localize(
|
|
1614
|
-
|
|
1614
|
+
352,
|
|
1615
1615
|
"Controls the amount of space between the top edge of the editor and the first line."
|
|
1616
1616
|
))
|
|
1617
1617
|
},
|
|
@@ -1621,7 +1621,7 @@ class EditorPadding extends BaseEditorOption {
|
|
|
1621
1621
|
minimum: 0,
|
|
1622
1622
|
maximum: 1000,
|
|
1623
1623
|
description: ( localize(
|
|
1624
|
-
|
|
1624
|
+
353,
|
|
1625
1625
|
"Controls the amount of space between the bottom edge of the editor and the last line."
|
|
1626
1626
|
))
|
|
1627
1627
|
}
|
|
@@ -1649,7 +1649,7 @@ class EditorParameterHints extends BaseEditorOption {
|
|
|
1649
1649
|
type: 'boolean',
|
|
1650
1650
|
default: defaults.enabled,
|
|
1651
1651
|
description: ( localize(
|
|
1652
|
-
|
|
1652
|
+
354,
|
|
1653
1653
|
"Enables a pop-up that shows parameter documentation and type information as you type."
|
|
1654
1654
|
))
|
|
1655
1655
|
},
|
|
@@ -1657,7 +1657,7 @@ class EditorParameterHints extends BaseEditorOption {
|
|
|
1657
1657
|
type: 'boolean',
|
|
1658
1658
|
default: defaults.cycle,
|
|
1659
1659
|
description: ( localize(
|
|
1660
|
-
|
|
1660
|
+
355,
|
|
1661
1661
|
"Controls whether the parameter hints menu cycles or closes when reaching the end of the list."
|
|
1662
1662
|
))
|
|
1663
1663
|
},
|
|
@@ -1708,7 +1708,7 @@ class EditorQuickSuggestions extends BaseEditorOption {
|
|
|
1708
1708
|
{
|
|
1709
1709
|
type: 'string',
|
|
1710
1710
|
enum: ['on', 'inline', 'off'],
|
|
1711
|
-
enumDescriptions: [( localize(
|
|
1711
|
+
enumDescriptions: [( localize(356, "Quick suggestions show inside the suggest widget")), ( localize(357, "Quick suggestions show as ghost text")), ( localize(358, "Quick suggestions are disabled"))]
|
|
1712
1712
|
}
|
|
1713
1713
|
];
|
|
1714
1714
|
super(EditorOption.quickSuggestions, 'quickSuggestions', defaults, {
|
|
@@ -1718,22 +1718,22 @@ class EditorQuickSuggestions extends BaseEditorOption {
|
|
|
1718
1718
|
strings: {
|
|
1719
1719
|
anyOf: types,
|
|
1720
1720
|
default: defaults.strings,
|
|
1721
|
-
description: ( localize(
|
|
1721
|
+
description: ( localize(359, "Enable quick suggestions inside strings."))
|
|
1722
1722
|
},
|
|
1723
1723
|
comments: {
|
|
1724
1724
|
anyOf: types,
|
|
1725
1725
|
default: defaults.comments,
|
|
1726
|
-
description: ( localize(
|
|
1726
|
+
description: ( localize(360, "Enable quick suggestions inside comments."))
|
|
1727
1727
|
},
|
|
1728
1728
|
other: {
|
|
1729
1729
|
anyOf: types,
|
|
1730
1730
|
default: defaults.other,
|
|
1731
|
-
description: ( localize(
|
|
1731
|
+
description: ( localize(361, "Enable quick suggestions outside of strings and comments."))
|
|
1732
1732
|
},
|
|
1733
1733
|
},
|
|
1734
1734
|
default: defaults,
|
|
1735
1735
|
markdownDescription: ( localize(
|
|
1736
|
-
|
|
1736
|
+
362,
|
|
1737
1737
|
"Controls whether suggestions should automatically show up while typing. This can be controlled for typing in comments, strings, and other code. Quick suggestion can be configured to show as ghost text or with the suggest widget. Also be aware of the {0}-setting which controls if suggestions are triggered by special characters.",
|
|
1738
1738
|
'`#editor.suggestOnTriggerCharacters#`'
|
|
1739
1739
|
))
|
|
@@ -1792,13 +1792,13 @@ class EditorRenderLineNumbersOption extends BaseEditorOption {
|
|
|
1792
1792
|
type: 'string',
|
|
1793
1793
|
enum: ['off', 'on', 'relative', 'interval'],
|
|
1794
1794
|
enumDescriptions: [
|
|
1795
|
-
( localize(
|
|
1796
|
-
( localize(
|
|
1797
|
-
( localize(
|
|
1798
|
-
( localize(
|
|
1795
|
+
( localize(363, "Line numbers are not rendered.")),
|
|
1796
|
+
( localize(364, "Line numbers are rendered as absolute number.")),
|
|
1797
|
+
( localize(365, "Line numbers are rendered as distance in lines to cursor position.")),
|
|
1798
|
+
( localize(366, "Line numbers are rendered every 10 lines."))
|
|
1799
1799
|
],
|
|
1800
1800
|
default: 'on',
|
|
1801
|
-
description: ( localize(
|
|
1801
|
+
description: ( localize(367, "Controls the display of line numbers."))
|
|
1802
1802
|
});
|
|
1803
1803
|
}
|
|
1804
1804
|
validate(lineNumbers) {
|
|
@@ -1839,7 +1839,7 @@ class EditorRulers extends BaseEditorOption {
|
|
|
1839
1839
|
constructor() {
|
|
1840
1840
|
const defaults = [];
|
|
1841
1841
|
const columnSchema = { type: 'number', description: ( localize(
|
|
1842
|
-
|
|
1842
|
+
368,
|
|
1843
1843
|
"Number of monospace characters at which this editor ruler will render."
|
|
1844
1844
|
)) };
|
|
1845
1845
|
super(EditorOption.rulers, 'rulers', defaults, {
|
|
@@ -1855,7 +1855,7 @@ class EditorRulers extends BaseEditorOption {
|
|
|
1855
1855
|
column: columnSchema,
|
|
1856
1856
|
color: {
|
|
1857
1857
|
type: 'string',
|
|
1858
|
-
description: ( localize(
|
|
1858
|
+
description: ( localize(369, "Color of this editor ruler.")),
|
|
1859
1859
|
format: 'color-hex'
|
|
1860
1860
|
}
|
|
1861
1861
|
}
|
|
@@ -1864,7 +1864,7 @@ class EditorRulers extends BaseEditorOption {
|
|
|
1864
1864
|
},
|
|
1865
1865
|
default: defaults,
|
|
1866
1866
|
description: ( localize(
|
|
1867
|
-
|
|
1867
|
+
370,
|
|
1868
1868
|
"Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty."
|
|
1869
1869
|
))
|
|
1870
1870
|
});
|
|
@@ -1938,44 +1938,44 @@ class EditorScrollbar extends BaseEditorOption {
|
|
|
1938
1938
|
type: 'string',
|
|
1939
1939
|
enum: ['auto', 'visible', 'hidden'],
|
|
1940
1940
|
enumDescriptions: [
|
|
1941
|
-
( localize(
|
|
1942
|
-
( localize(
|
|
1943
|
-
( localize(
|
|
1941
|
+
( localize(371, "The vertical scrollbar will be visible only when necessary.")),
|
|
1942
|
+
( localize(372, "The vertical scrollbar will always be visible.")),
|
|
1943
|
+
( localize(373, "The vertical scrollbar will always be hidden.")),
|
|
1944
1944
|
],
|
|
1945
1945
|
default: 'auto',
|
|
1946
|
-
description: ( localize(
|
|
1946
|
+
description: ( localize(374, "Controls the visibility of the vertical scrollbar."))
|
|
1947
1947
|
},
|
|
1948
1948
|
'editor.scrollbar.horizontal': {
|
|
1949
1949
|
type: 'string',
|
|
1950
1950
|
enum: ['auto', 'visible', 'hidden'],
|
|
1951
1951
|
enumDescriptions: [
|
|
1952
|
-
( localize(
|
|
1953
|
-
( localize(
|
|
1954
|
-
( localize(
|
|
1952
|
+
( localize(375, "The horizontal scrollbar will be visible only when necessary.")),
|
|
1953
|
+
( localize(376, "The horizontal scrollbar will always be visible.")),
|
|
1954
|
+
( localize(377, "The horizontal scrollbar will always be hidden.")),
|
|
1955
1955
|
],
|
|
1956
1956
|
default: 'auto',
|
|
1957
|
-
description: ( localize(
|
|
1957
|
+
description: ( localize(378, "Controls the visibility of the horizontal scrollbar."))
|
|
1958
1958
|
},
|
|
1959
1959
|
'editor.scrollbar.verticalScrollbarSize': {
|
|
1960
1960
|
type: 'number',
|
|
1961
1961
|
default: defaults.verticalScrollbarSize,
|
|
1962
|
-
description: ( localize(
|
|
1962
|
+
description: ( localize(379, "The width of the vertical scrollbar."))
|
|
1963
1963
|
},
|
|
1964
1964
|
'editor.scrollbar.horizontalScrollbarSize': {
|
|
1965
1965
|
type: 'number',
|
|
1966
1966
|
default: defaults.horizontalScrollbarSize,
|
|
1967
|
-
description: ( localize(
|
|
1967
|
+
description: ( localize(380, "The height of the horizontal scrollbar."))
|
|
1968
1968
|
},
|
|
1969
1969
|
'editor.scrollbar.scrollByPage': {
|
|
1970
1970
|
type: 'boolean',
|
|
1971
1971
|
default: defaults.scrollByPage,
|
|
1972
|
-
description: ( localize(
|
|
1972
|
+
description: ( localize(381, "Controls whether clicks scroll by page or jump to click position."))
|
|
1973
1973
|
},
|
|
1974
1974
|
'editor.scrollbar.ignoreHorizontalScrollbarInContentHeight': {
|
|
1975
1975
|
type: 'boolean',
|
|
1976
1976
|
default: defaults.ignoreHorizontalScrollbarInContentHeight,
|
|
1977
1977
|
description: ( localize(
|
|
1978
|
-
|
|
1978
|
+
382,
|
|
1979
1979
|
"When set, the horizontal scrollbar will not increase the size of the editor's content."
|
|
1980
1980
|
))
|
|
1981
1981
|
}
|
|
@@ -2034,7 +2034,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2034
2034
|
enum: [true, false, inUntrustedWorkspace],
|
|
2035
2035
|
default: defaults.nonBasicASCII,
|
|
2036
2036
|
description: ( localize(
|
|
2037
|
-
|
|
2037
|
+
383,
|
|
2038
2038
|
"Controls whether all non-basic ASCII characters are highlighted. Only characters between U+0020 and U+007E, tab, line-feed and carriage-return are considered basic ASCII."
|
|
2039
2039
|
))
|
|
2040
2040
|
},
|
|
@@ -2043,7 +2043,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2043
2043
|
type: 'boolean',
|
|
2044
2044
|
default: defaults.invisibleCharacters,
|
|
2045
2045
|
description: ( localize(
|
|
2046
|
-
|
|
2046
|
+
384,
|
|
2047
2047
|
"Controls whether characters that just reserve space or have no width at all are highlighted."
|
|
2048
2048
|
))
|
|
2049
2049
|
},
|
|
@@ -2052,7 +2052,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2052
2052
|
type: 'boolean',
|
|
2053
2053
|
default: defaults.ambiguousCharacters,
|
|
2054
2054
|
description: ( localize(
|
|
2055
|
-
|
|
2055
|
+
385,
|
|
2056
2056
|
"Controls whether characters are highlighted that can be confused with basic ASCII characters, except those that are common in the current user locale."
|
|
2057
2057
|
))
|
|
2058
2058
|
},
|
|
@@ -2062,7 +2062,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2062
2062
|
enum: [true, false, inUntrustedWorkspace],
|
|
2063
2063
|
default: defaults.includeComments,
|
|
2064
2064
|
description: ( localize(
|
|
2065
|
-
|
|
2065
|
+
386,
|
|
2066
2066
|
"Controls whether characters in comments should also be subject to Unicode highlighting."
|
|
2067
2067
|
))
|
|
2068
2068
|
},
|
|
@@ -2072,7 +2072,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2072
2072
|
enum: [true, false, inUntrustedWorkspace],
|
|
2073
2073
|
default: defaults.includeStrings,
|
|
2074
2074
|
description: ( localize(
|
|
2075
|
-
|
|
2075
|
+
387,
|
|
2076
2076
|
"Controls whether characters in strings should also be subject to Unicode highlighting."
|
|
2077
2077
|
))
|
|
2078
2078
|
},
|
|
@@ -2080,7 +2080,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2080
2080
|
restricted: true,
|
|
2081
2081
|
type: 'object',
|
|
2082
2082
|
default: defaults.allowedCharacters,
|
|
2083
|
-
description: ( localize(
|
|
2083
|
+
description: ( localize(388, "Defines allowed characters that are not being highlighted.")),
|
|
2084
2084
|
additionalProperties: {
|
|
2085
2085
|
type: 'boolean'
|
|
2086
2086
|
}
|
|
@@ -2093,7 +2093,7 @@ class UnicodeHighlight extends BaseEditorOption {
|
|
|
2093
2093
|
},
|
|
2094
2094
|
default: defaults.allowedLocales,
|
|
2095
2095
|
description: ( localize(
|
|
2096
|
-
|
|
2096
|
+
389,
|
|
2097
2097
|
"Unicode characters that are common in allowed locales are not being highlighted."
|
|
2098
2098
|
))
|
|
2099
2099
|
},
|
|
@@ -2156,15 +2156,12 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2156
2156
|
suppressSuggestions: false,
|
|
2157
2157
|
keepOnBlur: false,
|
|
2158
2158
|
fontFamily: 'default',
|
|
2159
|
-
syntaxHighlightingEnabled:
|
|
2159
|
+
syntaxHighlightingEnabled: true,
|
|
2160
2160
|
edits: {
|
|
2161
2161
|
enabled: true,
|
|
2162
2162
|
showCollapsed: false,
|
|
2163
|
-
useMixedLinesDiff: 'forStableInsertions',
|
|
2164
|
-
useInterleavedLinesDiff: 'never',
|
|
2165
2163
|
renderSideBySide: 'auto',
|
|
2166
|
-
|
|
2167
|
-
codeShifting: true,
|
|
2164
|
+
allowCodeShifting: 'always',
|
|
2168
2165
|
useMultiLineGhostText: true
|
|
2169
2166
|
},
|
|
2170
2167
|
};
|
|
@@ -2173,7 +2170,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2173
2170
|
type: 'boolean',
|
|
2174
2171
|
default: defaults.enabled,
|
|
2175
2172
|
description: ( localize(
|
|
2176
|
-
|
|
2173
|
+
390,
|
|
2177
2174
|
"Controls whether to automatically show inline suggestions in the editor."
|
|
2178
2175
|
))
|
|
2179
2176
|
},
|
|
@@ -2183,22 +2180,22 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2183
2180
|
enum: ['always', 'onHover', 'never'],
|
|
2184
2181
|
enumDescriptions: [
|
|
2185
2182
|
( localize(
|
|
2186
|
-
|
|
2183
|
+
391,
|
|
2187
2184
|
"Show the inline suggestion toolbar whenever an inline suggestion is shown."
|
|
2188
2185
|
)),
|
|
2189
2186
|
( localize(
|
|
2190
|
-
|
|
2187
|
+
392,
|
|
2191
2188
|
"Show the inline suggestion toolbar when hovering over an inline suggestion."
|
|
2192
2189
|
)),
|
|
2193
|
-
( localize(
|
|
2190
|
+
( localize(393, "Never show the inline suggestion toolbar.")),
|
|
2194
2191
|
],
|
|
2195
|
-
description: ( localize(
|
|
2192
|
+
description: ( localize(394, "Controls when to show the inline suggestion toolbar.")),
|
|
2196
2193
|
},
|
|
2197
2194
|
'editor.inlineSuggest.syntaxHighlightingEnabled': {
|
|
2198
2195
|
type: 'boolean',
|
|
2199
2196
|
default: defaults.syntaxHighlightingEnabled,
|
|
2200
2197
|
description: ( localize(
|
|
2201
|
-
|
|
2198
|
+
395,
|
|
2202
2199
|
"Controls whether to show syntax highlighting for inline suggestions in the editor."
|
|
2203
2200
|
)),
|
|
2204
2201
|
},
|
|
@@ -2206,36 +2203,37 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2206
2203
|
type: 'boolean',
|
|
2207
2204
|
default: defaults.suppressSuggestions,
|
|
2208
2205
|
description: ( localize(
|
|
2209
|
-
|
|
2206
|
+
396,
|
|
2210
2207
|
"Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available."
|
|
2211
2208
|
))
|
|
2212
2209
|
},
|
|
2213
2210
|
'editor.inlineSuggest.fontFamily': {
|
|
2214
2211
|
type: 'string',
|
|
2215
2212
|
default: defaults.fontFamily,
|
|
2216
|
-
description: ( localize(
|
|
2213
|
+
description: ( localize(397, "Controls the font family of the inline suggestions."))
|
|
2217
2214
|
},
|
|
2218
|
-
'editor.inlineSuggest.edits.
|
|
2219
|
-
type: '
|
|
2220
|
-
default: defaults.edits.
|
|
2215
|
+
'editor.inlineSuggest.edits.allowCodeShifting': {
|
|
2216
|
+
type: 'string',
|
|
2217
|
+
default: defaults.edits.allowCodeShifting,
|
|
2221
2218
|
description: ( localize(
|
|
2222
|
-
|
|
2219
|
+
398,
|
|
2223
2220
|
"Controls whether showing a suggestion will shift the code to make space for the suggestion inline."
|
|
2224
2221
|
)),
|
|
2222
|
+
enum: ['always', 'horizontal', 'never'],
|
|
2225
2223
|
tags: ['nextEditSuggestions']
|
|
2226
2224
|
},
|
|
2227
2225
|
'editor.inlineSuggest.edits.renderSideBySide': {
|
|
2228
2226
|
type: 'string',
|
|
2229
2227
|
default: defaults.edits.renderSideBySide,
|
|
2230
|
-
description: ( localize(
|
|
2228
|
+
description: ( localize(399, "Controls whether larger suggestions can be shown side by side.")),
|
|
2231
2229
|
enum: ['auto', 'never'],
|
|
2232
2230
|
enumDescriptions: [
|
|
2233
2231
|
( localize(
|
|
2234
|
-
|
|
2232
|
+
400,
|
|
2235
2233
|
"Larger suggestions will show side by side if there is enough space, otherwise they will be shown below."
|
|
2236
2234
|
)),
|
|
2237
2235
|
( localize(
|
|
2238
|
-
|
|
2236
|
+
401,
|
|
2239
2237
|
"Larger suggestions are never shown side by side and will always be shown below."
|
|
2240
2238
|
)),
|
|
2241
2239
|
],
|
|
@@ -2245,7 +2243,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2245
2243
|
type: 'boolean',
|
|
2246
2244
|
default: defaults.edits.showCollapsed,
|
|
2247
2245
|
description: ( localize(
|
|
2248
|
-
|
|
2246
|
+
402,
|
|
2249
2247
|
"Controls whether the suggestion will show as collapsed until jumping to it."
|
|
2250
2248
|
)),
|
|
2251
2249
|
tags: ['nextEditSuggestions']
|
|
@@ -2268,11 +2266,8 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2268
2266
|
edits: {
|
|
2269
2267
|
enabled: boolean(input.edits?.enabled, this.defaultValue.edits.enabled),
|
|
2270
2268
|
showCollapsed: boolean(input.edits?.showCollapsed, this.defaultValue.edits.showCollapsed),
|
|
2271
|
-
|
|
2272
|
-
codeShifting: boolean(input.edits?.codeShifting, this.defaultValue.edits.codeShifting),
|
|
2269
|
+
allowCodeShifting: stringSet(input.edits?.allowCodeShifting, this.defaultValue.edits.allowCodeShifting, ['always', 'horizontal', 'never']),
|
|
2273
2270
|
renderSideBySide: stringSet(input.edits?.renderSideBySide, this.defaultValue.edits.renderSideBySide, ['never', 'auto']),
|
|
2274
|
-
useInterleavedLinesDiff: stringSet(input.edits?.useInterleavedLinesDiff, this.defaultValue.edits.useInterleavedLinesDiff, ['never', 'always', 'afterJump']),
|
|
2275
|
-
useGutterIndicator: boolean(input.edits?.useGutterIndicator, this.defaultValue.edits.useGutterIndicator),
|
|
2276
2271
|
useMultiLineGhostText: boolean(input.edits?.useMultiLineGhostText, this.defaultValue.edits.useMultiLineGhostText),
|
|
2277
2272
|
},
|
|
2278
2273
|
};
|
|
@@ -2289,7 +2284,7 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2289
2284
|
type: 'boolean',
|
|
2290
2285
|
default: defaults.enabled,
|
|
2291
2286
|
markdownDescription: ( localize(
|
|
2292
|
-
|
|
2287
|
+
403,
|
|
2293
2288
|
"Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.",
|
|
2294
2289
|
'`#workbench.colorCustomizations#`'
|
|
2295
2290
|
))
|
|
@@ -2298,7 +2293,7 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2298
2293
|
type: 'boolean',
|
|
2299
2294
|
default: defaults.independentColorPoolPerBracketType,
|
|
2300
2295
|
description: ( localize(
|
|
2301
|
-
|
|
2296
|
+
404,
|
|
2302
2297
|
"Controls whether each bracket type has its own independent color pool."
|
|
2303
2298
|
))
|
|
2304
2299
|
},
|
|
@@ -2329,54 +2324,54 @@ class GuideOptions extends BaseEditorOption {
|
|
|
2329
2324
|
type: ['boolean', 'string'],
|
|
2330
2325
|
enum: [true, 'active', false],
|
|
2331
2326
|
enumDescriptions: [
|
|
2332
|
-
( localize(
|
|
2333
|
-
( localize(
|
|
2334
|
-
( localize(
|
|
2327
|
+
( localize(405, "Enables bracket pair guides.")),
|
|
2328
|
+
( localize(406, "Enables bracket pair guides only for the active bracket pair.")),
|
|
2329
|
+
( localize(407, "Disables bracket pair guides.")),
|
|
2335
2330
|
],
|
|
2336
2331
|
default: defaults.bracketPairs,
|
|
2337
|
-
description: ( localize(
|
|
2332
|
+
description: ( localize(408, "Controls whether bracket pair guides are enabled or not."))
|
|
2338
2333
|
},
|
|
2339
2334
|
'editor.guides.bracketPairsHorizontal': {
|
|
2340
2335
|
type: ['boolean', 'string'],
|
|
2341
2336
|
enum: [true, 'active', false],
|
|
2342
2337
|
enumDescriptions: [
|
|
2343
2338
|
( localize(
|
|
2344
|
-
|
|
2339
|
+
409,
|
|
2345
2340
|
"Enables horizontal guides as addition to vertical bracket pair guides."
|
|
2346
2341
|
)),
|
|
2347
|
-
( localize(
|
|
2348
|
-
( localize(
|
|
2342
|
+
( localize(410, "Enables horizontal guides only for the active bracket pair.")),
|
|
2343
|
+
( localize(411, "Disables horizontal bracket pair guides.")),
|
|
2349
2344
|
],
|
|
2350
2345
|
default: defaults.bracketPairsHorizontal,
|
|
2351
|
-
description: ( localize(
|
|
2346
|
+
description: ( localize(412, "Controls whether horizontal bracket pair guides are enabled or not."))
|
|
2352
2347
|
},
|
|
2353
2348
|
'editor.guides.highlightActiveBracketPair': {
|
|
2354
2349
|
type: 'boolean',
|
|
2355
2350
|
default: defaults.highlightActiveBracketPair,
|
|
2356
2351
|
description: ( localize(
|
|
2357
|
-
|
|
2352
|
+
413,
|
|
2358
2353
|
"Controls whether the editor should highlight the active bracket pair."
|
|
2359
2354
|
))
|
|
2360
2355
|
},
|
|
2361
2356
|
'editor.guides.indentation': {
|
|
2362
2357
|
type: 'boolean',
|
|
2363
2358
|
default: defaults.indentation,
|
|
2364
|
-
description: ( localize(
|
|
2359
|
+
description: ( localize(414, "Controls whether the editor should render indent guides."))
|
|
2365
2360
|
},
|
|
2366
2361
|
'editor.guides.highlightActiveIndentation': {
|
|
2367
2362
|
type: ['boolean', 'string'],
|
|
2368
2363
|
enum: [true, 'always', false],
|
|
2369
2364
|
enumDescriptions: [
|
|
2370
|
-
( localize(
|
|
2365
|
+
( localize(415, "Highlights the active indent guide.")),
|
|
2371
2366
|
( localize(
|
|
2372
|
-
|
|
2367
|
+
416,
|
|
2373
2368
|
"Highlights the active indent guide even if bracket guides are highlighted."
|
|
2374
2369
|
)),
|
|
2375
|
-
( localize(
|
|
2370
|
+
( localize(417, "Do not highlight the active indent guide.")),
|
|
2376
2371
|
],
|
|
2377
2372
|
default: defaults.highlightActiveIndentation,
|
|
2378
2373
|
description: ( localize(
|
|
2379
|
-
|
|
2374
|
+
418,
|
|
2380
2375
|
"Controls whether the editor should highlight the active indent guide."
|
|
2381
2376
|
))
|
|
2382
2377
|
}
|
|
@@ -2452,12 +2447,12 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2452
2447
|
type: 'string',
|
|
2453
2448
|
enum: ['insert', 'replace'],
|
|
2454
2449
|
enumDescriptions: [
|
|
2455
|
-
( localize(
|
|
2456
|
-
( localize(
|
|
2450
|
+
( localize(419, "Insert suggestion without overwriting text right of the cursor.")),
|
|
2451
|
+
( localize(420, "Insert suggestion and overwrite text right of the cursor.")),
|
|
2457
2452
|
],
|
|
2458
2453
|
default: defaults.insertMode,
|
|
2459
2454
|
description: ( localize(
|
|
2460
|
-
|
|
2455
|
+
421,
|
|
2461
2456
|
"Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature."
|
|
2462
2457
|
))
|
|
2463
2458
|
},
|
|
@@ -2465,7 +2460,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2465
2460
|
type: 'boolean',
|
|
2466
2461
|
default: defaults.filterGraceful,
|
|
2467
2462
|
description: ( localize(
|
|
2468
|
-
|
|
2463
|
+
422,
|
|
2469
2464
|
"Controls whether filtering and sorting suggestions accounts for small typos."
|
|
2470
2465
|
))
|
|
2471
2466
|
},
|
|
@@ -2473,7 +2468,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2473
2468
|
type: 'boolean',
|
|
2474
2469
|
default: defaults.localityBonus,
|
|
2475
2470
|
description: ( localize(
|
|
2476
|
-
|
|
2471
|
+
423,
|
|
2477
2472
|
"Controls whether sorting favors words that appear close to the cursor."
|
|
2478
2473
|
))
|
|
2479
2474
|
},
|
|
@@ -2481,7 +2476,7 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2481
2476
|
type: 'boolean',
|
|
2482
2477
|
default: defaults.shareSuggestSelections,
|
|
2483
2478
|
markdownDescription: ( localize(
|
|
2484
|
-
|
|
2479
|
+
424,
|
|
2485
2480
|
"Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`)."
|
|
2486
2481
|
))
|
|
2487
2482
|
},
|
|
@@ -2490,22 +2485,22 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2490
2485
|
enum: ['always', 'never', 'whenTriggerCharacter', 'whenQuickSuggestion'],
|
|
2491
2486
|
enumDescriptions: [
|
|
2492
2487
|
( localize(
|
|
2493
|
-
|
|
2488
|
+
425,
|
|
2494
2489
|
"Always select a suggestion when automatically triggering IntelliSense."
|
|
2495
2490
|
)),
|
|
2496
2491
|
( localize(
|
|
2497
|
-
|
|
2492
|
+
426,
|
|
2498
2493
|
"Never select a suggestion when automatically triggering IntelliSense."
|
|
2499
2494
|
)),
|
|
2500
2495
|
( localize(
|
|
2501
|
-
|
|
2496
|
+
427,
|
|
2502
2497
|
"Select a suggestion only when triggering IntelliSense from a trigger character."
|
|
2503
2498
|
)),
|
|
2504
|
-
( localize(
|
|
2499
|
+
( localize(428, "Select a suggestion only when triggering IntelliSense as you type.")),
|
|
2505
2500
|
],
|
|
2506
2501
|
default: defaults.selectionMode,
|
|
2507
2502
|
markdownDescription: ( localize(
|
|
2508
|
-
|
|
2503
|
+
429,
|
|
2509
2504
|
"Controls whether a suggestion is selected when the widget shows. Note that this only applies to automatically triggered suggestions ({0} and {1}) and that a suggestion is always selected when explicitly invoked, e.g via `Ctrl+Space`.",
|
|
2510
2505
|
'`#editor.quickSuggestions#`',
|
|
2511
2506
|
'`#editor.suggestOnTriggerCharacters#`'
|
|
@@ -2514,197 +2509,197 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2514
2509
|
'editor.suggest.snippetsPreventQuickSuggestions': {
|
|
2515
2510
|
type: 'boolean',
|
|
2516
2511
|
default: defaults.snippetsPreventQuickSuggestions,
|
|
2517
|
-
description: ( localize(
|
|
2512
|
+
description: ( localize(430, "Controls whether an active snippet prevents quick suggestions."))
|
|
2518
2513
|
},
|
|
2519
2514
|
'editor.suggest.showIcons': {
|
|
2520
2515
|
type: 'boolean',
|
|
2521
2516
|
default: defaults.showIcons,
|
|
2522
|
-
description: ( localize(
|
|
2517
|
+
description: ( localize(431, "Controls whether to show or hide icons in suggestions."))
|
|
2523
2518
|
},
|
|
2524
2519
|
'editor.suggest.showStatusBar': {
|
|
2525
2520
|
type: 'boolean',
|
|
2526
2521
|
default: defaults.showStatusBar,
|
|
2527
2522
|
description: ( localize(
|
|
2528
|
-
|
|
2523
|
+
432,
|
|
2529
2524
|
"Controls the visibility of the status bar at the bottom of the suggest widget."
|
|
2530
2525
|
))
|
|
2531
2526
|
},
|
|
2532
2527
|
'editor.suggest.preview': {
|
|
2533
2528
|
type: 'boolean',
|
|
2534
2529
|
default: defaults.preview,
|
|
2535
|
-
description: ( localize(
|
|
2530
|
+
description: ( localize(433, "Controls whether to preview the suggestion outcome in the editor."))
|
|
2536
2531
|
},
|
|
2537
2532
|
'editor.suggest.showInlineDetails': {
|
|
2538
2533
|
type: 'boolean',
|
|
2539
2534
|
default: defaults.showInlineDetails,
|
|
2540
2535
|
description: ( localize(
|
|
2541
|
-
|
|
2536
|
+
434,
|
|
2542
2537
|
"Controls whether suggest details show inline with the label or only in the details widget."
|
|
2543
2538
|
))
|
|
2544
2539
|
},
|
|
2545
2540
|
'editor.suggest.maxVisibleSuggestions': {
|
|
2546
2541
|
type: 'number',
|
|
2547
|
-
deprecationMessage: ( localize(
|
|
2542
|
+
deprecationMessage: ( localize(435, "This setting is deprecated. The suggest widget can now be resized.")),
|
|
2548
2543
|
},
|
|
2549
2544
|
'editor.suggest.filteredTypes': {
|
|
2550
2545
|
type: 'object',
|
|
2551
2546
|
deprecationMessage: ( localize(
|
|
2552
|
-
|
|
2547
|
+
436,
|
|
2553
2548
|
"This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead."
|
|
2554
2549
|
))
|
|
2555
2550
|
},
|
|
2556
2551
|
'editor.suggest.showMethods': {
|
|
2557
2552
|
type: 'boolean',
|
|
2558
2553
|
default: true,
|
|
2559
|
-
markdownDescription: ( localize(
|
|
2554
|
+
markdownDescription: ( localize(437, "When enabled IntelliSense shows `method`-suggestions."))
|
|
2560
2555
|
},
|
|
2561
2556
|
'editor.suggest.showFunctions': {
|
|
2562
2557
|
type: 'boolean',
|
|
2563
2558
|
default: true,
|
|
2564
|
-
markdownDescription: ( localize(
|
|
2559
|
+
markdownDescription: ( localize(438, "When enabled IntelliSense shows `function`-suggestions."))
|
|
2565
2560
|
},
|
|
2566
2561
|
'editor.suggest.showConstructors': {
|
|
2567
2562
|
type: 'boolean',
|
|
2568
2563
|
default: true,
|
|
2569
|
-
markdownDescription: ( localize(
|
|
2564
|
+
markdownDescription: ( localize(439, "When enabled IntelliSense shows `constructor`-suggestions."))
|
|
2570
2565
|
},
|
|
2571
2566
|
'editor.suggest.showDeprecated': {
|
|
2572
2567
|
type: 'boolean',
|
|
2573
2568
|
default: true,
|
|
2574
|
-
markdownDescription: ( localize(
|
|
2569
|
+
markdownDescription: ( localize(440, "When enabled IntelliSense shows `deprecated`-suggestions."))
|
|
2575
2570
|
},
|
|
2576
2571
|
'editor.suggest.matchOnWordStartOnly': {
|
|
2577
2572
|
type: 'boolean',
|
|
2578
2573
|
default: true,
|
|
2579
2574
|
markdownDescription: ( localize(
|
|
2580
|
-
|
|
2575
|
+
441,
|
|
2581
2576
|
"When enabled IntelliSense filtering requires that the first character matches on a word start. For example, `c` on `Console` or `WebContext` but _not_ on `description`. When disabled IntelliSense will show more results but still sorts them by match quality."
|
|
2582
2577
|
))
|
|
2583
2578
|
},
|
|
2584
2579
|
'editor.suggest.showFields': {
|
|
2585
2580
|
type: 'boolean',
|
|
2586
2581
|
default: true,
|
|
2587
|
-
markdownDescription: ( localize(
|
|
2582
|
+
markdownDescription: ( localize(442, "When enabled IntelliSense shows `field`-suggestions."))
|
|
2588
2583
|
},
|
|
2589
2584
|
'editor.suggest.showVariables': {
|
|
2590
2585
|
type: 'boolean',
|
|
2591
2586
|
default: true,
|
|
2592
|
-
markdownDescription: ( localize(
|
|
2587
|
+
markdownDescription: ( localize(443, "When enabled IntelliSense shows `variable`-suggestions."))
|
|
2593
2588
|
},
|
|
2594
2589
|
'editor.suggest.showClasses': {
|
|
2595
2590
|
type: 'boolean',
|
|
2596
2591
|
default: true,
|
|
2597
|
-
markdownDescription: ( localize(
|
|
2592
|
+
markdownDescription: ( localize(444, "When enabled IntelliSense shows `class`-suggestions."))
|
|
2598
2593
|
},
|
|
2599
2594
|
'editor.suggest.showStructs': {
|
|
2600
2595
|
type: 'boolean',
|
|
2601
2596
|
default: true,
|
|
2602
|
-
markdownDescription: ( localize(
|
|
2597
|
+
markdownDescription: ( localize(445, "When enabled IntelliSense shows `struct`-suggestions."))
|
|
2603
2598
|
},
|
|
2604
2599
|
'editor.suggest.showInterfaces': {
|
|
2605
2600
|
type: 'boolean',
|
|
2606
2601
|
default: true,
|
|
2607
|
-
markdownDescription: ( localize(
|
|
2602
|
+
markdownDescription: ( localize(446, "When enabled IntelliSense shows `interface`-suggestions."))
|
|
2608
2603
|
},
|
|
2609
2604
|
'editor.suggest.showModules': {
|
|
2610
2605
|
type: 'boolean',
|
|
2611
2606
|
default: true,
|
|
2612
|
-
markdownDescription: ( localize(
|
|
2607
|
+
markdownDescription: ( localize(447, "When enabled IntelliSense shows `module`-suggestions."))
|
|
2613
2608
|
},
|
|
2614
2609
|
'editor.suggest.showProperties': {
|
|
2615
2610
|
type: 'boolean',
|
|
2616
2611
|
default: true,
|
|
2617
|
-
markdownDescription: ( localize(
|
|
2612
|
+
markdownDescription: ( localize(448, "When enabled IntelliSense shows `property`-suggestions."))
|
|
2618
2613
|
},
|
|
2619
2614
|
'editor.suggest.showEvents': {
|
|
2620
2615
|
type: 'boolean',
|
|
2621
2616
|
default: true,
|
|
2622
|
-
markdownDescription: ( localize(
|
|
2617
|
+
markdownDescription: ( localize(449, "When enabled IntelliSense shows `event`-suggestions."))
|
|
2623
2618
|
},
|
|
2624
2619
|
'editor.suggest.showOperators': {
|
|
2625
2620
|
type: 'boolean',
|
|
2626
2621
|
default: true,
|
|
2627
|
-
markdownDescription: ( localize(
|
|
2622
|
+
markdownDescription: ( localize(450, "When enabled IntelliSense shows `operator`-suggestions."))
|
|
2628
2623
|
},
|
|
2629
2624
|
'editor.suggest.showUnits': {
|
|
2630
2625
|
type: 'boolean',
|
|
2631
2626
|
default: true,
|
|
2632
|
-
markdownDescription: ( localize(
|
|
2627
|
+
markdownDescription: ( localize(451, "When enabled IntelliSense shows `unit`-suggestions."))
|
|
2633
2628
|
},
|
|
2634
2629
|
'editor.suggest.showValues': {
|
|
2635
2630
|
type: 'boolean',
|
|
2636
2631
|
default: true,
|
|
2637
|
-
markdownDescription: ( localize(
|
|
2632
|
+
markdownDescription: ( localize(452, "When enabled IntelliSense shows `value`-suggestions."))
|
|
2638
2633
|
},
|
|
2639
2634
|
'editor.suggest.showConstants': {
|
|
2640
2635
|
type: 'boolean',
|
|
2641
2636
|
default: true,
|
|
2642
|
-
markdownDescription: ( localize(
|
|
2637
|
+
markdownDescription: ( localize(453, "When enabled IntelliSense shows `constant`-suggestions."))
|
|
2643
2638
|
},
|
|
2644
2639
|
'editor.suggest.showEnums': {
|
|
2645
2640
|
type: 'boolean',
|
|
2646
2641
|
default: true,
|
|
2647
|
-
markdownDescription: ( localize(
|
|
2642
|
+
markdownDescription: ( localize(454, "When enabled IntelliSense shows `enum`-suggestions."))
|
|
2648
2643
|
},
|
|
2649
2644
|
'editor.suggest.showEnumMembers': {
|
|
2650
2645
|
type: 'boolean',
|
|
2651
2646
|
default: true,
|
|
2652
|
-
markdownDescription: ( localize(
|
|
2647
|
+
markdownDescription: ( localize(455, "When enabled IntelliSense shows `enumMember`-suggestions."))
|
|
2653
2648
|
},
|
|
2654
2649
|
'editor.suggest.showKeywords': {
|
|
2655
2650
|
type: 'boolean',
|
|
2656
2651
|
default: true,
|
|
2657
|
-
markdownDescription: ( localize(
|
|
2652
|
+
markdownDescription: ( localize(456, "When enabled IntelliSense shows `keyword`-suggestions."))
|
|
2658
2653
|
},
|
|
2659
2654
|
'editor.suggest.showWords': {
|
|
2660
2655
|
type: 'boolean',
|
|
2661
2656
|
default: true,
|
|
2662
|
-
markdownDescription: ( localize(
|
|
2657
|
+
markdownDescription: ( localize(457, "When enabled IntelliSense shows `text`-suggestions."))
|
|
2663
2658
|
},
|
|
2664
2659
|
'editor.suggest.showColors': {
|
|
2665
2660
|
type: 'boolean',
|
|
2666
2661
|
default: true,
|
|
2667
|
-
markdownDescription: ( localize(
|
|
2662
|
+
markdownDescription: ( localize(458, "When enabled IntelliSense shows `color`-suggestions."))
|
|
2668
2663
|
},
|
|
2669
2664
|
'editor.suggest.showFiles': {
|
|
2670
2665
|
type: 'boolean',
|
|
2671
2666
|
default: true,
|
|
2672
|
-
markdownDescription: ( localize(
|
|
2667
|
+
markdownDescription: ( localize(459, "When enabled IntelliSense shows `file`-suggestions."))
|
|
2673
2668
|
},
|
|
2674
2669
|
'editor.suggest.showReferences': {
|
|
2675
2670
|
type: 'boolean',
|
|
2676
2671
|
default: true,
|
|
2677
|
-
markdownDescription: ( localize(
|
|
2672
|
+
markdownDescription: ( localize(460, "When enabled IntelliSense shows `reference`-suggestions."))
|
|
2678
2673
|
},
|
|
2679
2674
|
'editor.suggest.showCustomcolors': {
|
|
2680
2675
|
type: 'boolean',
|
|
2681
2676
|
default: true,
|
|
2682
|
-
markdownDescription: ( localize(
|
|
2677
|
+
markdownDescription: ( localize(461, "When enabled IntelliSense shows `customcolor`-suggestions."))
|
|
2683
2678
|
},
|
|
2684
2679
|
'editor.suggest.showFolders': {
|
|
2685
2680
|
type: 'boolean',
|
|
2686
2681
|
default: true,
|
|
2687
|
-
markdownDescription: ( localize(
|
|
2682
|
+
markdownDescription: ( localize(462, "When enabled IntelliSense shows `folder`-suggestions."))
|
|
2688
2683
|
},
|
|
2689
2684
|
'editor.suggest.showTypeParameters': {
|
|
2690
2685
|
type: 'boolean',
|
|
2691
2686
|
default: true,
|
|
2692
|
-
markdownDescription: ( localize(
|
|
2687
|
+
markdownDescription: ( localize(463, "When enabled IntelliSense shows `typeParameter`-suggestions."))
|
|
2693
2688
|
},
|
|
2694
2689
|
'editor.suggest.showSnippets': {
|
|
2695
2690
|
type: 'boolean',
|
|
2696
2691
|
default: true,
|
|
2697
|
-
markdownDescription: ( localize(
|
|
2692
|
+
markdownDescription: ( localize(464, "When enabled IntelliSense shows `snippet`-suggestions."))
|
|
2698
2693
|
},
|
|
2699
2694
|
'editor.suggest.showUsers': {
|
|
2700
2695
|
type: 'boolean',
|
|
2701
2696
|
default: true,
|
|
2702
|
-
markdownDescription: ( localize(
|
|
2697
|
+
markdownDescription: ( localize(465, "When enabled IntelliSense shows `user`-suggestions."))
|
|
2703
2698
|
},
|
|
2704
2699
|
'editor.suggest.showIssues': {
|
|
2705
2700
|
type: 'boolean',
|
|
2706
2701
|
default: true,
|
|
2707
|
-
markdownDescription: ( localize(
|
|
2702
|
+
markdownDescription: ( localize(466, "When enabled IntelliSense shows `issues`-suggestions."))
|
|
2708
2703
|
}
|
|
2709
2704
|
});
|
|
2710
2705
|
}
|
|
@@ -2764,13 +2759,13 @@ class SmartSelect extends BaseEditorOption {
|
|
|
2764
2759
|
selectSubwords: true,
|
|
2765
2760
|
}, {
|
|
2766
2761
|
'editor.smartSelect.selectLeadingAndTrailingWhitespace': {
|
|
2767
|
-
description: ( localize(
|
|
2762
|
+
description: ( localize(467, "Whether leading and trailing whitespace should always be selected.")),
|
|
2768
2763
|
default: true,
|
|
2769
2764
|
type: 'boolean'
|
|
2770
2765
|
},
|
|
2771
2766
|
'editor.smartSelect.selectSubwords': {
|
|
2772
2767
|
description: ( localize(
|
|
2773
|
-
|
|
2768
|
+
468,
|
|
2774
2769
|
"Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."
|
|
2775
2770
|
)),
|
|
2776
2771
|
default: true,
|
|
@@ -2795,13 +2790,13 @@ class WordSegmenterLocales extends BaseEditorOption {
|
|
|
2795
2790
|
anyOf: [
|
|
2796
2791
|
{
|
|
2797
2792
|
description: ( localize(
|
|
2798
|
-
|
|
2793
|
+
469,
|
|
2799
2794
|
"Locales to be used for word segmentation when doing word related navigations or operations. Specify the BCP 47 language tag of the word you wish to recognize (e.g., ja, zh-CN, zh-Hant-TW, etc.)."
|
|
2800
2795
|
)),
|
|
2801
2796
|
type: 'string',
|
|
2802
2797
|
}, {
|
|
2803
2798
|
description: ( localize(
|
|
2804
|
-
|
|
2799
|
+
469,
|
|
2805
2800
|
"Locales to be used for word segmentation when doing word related navigations or operations. Specify the BCP 47 language tag of the word you wish to recognize (e.g., ja, zh-CN, zh-Hant-TW, etc.)."
|
|
2806
2801
|
)),
|
|
2807
2802
|
type: 'array',
|
|
@@ -2848,12 +2843,12 @@ class WrappingIndentOption extends BaseEditorOption {
|
|
|
2848
2843
|
type: 'string',
|
|
2849
2844
|
enum: ['none', 'same', 'indent', 'deepIndent'],
|
|
2850
2845
|
enumDescriptions: [
|
|
2851
|
-
( localize(
|
|
2852
|
-
( localize(
|
|
2853
|
-
( localize(
|
|
2854
|
-
( localize(
|
|
2846
|
+
( localize(470, "No indentation. Wrapped lines begin at column 1.")),
|
|
2847
|
+
( localize(471, "Wrapped lines get the same indentation as the parent.")),
|
|
2848
|
+
( localize(472, "Wrapped lines get +1 indentation toward the parent.")),
|
|
2849
|
+
( localize(473, "Wrapped lines get +2 indentation toward the parent.")),
|
|
2855
2850
|
],
|
|
2856
|
-
description: ( localize(
|
|
2851
|
+
description: ( localize(474, "Controls the indentation of wrapped lines.")),
|
|
2857
2852
|
default: 'same'
|
|
2858
2853
|
}
|
|
2859
2854
|
});
|
|
@@ -2897,14 +2892,14 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
2897
2892
|
type: 'boolean',
|
|
2898
2893
|
default: defaults.enabled,
|
|
2899
2894
|
markdownDescription: ( localize(
|
|
2900
|
-
|
|
2895
|
+
475,
|
|
2901
2896
|
"Controls whether you can drag and drop a file into a text editor by holding down the `Shift` key (instead of opening the file in an editor)."
|
|
2902
2897
|
)),
|
|
2903
2898
|
},
|
|
2904
2899
|
'editor.dropIntoEditor.showDropSelector': {
|
|
2905
2900
|
type: 'string',
|
|
2906
2901
|
markdownDescription: ( localize(
|
|
2907
|
-
|
|
2902
|
+
476,
|
|
2908
2903
|
"Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped."
|
|
2909
2904
|
)),
|
|
2910
2905
|
enum: [
|
|
@@ -2913,11 +2908,11 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
2913
2908
|
],
|
|
2914
2909
|
enumDescriptions: [
|
|
2915
2910
|
( localize(
|
|
2916
|
-
|
|
2911
|
+
477,
|
|
2917
2912
|
"Show the drop selector widget after a file is dropped into the editor."
|
|
2918
2913
|
)),
|
|
2919
2914
|
( localize(
|
|
2920
|
-
|
|
2915
|
+
478,
|
|
2921
2916
|
"Never show the drop selector widget. Instead the default drop provider is always used."
|
|
2922
2917
|
)),
|
|
2923
2918
|
],
|
|
@@ -2943,12 +2938,12 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
2943
2938
|
'editor.pasteAs.enabled': {
|
|
2944
2939
|
type: 'boolean',
|
|
2945
2940
|
default: defaults.enabled,
|
|
2946
|
-
markdownDescription: ( localize(
|
|
2941
|
+
markdownDescription: ( localize(479, "Controls whether you can paste content in different ways.")),
|
|
2947
2942
|
},
|
|
2948
2943
|
'editor.pasteAs.showPasteSelector': {
|
|
2949
2944
|
type: 'string',
|
|
2950
2945
|
markdownDescription: ( localize(
|
|
2951
|
-
|
|
2946
|
+
480,
|
|
2952
2947
|
"Controls if a widget is shown when pasting content in to the editor. This widget lets you control how the file is pasted."
|
|
2953
2948
|
)),
|
|
2954
2949
|
enum: [
|
|
@@ -2957,11 +2952,11 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
2957
2952
|
],
|
|
2958
2953
|
enumDescriptions: [
|
|
2959
2954
|
( localize(
|
|
2960
|
-
|
|
2955
|
+
481,
|
|
2961
2956
|
"Show the paste selector widget after content is pasted into the editor."
|
|
2962
2957
|
)),
|
|
2963
2958
|
( localize(
|
|
2964
|
-
|
|
2959
|
+
482,
|
|
2965
2960
|
"Never show the paste selector widget. Instead the default pasting behavior is always used."
|
|
2966
2961
|
)),
|
|
2967
2962
|
],
|
|
@@ -3161,7 +3156,7 @@ const EditorOptions = {
|
|
|
3161
3156
|
'acceptSuggestionOnCommitCharacter',
|
|
3162
3157
|
true,
|
|
3163
3158
|
{ markdownDescription: ( localize(
|
|
3164
|
-
|
|
3159
|
+
483,
|
|
3165
3160
|
"Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character."
|
|
3166
3161
|
)) }
|
|
3167
3162
|
))),
|
|
@@ -3174,13 +3169,13 @@ const EditorOptions = {
|
|
|
3174
3169
|
markdownEnumDescriptions: [
|
|
3175
3170
|
'',
|
|
3176
3171
|
( localize(
|
|
3177
|
-
|
|
3172
|
+
484,
|
|
3178
3173
|
"Only accept a suggestion with `Enter` when it makes a textual change."
|
|
3179
3174
|
)),
|
|
3180
3175
|
''
|
|
3181
3176
|
],
|
|
3182
3177
|
markdownDescription: ( localize(
|
|
3183
|
-
|
|
3178
|
+
485,
|
|
3184
3179
|
"Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions."
|
|
3185
3180
|
))
|
|
3186
3181
|
}
|
|
@@ -3194,13 +3189,13 @@ const EditorOptions = {
|
|
|
3194
3189
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3195
3190
|
{
|
|
3196
3191
|
description: ( localize(
|
|
3197
|
-
|
|
3192
|
+
486,
|
|
3198
3193
|
"Controls the number of lines in the editor that can be read out by a screen reader at once. When we detect a screen reader we automatically set the default to be 500. Warning: this has a performance implication for numbers larger than the default."
|
|
3199
3194
|
)),
|
|
3200
3195
|
tags: ['accessibility']
|
|
3201
3196
|
}
|
|
3202
3197
|
))),
|
|
3203
|
-
ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, 'ariaLabel', ( localize(
|
|
3198
|
+
ariaLabel: register(( new EditorStringOption(EditorOption.ariaLabel, 'ariaLabel', ( localize(487, "Editor content"))))),
|
|
3204
3199
|
ariaRequired: register(( new EditorBooleanOption(EditorOption.ariaRequired, 'ariaRequired', false, undefined))),
|
|
3205
3200
|
screenReaderAnnounceInlineSuggestion: register(( new EditorBooleanOption(
|
|
3206
3201
|
EditorOption.screenReaderAnnounceInlineSuggestion,
|
|
@@ -3208,7 +3203,7 @@ const EditorOptions = {
|
|
|
3208
3203
|
true,
|
|
3209
3204
|
{
|
|
3210
3205
|
description: ( localize(
|
|
3211
|
-
|
|
3206
|
+
488,
|
|
3212
3207
|
"Control whether inline suggestions are announced by a screen reader."
|
|
3213
3208
|
)),
|
|
3214
3209
|
tags: ['accessibility']
|
|
@@ -3223,17 +3218,17 @@ const EditorOptions = {
|
|
|
3223
3218
|
enumDescriptions: [
|
|
3224
3219
|
'',
|
|
3225
3220
|
( localize(
|
|
3226
|
-
|
|
3221
|
+
489,
|
|
3227
3222
|
"Use language configurations to determine when to autoclose brackets."
|
|
3228
3223
|
)),
|
|
3229
3224
|
( localize(
|
|
3230
|
-
|
|
3225
|
+
490,
|
|
3231
3226
|
"Autoclose brackets only when the cursor is to the left of whitespace."
|
|
3232
3227
|
)),
|
|
3233
3228
|
'',
|
|
3234
3229
|
],
|
|
3235
3230
|
description: ( localize(
|
|
3236
|
-
|
|
3231
|
+
491,
|
|
3237
3232
|
"Controls whether the editor should automatically close brackets after the user adds an opening bracket."
|
|
3238
3233
|
))
|
|
3239
3234
|
}
|
|
@@ -3247,17 +3242,17 @@ const EditorOptions = {
|
|
|
3247
3242
|
enumDescriptions: [
|
|
3248
3243
|
'',
|
|
3249
3244
|
( localize(
|
|
3250
|
-
|
|
3245
|
+
492,
|
|
3251
3246
|
"Use language configurations to determine when to autoclose comments."
|
|
3252
3247
|
)),
|
|
3253
3248
|
( localize(
|
|
3254
|
-
|
|
3249
|
+
493,
|
|
3255
3250
|
"Autoclose comments only when the cursor is to the left of whitespace."
|
|
3256
3251
|
)),
|
|
3257
3252
|
'',
|
|
3258
3253
|
],
|
|
3259
3254
|
description: ( localize(
|
|
3260
|
-
|
|
3255
|
+
494,
|
|
3261
3256
|
"Controls whether the editor should automatically close comments after the user adds an opening comment."
|
|
3262
3257
|
))
|
|
3263
3258
|
}
|
|
@@ -3271,13 +3266,13 @@ const EditorOptions = {
|
|
|
3271
3266
|
enumDescriptions: [
|
|
3272
3267
|
'',
|
|
3273
3268
|
( localize(
|
|
3274
|
-
|
|
3269
|
+
495,
|
|
3275
3270
|
"Remove adjacent closing quotes or brackets only if they were automatically inserted."
|
|
3276
3271
|
)),
|
|
3277
3272
|
'',
|
|
3278
3273
|
],
|
|
3279
3274
|
description: ( localize(
|
|
3280
|
-
|
|
3275
|
+
496,
|
|
3281
3276
|
"Controls whether the editor should remove adjacent closing quotes or brackets when deleting."
|
|
3282
3277
|
))
|
|
3283
3278
|
}
|
|
@@ -3291,13 +3286,13 @@ const EditorOptions = {
|
|
|
3291
3286
|
enumDescriptions: [
|
|
3292
3287
|
'',
|
|
3293
3288
|
( localize(
|
|
3294
|
-
|
|
3289
|
+
497,
|
|
3295
3290
|
"Type over closing quotes or brackets only if they were automatically inserted."
|
|
3296
3291
|
)),
|
|
3297
3292
|
'',
|
|
3298
3293
|
],
|
|
3299
3294
|
description: ( localize(
|
|
3300
|
-
|
|
3295
|
+
498,
|
|
3301
3296
|
"Controls whether the editor should type over closing quotes or brackets."
|
|
3302
3297
|
))
|
|
3303
3298
|
}
|
|
@@ -3310,12 +3305,12 @@ const EditorOptions = {
|
|
|
3310
3305
|
{
|
|
3311
3306
|
enumDescriptions: [
|
|
3312
3307
|
'',
|
|
3313
|
-
( localize(
|
|
3314
|
-
( localize(
|
|
3308
|
+
( localize(499, "Use language configurations to determine when to autoclose quotes.")),
|
|
3309
|
+
( localize(500, "Autoclose quotes only when the cursor is to the left of whitespace.")),
|
|
3315
3310
|
'',
|
|
3316
3311
|
],
|
|
3317
3312
|
description: ( localize(
|
|
3318
|
-
|
|
3313
|
+
501,
|
|
3319
3314
|
"Controls whether the editor should automatically close quotes after the user adds an opening quote."
|
|
3320
3315
|
))
|
|
3321
3316
|
}
|
|
@@ -3329,23 +3324,23 @@ const EditorOptions = {
|
|
|
3329
3324
|
_autoIndentFromString,
|
|
3330
3325
|
{
|
|
3331
3326
|
enumDescriptions: [
|
|
3332
|
-
( localize(
|
|
3333
|
-
( localize(
|
|
3327
|
+
( localize(502, "The editor will not insert indentation automatically.")),
|
|
3328
|
+
( localize(503, "The editor will keep the current line's indentation.")),
|
|
3334
3329
|
( localize(
|
|
3335
|
-
|
|
3330
|
+
504,
|
|
3336
3331
|
"The editor will keep the current line's indentation and honor language defined brackets."
|
|
3337
3332
|
)),
|
|
3338
3333
|
( localize(
|
|
3339
|
-
|
|
3334
|
+
505,
|
|
3340
3335
|
"The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages."
|
|
3341
3336
|
)),
|
|
3342
3337
|
( localize(
|
|
3343
|
-
|
|
3338
|
+
506,
|
|
3344
3339
|
"The editor will keep the current line's indentation, honor language defined brackets, invoke special onEnterRules defined by languages, and honor indentationRules defined by languages."
|
|
3345
3340
|
)),
|
|
3346
3341
|
],
|
|
3347
3342
|
description: ( localize(
|
|
3348
|
-
|
|
3343
|
+
507,
|
|
3349
3344
|
"Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines."
|
|
3350
3345
|
))
|
|
3351
3346
|
}
|
|
@@ -3359,15 +3354,15 @@ const EditorOptions = {
|
|
|
3359
3354
|
{
|
|
3360
3355
|
enumDescriptions: [
|
|
3361
3356
|
( localize(
|
|
3362
|
-
|
|
3357
|
+
508,
|
|
3363
3358
|
"Use language configurations to determine when to automatically surround selections."
|
|
3364
3359
|
)),
|
|
3365
|
-
( localize(
|
|
3366
|
-
( localize(
|
|
3360
|
+
( localize(509, "Surround with quotes but not brackets.")),
|
|
3361
|
+
( localize(510, "Surround with brackets but not quotes.")),
|
|
3367
3362
|
''
|
|
3368
3363
|
],
|
|
3369
3364
|
description: ( localize(
|
|
3370
|
-
|
|
3365
|
+
511,
|
|
3371
3366
|
"Controls whether the editor should automatically surround selections when typing quotes or brackets."
|
|
3372
3367
|
))
|
|
3373
3368
|
}
|
|
@@ -3379,16 +3374,16 @@ const EditorOptions = {
|
|
|
3379
3374
|
'stickyTabStops',
|
|
3380
3375
|
false,
|
|
3381
3376
|
{ description: ( localize(
|
|
3382
|
-
|
|
3377
|
+
512,
|
|
3383
3378
|
"Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops."
|
|
3384
3379
|
)) }
|
|
3385
3380
|
))),
|
|
3386
|
-
codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, 'codeLens', true, { description: ( localize(
|
|
3381
|
+
codeLens: register(( new EditorBooleanOption(EditorOption.codeLens, 'codeLens', true, { description: ( localize(513, "Controls whether the editor shows CodeLens.")) }))),
|
|
3387
3382
|
codeLensFontFamily: register(( new EditorStringOption(
|
|
3388
3383
|
EditorOption.codeLensFontFamily,
|
|
3389
3384
|
'codeLensFontFamily',
|
|
3390
3385
|
'',
|
|
3391
|
-
{ description: ( localize(
|
|
3386
|
+
{ description: ( localize(514, "Controls the font family for CodeLens.")) }
|
|
3392
3387
|
))),
|
|
3393
3388
|
codeLensFontSize: register(( new EditorIntOption(EditorOption.codeLensFontSize, 'codeLensFontSize', 0, 0, 100, {
|
|
3394
3389
|
type: 'number',
|
|
@@ -3396,7 +3391,7 @@ const EditorOptions = {
|
|
|
3396
3391
|
minimum: 0,
|
|
3397
3392
|
maximum: 100,
|
|
3398
3393
|
markdownDescription: ( localize(
|
|
3399
|
-
|
|
3394
|
+
515,
|
|
3400
3395
|
"Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used."
|
|
3401
3396
|
))
|
|
3402
3397
|
}))),
|
|
@@ -3405,7 +3400,7 @@ const EditorOptions = {
|
|
|
3405
3400
|
'colorDecorators',
|
|
3406
3401
|
true,
|
|
3407
3402
|
{ description: ( localize(
|
|
3408
|
-
|
|
3403
|
+
516,
|
|
3409
3404
|
"Controls whether the editor should render the inline color decorators and color picker."
|
|
3410
3405
|
)) }
|
|
3411
3406
|
))),
|
|
@@ -3417,14 +3412,14 @@ const EditorOptions = {
|
|
|
3417
3412
|
{
|
|
3418
3413
|
enumDescriptions: [
|
|
3419
3414
|
( localize(
|
|
3420
|
-
|
|
3415
|
+
517,
|
|
3421
3416
|
"Make the color picker appear both on click and hover of the color decorator"
|
|
3422
3417
|
)),
|
|
3423
|
-
( localize(
|
|
3424
|
-
( localize(
|
|
3418
|
+
( localize(518, "Make the color picker appear on hover of the color decorator")),
|
|
3419
|
+
( localize(519, "Make the color picker appear on click of the color decorator"))
|
|
3425
3420
|
],
|
|
3426
3421
|
description: ( localize(
|
|
3427
|
-
|
|
3422
|
+
520,
|
|
3428
3423
|
"Controls the condition to make a color picker appear from a color decorator."
|
|
3429
3424
|
))
|
|
3430
3425
|
}
|
|
@@ -3437,7 +3432,7 @@ const EditorOptions = {
|
|
|
3437
3432
|
1000000,
|
|
3438
3433
|
{
|
|
3439
3434
|
markdownDescription: ( localize(
|
|
3440
|
-
|
|
3435
|
+
521,
|
|
3441
3436
|
"Controls the max number of color decorators that can be rendered in an editor at once."
|
|
3442
3437
|
))
|
|
3443
3438
|
}
|
|
@@ -3447,7 +3442,7 @@ const EditorOptions = {
|
|
|
3447
3442
|
'columnSelection',
|
|
3448
3443
|
false,
|
|
3449
3444
|
{ description: ( localize(
|
|
3450
|
-
|
|
3445
|
+
522,
|
|
3451
3446
|
"Enable that the selection with the mouse and keys is doing column selection."
|
|
3452
3447
|
)) }
|
|
3453
3448
|
))),
|
|
@@ -3458,7 +3453,7 @@ const EditorOptions = {
|
|
|
3458
3453
|
'copyWithSyntaxHighlighting',
|
|
3459
3454
|
true,
|
|
3460
3455
|
{ description: ( localize(
|
|
3461
|
-
|
|
3456
|
+
523,
|
|
3462
3457
|
"Controls whether syntax highlighting should be copied into the clipboard."
|
|
3463
3458
|
)) }
|
|
3464
3459
|
))),
|
|
@@ -3469,7 +3464,7 @@ const EditorOptions = {
|
|
|
3469
3464
|
'blink',
|
|
3470
3465
|
['blink', 'smooth', 'phase', 'expand', 'solid'],
|
|
3471
3466
|
cursorBlinkingStyleFromString,
|
|
3472
|
-
{ description: ( localize(
|
|
3467
|
+
{ description: ( localize(524, "Control the cursor animation style.")) }
|
|
3473
3468
|
))),
|
|
3474
3469
|
cursorSmoothCaretAnimation: register(( new EditorStringEnumOption(
|
|
3475
3470
|
EditorOption.cursorSmoothCaretAnimation,
|
|
@@ -3478,14 +3473,14 @@ const EditorOptions = {
|
|
|
3478
3473
|
['off', 'explicit', 'on'],
|
|
3479
3474
|
{
|
|
3480
3475
|
enumDescriptions: [
|
|
3481
|
-
( localize(
|
|
3476
|
+
( localize(525, "Smooth caret animation is disabled.")),
|
|
3482
3477
|
( localize(
|
|
3483
|
-
|
|
3478
|
+
526,
|
|
3484
3479
|
"Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture."
|
|
3485
3480
|
)),
|
|
3486
|
-
( localize(
|
|
3481
|
+
( localize(527, "Smooth caret animation is always enabled."))
|
|
3487
3482
|
],
|
|
3488
|
-
description: ( localize(
|
|
3483
|
+
description: ( localize(528, "Controls whether the smooth caret animation should be enabled."))
|
|
3489
3484
|
}
|
|
3490
3485
|
))),
|
|
3491
3486
|
cursorStyle: register(( new EditorEnumOption(
|
|
@@ -3495,7 +3490,7 @@ const EditorOptions = {
|
|
|
3495
3490
|
'line',
|
|
3496
3491
|
['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'],
|
|
3497
3492
|
cursorStyleFromString,
|
|
3498
|
-
{ description: ( localize(
|
|
3493
|
+
{ description: ( localize(529, "Controls the cursor style in insert input mode.")) }
|
|
3499
3494
|
))),
|
|
3500
3495
|
overtypeCursorStyle: register(( new EditorEnumOption(
|
|
3501
3496
|
EditorOption.overtypeCursorStyle,
|
|
@@ -3504,7 +3499,7 @@ const EditorOptions = {
|
|
|
3504
3499
|
'block',
|
|
3505
3500
|
['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'],
|
|
3506
3501
|
cursorStyleFromString,
|
|
3507
|
-
{ description: ( localize(
|
|
3502
|
+
{ description: ( localize(530, "Controls the cursor style in overtype input mode.")) }
|
|
3508
3503
|
))),
|
|
3509
3504
|
cursorSurroundingLines: register(( new EditorIntOption(
|
|
3510
3505
|
EditorOption.cursorSurroundingLines,
|
|
@@ -3513,7 +3508,7 @@ const EditorOptions = {
|
|
|
3513
3508
|
0,
|
|
3514
3509
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3515
3510
|
{ description: ( localize(
|
|
3516
|
-
|
|
3511
|
+
531,
|
|
3517
3512
|
"Controls the minimal number of visible leading lines (minimum 0) and trailing lines (minimum 1) surrounding the cursor. Known as 'scrollOff' or 'scrollOffset' in some other editors."
|
|
3518
3513
|
)) }
|
|
3519
3514
|
))),
|
|
@@ -3525,12 +3520,12 @@ const EditorOptions = {
|
|
|
3525
3520
|
{
|
|
3526
3521
|
enumDescriptions: [
|
|
3527
3522
|
( localize(
|
|
3528
|
-
|
|
3523
|
+
532,
|
|
3529
3524
|
"`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."
|
|
3530
3525
|
)),
|
|
3531
|
-
( localize(
|
|
3526
|
+
( localize(533, "`cursorSurroundingLines` is enforced always."))
|
|
3532
3527
|
],
|
|
3533
|
-
markdownDescription: ( localize(
|
|
3528
|
+
markdownDescription: ( localize(534, "Controls when `#editor.cursorSurroundingLines#` should be enforced."))
|
|
3534
3529
|
}
|
|
3535
3530
|
))),
|
|
3536
3531
|
cursorWidth: register(( new EditorIntOption(
|
|
@@ -3540,7 +3535,7 @@ const EditorOptions = {
|
|
|
3540
3535
|
0,
|
|
3541
3536
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3542
3537
|
{ markdownDescription: ( localize(
|
|
3543
|
-
|
|
3538
|
+
535,
|
|
3544
3539
|
"Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`."
|
|
3545
3540
|
)) }
|
|
3546
3541
|
))),
|
|
@@ -3556,7 +3551,7 @@ const EditorOptions = {
|
|
|
3556
3551
|
'dragAndDrop',
|
|
3557
3552
|
true,
|
|
3558
3553
|
{ description: ( localize(
|
|
3559
|
-
|
|
3554
|
+
536,
|
|
3560
3555
|
"Controls whether the editor should allow moving selections via drag and drop."
|
|
3561
3556
|
)) }
|
|
3562
3557
|
))),
|
|
@@ -3568,7 +3563,7 @@ const EditorOptions = {
|
|
|
3568
3563
|
product$1.quality !== 'stable',
|
|
3569
3564
|
{
|
|
3570
3565
|
description: ( localize(
|
|
3571
|
-
|
|
3566
|
+
537,
|
|
3572
3567
|
"Sets whether the new experimental edit context should be used instead of the text area."
|
|
3573
3568
|
)),
|
|
3574
3569
|
included: isChrome || isEdge || isNative
|
|
@@ -3583,11 +3578,11 @@ const EditorOptions = {
|
|
|
3583
3578
|
{
|
|
3584
3579
|
tags: ['experimental'],
|
|
3585
3580
|
enumDescriptions: [
|
|
3586
|
-
( localize(
|
|
3587
|
-
( localize(
|
|
3581
|
+
( localize(538, "Use regular DOM-based rendering.")),
|
|
3582
|
+
( localize(539, "Use GPU acceleration.")),
|
|
3588
3583
|
],
|
|
3589
3584
|
description: ( localize(
|
|
3590
|
-
|
|
3585
|
+
540,
|
|
3591
3586
|
"Controls whether to use the experimental GPU acceleration to render the editor."
|
|
3592
3587
|
))
|
|
3593
3588
|
}
|
|
@@ -3599,12 +3594,12 @@ const EditorOptions = {
|
|
|
3599
3594
|
['svg', 'font', 'off'],
|
|
3600
3595
|
{
|
|
3601
3596
|
enumDescriptions: [
|
|
3602
|
-
( localize(
|
|
3603
|
-
( localize(
|
|
3604
|
-
( localize(
|
|
3597
|
+
( localize(541, "Use a new rendering method with svgs.")),
|
|
3598
|
+
( localize(542, "Use a new rendering method with font characters.")),
|
|
3599
|
+
( localize(543, "Use the stable rendering method.")),
|
|
3605
3600
|
],
|
|
3606
3601
|
description: ( localize(
|
|
3607
|
-
|
|
3602
|
+
544,
|
|
3608
3603
|
"Controls whether whitespace is rendered with a new, experimental method."
|
|
3609
3604
|
))
|
|
3610
3605
|
}
|
|
@@ -3615,11 +3610,11 @@ const EditorOptions = {
|
|
|
3615
3610
|
'fastScrollSensitivity',
|
|
3616
3611
|
5,
|
|
3617
3612
|
x => (x <= 0 ? 5 : x),
|
|
3618
|
-
{ markdownDescription: ( localize(
|
|
3613
|
+
{ markdownDescription: ( localize(545, "Scrolling speed multiplier when pressing `Alt`.")) }
|
|
3619
3614
|
))),
|
|
3620
3615
|
find: register(( new EditorFind())),
|
|
3621
3616
|
fixedOverflowWidgets: register(( new EditorBooleanOption(EditorOption.fixedOverflowWidgets, 'fixedOverflowWidgets', false))),
|
|
3622
|
-
folding: register(( new EditorBooleanOption(EditorOption.folding, 'folding', true, { description: ( localize(
|
|
3617
|
+
folding: register(( new EditorBooleanOption(EditorOption.folding, 'folding', true, { description: ( localize(546, "Controls whether the editor has code folding enabled.")) }))),
|
|
3623
3618
|
foldingStrategy: register(( new EditorStringEnumOption(
|
|
3624
3619
|
EditorOption.foldingStrategy,
|
|
3625
3620
|
'foldingStrategy',
|
|
@@ -3628,25 +3623,25 @@ const EditorOptions = {
|
|
|
3628
3623
|
{
|
|
3629
3624
|
enumDescriptions: [
|
|
3630
3625
|
( localize(
|
|
3631
|
-
|
|
3626
|
+
547,
|
|
3632
3627
|
"Use a language-specific folding strategy if available, else the indentation-based one."
|
|
3633
3628
|
)),
|
|
3634
|
-
( localize(
|
|
3629
|
+
( localize(548, "Use the indentation-based folding strategy.")),
|
|
3635
3630
|
],
|
|
3636
|
-
description: ( localize(
|
|
3631
|
+
description: ( localize(549, "Controls the strategy for computing folding ranges."))
|
|
3637
3632
|
}
|
|
3638
3633
|
))),
|
|
3639
3634
|
foldingHighlight: register(( new EditorBooleanOption(
|
|
3640
3635
|
EditorOption.foldingHighlight,
|
|
3641
3636
|
'foldingHighlight',
|
|
3642
3637
|
true,
|
|
3643
|
-
{ description: ( localize(
|
|
3638
|
+
{ description: ( localize(550, "Controls whether the editor should highlight folded ranges.")) }
|
|
3644
3639
|
))),
|
|
3645
3640
|
foldingImportsByDefault: register(( new EditorBooleanOption(
|
|
3646
3641
|
EditorOption.foldingImportsByDefault,
|
|
3647
3642
|
'foldingImportsByDefault',
|
|
3648
3643
|
false,
|
|
3649
|
-
{ description: ( localize(
|
|
3644
|
+
{ description: ( localize(551, "Controls whether the editor automatically collapses import ranges.")) }
|
|
3650
3645
|
))),
|
|
3651
3646
|
foldingMaximumRegions: register(( new EditorIntOption(
|
|
3652
3647
|
EditorOption.foldingMaximumRegions,
|
|
@@ -3655,7 +3650,7 @@ const EditorOptions = {
|
|
|
3655
3650
|
10,
|
|
3656
3651
|
65000,
|
|
3657
3652
|
{ description: ( localize(
|
|
3658
|
-
|
|
3653
|
+
552,
|
|
3659
3654
|
"The maximum number of foldable regions. Increasing this value may result in the editor becoming less responsive when the current source has a large number of foldable regions."
|
|
3660
3655
|
)) }
|
|
3661
3656
|
))),
|
|
@@ -3664,7 +3659,7 @@ const EditorOptions = {
|
|
|
3664
3659
|
'unfoldOnClickAfterEndOfLine',
|
|
3665
3660
|
false,
|
|
3666
3661
|
{ description: ( localize(
|
|
3667
|
-
|
|
3662
|
+
553,
|
|
3668
3663
|
"Controls whether clicking on the empty content after a folded line will unfold the line."
|
|
3669
3664
|
)) }
|
|
3670
3665
|
))),
|
|
@@ -3672,7 +3667,7 @@ const EditorOptions = {
|
|
|
3672
3667
|
EditorOption.fontFamily,
|
|
3673
3668
|
'fontFamily',
|
|
3674
3669
|
EDITOR_FONT_DEFAULTS.fontFamily,
|
|
3675
|
-
{ description: ( localize(
|
|
3670
|
+
{ description: ( localize(554, "Controls the font family.")) }
|
|
3676
3671
|
))),
|
|
3677
3672
|
fontInfo: register(( new EditorFontInfo())),
|
|
3678
3673
|
fontLigatures2: register(( new EditorFontLigatures())),
|
|
@@ -3684,7 +3679,7 @@ const EditorOptions = {
|
|
|
3684
3679
|
'formatOnPaste',
|
|
3685
3680
|
false,
|
|
3686
3681
|
{ description: ( localize(
|
|
3687
|
-
|
|
3682
|
+
555,
|
|
3688
3683
|
"Controls whether the editor should automatically format the pasted content. A formatter must be available and the formatter should be able to format a range in a document."
|
|
3689
3684
|
)) }
|
|
3690
3685
|
))),
|
|
@@ -3693,7 +3688,7 @@ const EditorOptions = {
|
|
|
3693
3688
|
'formatOnType',
|
|
3694
3689
|
false,
|
|
3695
3690
|
{ description: ( localize(
|
|
3696
|
-
|
|
3691
|
+
556,
|
|
3697
3692
|
"Controls whether the editor should automatically format the line after typing."
|
|
3698
3693
|
)) }
|
|
3699
3694
|
))),
|
|
@@ -3702,7 +3697,7 @@ const EditorOptions = {
|
|
|
3702
3697
|
'glyphMargin',
|
|
3703
3698
|
true,
|
|
3704
3699
|
{ description: ( localize(
|
|
3705
|
-
|
|
3700
|
+
557,
|
|
3706
3701
|
"Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging."
|
|
3707
3702
|
)) }
|
|
3708
3703
|
))),
|
|
@@ -3711,7 +3706,7 @@ const EditorOptions = {
|
|
|
3711
3706
|
EditorOption.hideCursorInOverviewRuler,
|
|
3712
3707
|
'hideCursorInOverviewRuler',
|
|
3713
3708
|
false,
|
|
3714
|
-
{ description: ( localize(
|
|
3709
|
+
{ description: ( localize(558, "Controls whether the cursor should be hidden in the overview ruler.")) }
|
|
3715
3710
|
))),
|
|
3716
3711
|
hover: register(( new EditorHover())),
|
|
3717
3712
|
inDiffEditor: register(( new EditorBooleanOption(EditorOption.inDiffEditor, 'inDiffEditor', false))),
|
|
@@ -3720,7 +3715,7 @@ const EditorOptions = {
|
|
|
3720
3715
|
'letterSpacing',
|
|
3721
3716
|
EDITOR_FONT_DEFAULTS.letterSpacing,
|
|
3722
3717
|
x => EditorFloatOption.clamp(x, -5, 20),
|
|
3723
|
-
{ description: ( localize(
|
|
3718
|
+
{ description: ( localize(559, "Controls the letter spacing in pixels.")) }
|
|
3724
3719
|
))),
|
|
3725
3720
|
lightbulb: register(( new EditorLightbulb())),
|
|
3726
3721
|
lineDecorationsWidth: register(( new EditorLineDecorationsWidth())),
|
|
@@ -3732,12 +3727,12 @@ const EditorOptions = {
|
|
|
3732
3727
|
'linkedEditing',
|
|
3733
3728
|
false,
|
|
3734
3729
|
{ description: ( localize(
|
|
3735
|
-
|
|
3730
|
+
560,
|
|
3736
3731
|
"Controls whether the editor has linked editing enabled. Depending on the language, related symbols such as HTML tags, are updated while editing."
|
|
3737
3732
|
)) }
|
|
3738
3733
|
))),
|
|
3739
3734
|
links: register(( new EditorBooleanOption(EditorOption.links, 'links', true, { description: ( localize(
|
|
3740
|
-
|
|
3735
|
+
561,
|
|
3741
3736
|
"Controls whether the editor should detect links and make them clickable."
|
|
3742
3737
|
)) }))),
|
|
3743
3738
|
matchBrackets: register(( new EditorStringEnumOption(
|
|
@@ -3745,7 +3740,7 @@ const EditorOptions = {
|
|
|
3745
3740
|
'matchBrackets',
|
|
3746
3741
|
'always',
|
|
3747
3742
|
['always', 'near', 'never'],
|
|
3748
|
-
{ description: ( localize(
|
|
3743
|
+
{ description: ( localize(562, "Highlight matching brackets.")) }
|
|
3749
3744
|
))),
|
|
3750
3745
|
minimap: register(( new EditorMinimap())),
|
|
3751
3746
|
mouseStyle: register(( new EditorStringEnumOption(EditorOption.mouseStyle, 'mouseStyle', 'text', ['text', 'default', 'copy']))),
|
|
@@ -3755,18 +3750,18 @@ const EditorOptions = {
|
|
|
3755
3750
|
1,
|
|
3756
3751
|
x => (x === 0 ? 1 : x),
|
|
3757
3752
|
{ markdownDescription: ( localize(
|
|
3758
|
-
|
|
3753
|
+
563,
|
|
3759
3754
|
"A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events."
|
|
3760
3755
|
)) }
|
|
3761
3756
|
))),
|
|
3762
3757
|
mouseWheelZoom: register(( new EditorBooleanOption(EditorOption.mouseWheelZoom, 'mouseWheelZoom', false, {
|
|
3763
3758
|
markdownDescription: isMacintosh
|
|
3764
3759
|
? ( localize(
|
|
3765
|
-
|
|
3760
|
+
564,
|
|
3766
3761
|
"Zoom the font of the editor when using mouse wheel and holding `Cmd`."
|
|
3767
3762
|
))
|
|
3768
3763
|
: ( localize(
|
|
3769
|
-
|
|
3764
|
+
565,
|
|
3770
3765
|
"Zoom the font of the editor when using mouse wheel and holding `Ctrl`."
|
|
3771
3766
|
))
|
|
3772
3767
|
}))),
|
|
@@ -3774,7 +3769,7 @@ const EditorOptions = {
|
|
|
3774
3769
|
EditorOption.multiCursorMergeOverlapping,
|
|
3775
3770
|
'multiCursorMergeOverlapping',
|
|
3776
3771
|
true,
|
|
3777
|
-
{ description: ( localize(
|
|
3772
|
+
{ description: ( localize(566, "Merge multiple cursors when they are overlapping.")) }
|
|
3778
3773
|
))),
|
|
3779
3774
|
multiCursorModifier: register(( new EditorEnumOption(
|
|
3780
3775
|
EditorOption.multiCursorModifier,
|
|
@@ -3785,11 +3780,11 @@ const EditorOptions = {
|
|
|
3785
3780
|
_multiCursorModifierFromString,
|
|
3786
3781
|
{
|
|
3787
3782
|
markdownEnumDescriptions: [
|
|
3788
|
-
( localize(
|
|
3789
|
-
( localize(
|
|
3783
|
+
( localize(567, "Maps to `Control` on Windows and Linux and to `Command` on macOS.")),
|
|
3784
|
+
( localize(568, "Maps to `Alt` on Windows and Linux and to `Option` on macOS."))
|
|
3790
3785
|
],
|
|
3791
3786
|
markdownDescription: ( localize(
|
|
3792
|
-
|
|
3787
|
+
569,
|
|
3793
3788
|
"The modifier to be used to add multiple cursors with the mouse. The Go to Definition and Open Link mouse gestures will adapt such that they do not conflict with the [multicursor modifier](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier)."
|
|
3794
3789
|
))
|
|
3795
3790
|
}
|
|
@@ -3801,18 +3796,18 @@ const EditorOptions = {
|
|
|
3801
3796
|
['spread', 'full'],
|
|
3802
3797
|
{
|
|
3803
3798
|
markdownEnumDescriptions: [
|
|
3804
|
-
( localize(
|
|
3805
|
-
( localize(
|
|
3799
|
+
( localize(570, "Each cursor pastes a single line of the text.")),
|
|
3800
|
+
( localize(571, "Each cursor pastes the full text."))
|
|
3806
3801
|
],
|
|
3807
3802
|
markdownDescription: ( localize(
|
|
3808
|
-
|
|
3803
|
+
572,
|
|
3809
3804
|
"Controls pasting when the line count of the pasted text matches the cursor count."
|
|
3810
3805
|
))
|
|
3811
3806
|
}
|
|
3812
3807
|
))),
|
|
3813
3808
|
multiCursorLimit: register(( new EditorIntOption(EditorOption.multiCursorLimit, 'multiCursorLimit', 10000, 1, 100000, {
|
|
3814
3809
|
markdownDescription: ( localize(
|
|
3815
|
-
|
|
3810
|
+
573,
|
|
3816
3811
|
"Controls the max number of cursors that can be in an active editor at once."
|
|
3817
3812
|
))
|
|
3818
3813
|
}))),
|
|
@@ -3823,12 +3818,12 @@ const EditorOptions = {
|
|
|
3823
3818
|
['off', 'singleFile', 'multiFile'],
|
|
3824
3819
|
{
|
|
3825
3820
|
markdownEnumDescriptions: [
|
|
3826
|
-
( localize(
|
|
3827
|
-
( localize(
|
|
3828
|
-
( localize(
|
|
3821
|
+
( localize(574, "Does not highlight occurrences.")),
|
|
3822
|
+
( localize(575, "Highlights occurrences only in the current file.")),
|
|
3823
|
+
( localize(576, "Experimental: Highlights occurrences across all valid open files."))
|
|
3829
3824
|
],
|
|
3830
3825
|
markdownDescription: ( localize(
|
|
3831
|
-
|
|
3826
|
+
577,
|
|
3832
3827
|
"Controls whether occurrences should be highlighted across open files."
|
|
3833
3828
|
))
|
|
3834
3829
|
}
|
|
@@ -3841,7 +3836,7 @@ const EditorOptions = {
|
|
|
3841
3836
|
2000,
|
|
3842
3837
|
{
|
|
3843
3838
|
description: ( localize(
|
|
3844
|
-
|
|
3839
|
+
578,
|
|
3845
3840
|
"Controls the delay in milliseconds after which occurrences are highlighted."
|
|
3846
3841
|
)),
|
|
3847
3842
|
tags: ['preview']
|
|
@@ -3851,14 +3846,14 @@ const EditorOptions = {
|
|
|
3851
3846
|
EditorOption.overtypeOnPaste,
|
|
3852
3847
|
'overtypeOnPaste',
|
|
3853
3848
|
true,
|
|
3854
|
-
{ description: ( localize(
|
|
3849
|
+
{ description: ( localize(579, "Controls whether pasting should overtype.")) }
|
|
3855
3850
|
))),
|
|
3856
3851
|
overviewRulerBorder: register(( new EditorBooleanOption(
|
|
3857
3852
|
EditorOption.overviewRulerBorder,
|
|
3858
3853
|
'overviewRulerBorder',
|
|
3859
3854
|
true,
|
|
3860
3855
|
{ description: ( localize(
|
|
3861
|
-
|
|
3856
|
+
580,
|
|
3862
3857
|
"Controls whether a border should be drawn around the overview ruler."
|
|
3863
3858
|
)) }
|
|
3864
3859
|
))),
|
|
@@ -3873,11 +3868,11 @@ const EditorOptions = {
|
|
|
3873
3868
|
['tree', 'editor'],
|
|
3874
3869
|
{
|
|
3875
3870
|
enumDescriptions: [
|
|
3876
|
-
( localize(
|
|
3877
|
-
( localize(
|
|
3871
|
+
( localize(581, "Focus the tree when opening peek")),
|
|
3872
|
+
( localize(582, "Focus the editor when opening peek"))
|
|
3878
3873
|
],
|
|
3879
3874
|
description: ( localize(
|
|
3880
|
-
|
|
3875
|
+
583,
|
|
3881
3876
|
"Controls whether to focus the inline editor or the tree in the peek widget."
|
|
3882
3877
|
))
|
|
3883
3878
|
}
|
|
@@ -3888,7 +3883,7 @@ const EditorOptions = {
|
|
|
3888
3883
|
'definitionLinkOpensInPeek',
|
|
3889
3884
|
false,
|
|
3890
3885
|
{ description: ( localize(
|
|
3891
|
-
|
|
3886
|
+
584,
|
|
3892
3887
|
"Controls whether the Go to Definition mouse gesture always opens the peek widget."
|
|
3893
3888
|
)) }
|
|
3894
3889
|
))),
|
|
@@ -3900,7 +3895,7 @@ const EditorOptions = {
|
|
|
3900
3895
|
0,
|
|
3901
3896
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3902
3897
|
{ description: ( localize(
|
|
3903
|
-
|
|
3898
|
+
585,
|
|
3904
3899
|
"Controls the delay in milliseconds after which quick suggestions will show up."
|
|
3905
3900
|
)) }
|
|
3906
3901
|
))),
|
|
@@ -3910,20 +3905,20 @@ const EditorOptions = {
|
|
|
3910
3905
|
EditorOption.renameOnType,
|
|
3911
3906
|
'renameOnType',
|
|
3912
3907
|
false,
|
|
3913
|
-
{ description: ( localize(
|
|
3908
|
+
{ description: ( localize(586, "Controls whether the editor auto renames on type.")), markdownDeprecationMessage: ( localize(587, "Deprecated, use `editor.linkedEditing` instead.")) }
|
|
3914
3909
|
))),
|
|
3915
3910
|
renderControlCharacters: register(( new EditorBooleanOption(
|
|
3916
3911
|
EditorOption.renderControlCharacters,
|
|
3917
3912
|
'renderControlCharacters',
|
|
3918
3913
|
true,
|
|
3919
|
-
{ description: ( localize(
|
|
3914
|
+
{ description: ( localize(588, "Controls whether the editor should render control characters.")), restricted: true }
|
|
3920
3915
|
))),
|
|
3921
3916
|
renderFinalNewline: register(( new EditorStringEnumOption(
|
|
3922
3917
|
EditorOption.renderFinalNewline,
|
|
3923
3918
|
'renderFinalNewline',
|
|
3924
3919
|
(isLinux ? 'dimmed' : 'on'),
|
|
3925
3920
|
['off', 'on', 'dimmed'],
|
|
3926
|
-
{ description: ( localize(
|
|
3921
|
+
{ description: ( localize(589, "Render last line number when the file ends with a newline.")) }
|
|
3927
3922
|
))),
|
|
3928
3923
|
renderLineHighlight: register(( new EditorStringEnumOption(
|
|
3929
3924
|
EditorOption.renderLineHighlight,
|
|
@@ -3935,9 +3930,9 @@ const EditorOptions = {
|
|
|
3935
3930
|
'',
|
|
3936
3931
|
'',
|
|
3937
3932
|
'',
|
|
3938
|
-
( localize(
|
|
3933
|
+
( localize(590, "Highlights both the gutter and the current line.")),
|
|
3939
3934
|
],
|
|
3940
|
-
description: ( localize(
|
|
3935
|
+
description: ( localize(591, "Controls how the editor should render the current line highlight."))
|
|
3941
3936
|
}
|
|
3942
3937
|
))),
|
|
3943
3938
|
renderLineHighlightOnlyWhenFocus: register(( new EditorBooleanOption(
|
|
@@ -3945,7 +3940,7 @@ const EditorOptions = {
|
|
|
3945
3940
|
'renderLineHighlightOnlyWhenFocus',
|
|
3946
3941
|
false,
|
|
3947
3942
|
{ description: ( localize(
|
|
3948
|
-
|
|
3943
|
+
592,
|
|
3949
3944
|
"Controls if the editor should render the current line highlight only when the editor is focused."
|
|
3950
3945
|
)) }
|
|
3951
3946
|
))),
|
|
@@ -3964,14 +3959,14 @@ const EditorOptions = {
|
|
|
3964
3959
|
enumDescriptions: [
|
|
3965
3960
|
'',
|
|
3966
3961
|
( localize(
|
|
3967
|
-
|
|
3962
|
+
593,
|
|
3968
3963
|
"Render whitespace characters except for single spaces between words."
|
|
3969
3964
|
)),
|
|
3970
|
-
( localize(
|
|
3971
|
-
( localize(
|
|
3965
|
+
( localize(594, "Render whitespace characters only on selected text.")),
|
|
3966
|
+
( localize(595, "Render only trailing whitespace characters.")),
|
|
3972
3967
|
''
|
|
3973
3968
|
],
|
|
3974
|
-
description: ( localize(
|
|
3969
|
+
description: ( localize(596, "Controls how the editor should render whitespace characters."))
|
|
3975
3970
|
}
|
|
3976
3971
|
))),
|
|
3977
3972
|
revealHorizontalRightPadding: register(( new EditorIntOption(
|
|
@@ -3985,7 +3980,7 @@ const EditorOptions = {
|
|
|
3985
3980
|
EditorOption.roundedSelection,
|
|
3986
3981
|
'roundedSelection',
|
|
3987
3982
|
true,
|
|
3988
|
-
{ description: ( localize(
|
|
3983
|
+
{ description: ( localize(597, "Controls whether selections should have rounded corners.")) }
|
|
3989
3984
|
))),
|
|
3990
3985
|
rulers: register(( new EditorRulers())),
|
|
3991
3986
|
scrollbar: register(( new EditorScrollbar())),
|
|
@@ -3996,7 +3991,7 @@ const EditorOptions = {
|
|
|
3996
3991
|
0,
|
|
3997
3992
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
3998
3993
|
{ description: ( localize(
|
|
3999
|
-
|
|
3994
|
+
598,
|
|
4000
3995
|
"Controls the number of extra characters beyond which the editor will scroll horizontally."
|
|
4001
3996
|
)) }
|
|
4002
3997
|
))),
|
|
@@ -4004,19 +3999,19 @@ const EditorOptions = {
|
|
|
4004
3999
|
EditorOption.scrollBeyondLastLine,
|
|
4005
4000
|
'scrollBeyondLastLine',
|
|
4006
4001
|
true,
|
|
4007
|
-
{ description: ( localize(
|
|
4002
|
+
{ description: ( localize(599, "Controls whether the editor will scroll beyond the last line.")) }
|
|
4008
4003
|
))),
|
|
4009
4004
|
scrollPredominantAxis: register(( new EditorBooleanOption(
|
|
4010
4005
|
EditorOption.scrollPredominantAxis,
|
|
4011
4006
|
'scrollPredominantAxis',
|
|
4012
4007
|
true,
|
|
4013
4008
|
{ description: ( localize(
|
|
4014
|
-
|
|
4009
|
+
600,
|
|
4015
4010
|
"Scroll only along the predominant axis when scrolling both vertically and horizontally at the same time. Prevents horizontal drift when scrolling vertically on a trackpad."
|
|
4016
4011
|
)) }
|
|
4017
4012
|
))),
|
|
4018
4013
|
selectionClipboard: register(( new EditorBooleanOption(EditorOption.selectionClipboard, 'selectionClipboard', true, {
|
|
4019
|
-
description: ( localize(
|
|
4014
|
+
description: ( localize(601, "Controls whether the Linux primary clipboard should be supported.")),
|
|
4020
4015
|
included: isLinux
|
|
4021
4016
|
}))),
|
|
4022
4017
|
selectionHighlight: register(( new EditorBooleanOption(
|
|
@@ -4024,7 +4019,7 @@ const EditorOptions = {
|
|
|
4024
4019
|
'selectionHighlight',
|
|
4025
4020
|
true,
|
|
4026
4021
|
{ description: ( localize(
|
|
4027
|
-
|
|
4022
|
+
602,
|
|
4028
4023
|
"Controls whether the editor should highlight matches similar to the selection."
|
|
4029
4024
|
)) }
|
|
4030
4025
|
))),
|
|
@@ -4036,19 +4031,19 @@ const EditorOptions = {
|
|
|
4036
4031
|
['always', 'never', 'mouseover'],
|
|
4037
4032
|
{
|
|
4038
4033
|
enumDescriptions: [
|
|
4039
|
-
( localize(
|
|
4040
|
-
( localize(
|
|
4041
|
-
( localize(
|
|
4034
|
+
( localize(603, "Always show the folding controls.")),
|
|
4035
|
+
( localize(604, "Never show the folding controls and reduce the gutter size.")),
|
|
4036
|
+
( localize(605, "Only show the folding controls when the mouse is over the gutter.")),
|
|
4042
4037
|
],
|
|
4043
|
-
description: ( localize(
|
|
4038
|
+
description: ( localize(606, "Controls when the folding controls on the gutter are shown."))
|
|
4044
4039
|
}
|
|
4045
4040
|
))),
|
|
4046
|
-
showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, 'showUnused', true, { description: ( localize(
|
|
4041
|
+
showUnused: register(( new EditorBooleanOption(EditorOption.showUnused, 'showUnused', true, { description: ( localize(607, "Controls fading out of unused code.")) }))),
|
|
4047
4042
|
showDeprecated: register(( new EditorBooleanOption(
|
|
4048
4043
|
EditorOption.showDeprecated,
|
|
4049
4044
|
'showDeprecated',
|
|
4050
4045
|
true,
|
|
4051
|
-
{ description: ( localize(
|
|
4046
|
+
{ description: ( localize(608, "Controls strikethrough deprecated variables.")) }
|
|
4052
4047
|
))),
|
|
4053
4048
|
inlayHints: register(( new EditorInlayHints())),
|
|
4054
4049
|
snippetSuggestions: register(( new EditorStringEnumOption(
|
|
@@ -4058,13 +4053,13 @@ const EditorOptions = {
|
|
|
4058
4053
|
['top', 'bottom', 'inline', 'none'],
|
|
4059
4054
|
{
|
|
4060
4055
|
enumDescriptions: [
|
|
4061
|
-
( localize(
|
|
4062
|
-
( localize(
|
|
4063
|
-
( localize(
|
|
4064
|
-
( localize(
|
|
4056
|
+
( localize(609, "Show snippet suggestions on top of other suggestions.")),
|
|
4057
|
+
( localize(610, "Show snippet suggestions below other suggestions.")),
|
|
4058
|
+
( localize(611, "Show snippets suggestions with other suggestions.")),
|
|
4059
|
+
( localize(612, "Do not show snippet suggestions.")),
|
|
4065
4060
|
],
|
|
4066
4061
|
description: ( localize(
|
|
4067
|
-
|
|
4062
|
+
613,
|
|
4068
4063
|
"Controls whether snippets are shown with other suggestions and how they are sorted."
|
|
4069
4064
|
))
|
|
4070
4065
|
}
|
|
@@ -4074,7 +4069,7 @@ const EditorOptions = {
|
|
|
4074
4069
|
EditorOption.smoothScrolling,
|
|
4075
4070
|
'smoothScrolling',
|
|
4076
4071
|
false,
|
|
4077
|
-
{ description: ( localize(
|
|
4072
|
+
{ description: ( localize(614, "Controls whether the editor will scroll using an animation.")) }
|
|
4078
4073
|
))),
|
|
4079
4074
|
stopRenderingLineAfter: register(( new EditorIntOption(
|
|
4080
4075
|
EditorOption.stopRenderingLineAfter,
|
|
@@ -4090,7 +4085,7 @@ const EditorOptions = {
|
|
|
4090
4085
|
'inlineCompletionsAccessibilityVerbose',
|
|
4091
4086
|
false,
|
|
4092
4087
|
{ description: ( localize(
|
|
4093
|
-
|
|
4088
|
+
615,
|
|
4094
4089
|
"Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown."
|
|
4095
4090
|
)) }
|
|
4096
4091
|
))),
|
|
@@ -4101,7 +4096,7 @@ const EditorOptions = {
|
|
|
4101
4096
|
0,
|
|
4102
4097
|
1000,
|
|
4103
4098
|
{ markdownDescription: ( localize(
|
|
4104
|
-
|
|
4099
|
+
616,
|
|
4105
4100
|
"Font size for the suggest widget. When set to {0}, the value of {1} is used.",
|
|
4106
4101
|
'`0`',
|
|
4107
4102
|
'`#editor.fontSize#`'
|
|
@@ -4114,7 +4109,7 @@ const EditorOptions = {
|
|
|
4114
4109
|
0,
|
|
4115
4110
|
1000,
|
|
4116
4111
|
{ markdownDescription: ( localize(
|
|
4117
|
-
|
|
4112
|
+
617,
|
|
4118
4113
|
"Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.",
|
|
4119
4114
|
'`0`',
|
|
4120
4115
|
'`#editor.lineHeight#`'
|
|
@@ -4125,7 +4120,7 @@ const EditorOptions = {
|
|
|
4125
4120
|
'suggestOnTriggerCharacters',
|
|
4126
4121
|
true,
|
|
4127
4122
|
{ description: ( localize(
|
|
4128
|
-
|
|
4123
|
+
618,
|
|
4129
4124
|
"Controls whether suggestions should automatically show up when typing trigger characters."
|
|
4130
4125
|
)) }
|
|
4131
4126
|
))),
|
|
@@ -4136,18 +4131,18 @@ const EditorOptions = {
|
|
|
4136
4131
|
['first', 'recentlyUsed', 'recentlyUsedByPrefix'],
|
|
4137
4132
|
{
|
|
4138
4133
|
markdownEnumDescriptions: [
|
|
4139
|
-
( localize(
|
|
4134
|
+
( localize(619, "Always select the first suggestion.")),
|
|
4140
4135
|
( localize(
|
|
4141
|
-
|
|
4136
|
+
620,
|
|
4142
4137
|
"Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently."
|
|
4143
4138
|
)),
|
|
4144
4139
|
( localize(
|
|
4145
|
-
|
|
4140
|
+
621,
|
|
4146
4141
|
"Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`."
|
|
4147
4142
|
)),
|
|
4148
4143
|
],
|
|
4149
4144
|
description: ( localize(
|
|
4150
|
-
|
|
4145
|
+
622,
|
|
4151
4146
|
"Controls how suggestions are pre-selected when showing the suggest list."
|
|
4152
4147
|
))
|
|
4153
4148
|
}
|
|
@@ -4160,16 +4155,16 @@ const EditorOptions = {
|
|
|
4160
4155
|
{
|
|
4161
4156
|
enumDescriptions: [
|
|
4162
4157
|
( localize(
|
|
4163
|
-
|
|
4158
|
+
623,
|
|
4164
4159
|
"Tab complete will insert the best matching suggestion when pressing tab."
|
|
4165
4160
|
)),
|
|
4166
|
-
( localize(
|
|
4161
|
+
( localize(624, "Disable tab completions.")),
|
|
4167
4162
|
( localize(
|
|
4168
|
-
|
|
4163
|
+
625,
|
|
4169
4164
|
"Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."
|
|
4170
4165
|
)),
|
|
4171
4166
|
],
|
|
4172
|
-
description: ( localize(
|
|
4167
|
+
description: ( localize(626, "Enables tab completions."))
|
|
4173
4168
|
}
|
|
4174
4169
|
))),
|
|
4175
4170
|
tabIndex: register(( new EditorIntOption(EditorOption.tabIndex, 'tabIndex', 0, -1, Constants.MAX_SAFE_SMALL_INTEGER))),
|
|
@@ -4181,11 +4176,11 @@ const EditorOptions = {
|
|
|
4181
4176
|
['auto', 'off', 'prompt'],
|
|
4182
4177
|
{
|
|
4183
4178
|
enumDescriptions: [
|
|
4184
|
-
( localize(
|
|
4185
|
-
( localize(
|
|
4186
|
-
( localize(
|
|
4179
|
+
( localize(627, "Unusual line terminators are automatically removed.")),
|
|
4180
|
+
( localize(628, "Unusual line terminators are ignored.")),
|
|
4181
|
+
( localize(629, "Unusual line terminators prompt to be removed.")),
|
|
4187
4182
|
],
|
|
4188
|
-
description: ( localize(
|
|
4183
|
+
description: ( localize(630, "Remove unusual line terminators that might cause problems."))
|
|
4189
4184
|
}
|
|
4190
4185
|
))),
|
|
4191
4186
|
useShadowDOM: register(( new EditorBooleanOption(EditorOption.useShadowDOM, 'useShadowDOM', true))),
|
|
@@ -4194,20 +4189,20 @@ const EditorOptions = {
|
|
|
4194
4189
|
'useTabStops',
|
|
4195
4190
|
true,
|
|
4196
4191
|
{ description: ( localize(
|
|
4197
|
-
|
|
4192
|
+
631,
|
|
4198
4193
|
"Spaces and tabs are inserted and deleted in alignment with tab stops."
|
|
4199
4194
|
)) }
|
|
4200
4195
|
))),
|
|
4201
4196
|
wordBreak: register(( new EditorStringEnumOption(EditorOption.wordBreak, 'wordBreak', 'normal', ['normal', 'keepAll'], {
|
|
4202
4197
|
markdownEnumDescriptions: [
|
|
4203
|
-
( localize(
|
|
4198
|
+
( localize(632, "Use the default line break rule.")),
|
|
4204
4199
|
( localize(
|
|
4205
|
-
|
|
4200
|
+
633,
|
|
4206
4201
|
"Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for normal."
|
|
4207
4202
|
)),
|
|
4208
4203
|
],
|
|
4209
4204
|
description: ( localize(
|
|
4210
|
-
|
|
4205
|
+
634,
|
|
4211
4206
|
"Controls the word break rules used for Chinese/Japanese/Korean (CJK) text."
|
|
4212
4207
|
))
|
|
4213
4208
|
}))),
|
|
@@ -4217,7 +4212,7 @@ const EditorOptions = {
|
|
|
4217
4212
|
'wordSeparators',
|
|
4218
4213
|
USUAL_WORD_SEPARATORS,
|
|
4219
4214
|
{ description: ( localize(
|
|
4220
|
-
|
|
4215
|
+
635,
|
|
4221
4216
|
"Characters that will be used as word separators when doing word related navigations or operations."
|
|
4222
4217
|
)) }
|
|
4223
4218
|
))),
|
|
@@ -4228,15 +4223,15 @@ const EditorOptions = {
|
|
|
4228
4223
|
['off', 'on', 'wordWrapColumn', 'bounded'],
|
|
4229
4224
|
{
|
|
4230
4225
|
markdownEnumDescriptions: [
|
|
4231
|
-
( localize(
|
|
4232
|
-
( localize(
|
|
4233
|
-
( localize(
|
|
4226
|
+
( localize(636, "Lines will never wrap.")),
|
|
4227
|
+
( localize(637, "Lines will wrap at the viewport width.")),
|
|
4228
|
+
( localize(638, "Lines will wrap at `#editor.wordWrapColumn#`.")),
|
|
4234
4229
|
( localize(
|
|
4235
|
-
|
|
4230
|
+
639,
|
|
4236
4231
|
"Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`."
|
|
4237
4232
|
)),
|
|
4238
4233
|
],
|
|
4239
|
-
description: ( localize(
|
|
4234
|
+
description: ( localize(640, "Controls how lines should wrap."))
|
|
4240
4235
|
}
|
|
4241
4236
|
))),
|
|
4242
4237
|
wordWrapBreakAfterCharacters: register(( new EditorStringOption(
|
|
@@ -4257,7 +4252,7 @@ const EditorOptions = {
|
|
|
4257
4252
|
Constants.MAX_SAFE_SMALL_INTEGER,
|
|
4258
4253
|
{
|
|
4259
4254
|
markdownDescription: ( localize(
|
|
4260
|
-
|
|
4255
|
+
641,
|
|
4261
4256
|
"Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`."
|
|
4262
4257
|
))
|
|
4263
4258
|
}
|
|
@@ -4284,14 +4279,14 @@ const EditorOptions = {
|
|
|
4284
4279
|
{
|
|
4285
4280
|
enumDescriptions: [
|
|
4286
4281
|
( localize(
|
|
4287
|
-
|
|
4282
|
+
642,
|
|
4288
4283
|
"Show default color decorators only when no extension provides colors decorators."
|
|
4289
4284
|
)),
|
|
4290
|
-
( localize(
|
|
4291
|
-
( localize(
|
|
4285
|
+
( localize(643, "Always show default color decorators.")),
|
|
4286
|
+
( localize(644, "Never show default color decorators.")),
|
|
4292
4287
|
],
|
|
4293
4288
|
description: ( localize(
|
|
4294
|
-
|
|
4289
|
+
645,
|
|
4295
4290
|
"Controls whether inline color decorations should be shown using the default document color provider."
|
|
4296
4291
|
))
|
|
4297
4292
|
}
|
|
@@ -4302,7 +4297,7 @@ const EditorOptions = {
|
|
|
4302
4297
|
'tabFocusMode',
|
|
4303
4298
|
false,
|
|
4304
4299
|
{ markdownDescription: ( localize(
|
|
4305
|
-
|
|
4300
|
+
646,
|
|
4306
4301
|
"Controls whether the editor receives tabs or defers them to the workbench for navigation."
|
|
4307
4302
|
)) }
|
|
4308
4303
|
))),
|