monaco-editor-core 0.54.0-dev-20250922 → 0.54.0-dev-20250924
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/nls.keys.json +1 -1
- package/esm/nls.messages.de.js +2 -2
- package/esm/nls.messages.es.js +2 -2
- package/esm/nls.messages.fr.js +2 -2
- package/esm/nls.messages.it.js +2 -2
- package/esm/nls.messages.ja.js +2 -2
- package/esm/nls.messages.js +1 -1
- package/esm/nls.messages.json +1 -1
- package/esm/nls.messages.ko.js +2 -2
- package/esm/nls.messages.ru.js +2 -2
- package/esm/nls.messages.zh-cn.js +2 -2
- package/esm/nls.messages.zh-tw.js +2 -2
- package/esm/nls.metadata.json +2 -0
- package/esm/vs/base/browser/ui/toolbar/toolbar.js +7 -0
- package/esm/vs/base/browser/ui/toolbar/toolbar.js.map +1 -1
- package/esm/vs/base/common/htmlContent.js +8 -0
- package/esm/vs/base/common/htmlContent.js.map +1 -1
- package/esm/vs/editor/common/config/editorOptions.js +274 -267
- package/esm/vs/editor/common/config/editorOptions.js.map +1 -1
- package/esm/vs/editor/common/core/editorColorRegistry.js +68 -68
- package/esm/vs/editor/common/editorContextKeys.js +46 -46
- package/esm/vs/editor/common/languages/modesRegistry.js +1 -1
- package/esm/vs/editor/common/languages.js +56 -56
- package/esm/vs/editor/common/model/editStack.js +1 -1
- package/esm/vs/editor/common/standaloneStrings.js +10 -10
- package/esm/vs/editor/common/viewLayout/viewLineRenderer.js +2 -2
- package/esm/vs/editor/contrib/anchorSelect/browser/anchorSelect.js +6 -6
- package/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.js +6 -6
- package/esm/vs/editor/contrib/caretOperations/browser/caretOperations.js +2 -2
- package/esm/vs/editor/contrib/caretOperations/browser/transpose.js +1 -1
- package/esm/vs/editor/contrib/clipboard/browser/clipboard.js +17 -17
- package/esm/vs/editor/contrib/codeAction/browser/codeAction.js +1 -1
- package/esm/vs/editor/contrib/codeAction/browser/codeActionCommands.js +29 -29
- package/esm/vs/editor/contrib/codeAction/browser/codeActionContributions.js +3 -3
- package/esm/vs/editor/contrib/codeAction/browser/codeActionController.js +3 -3
- package/esm/vs/editor/contrib/codeAction/browser/codeActionMenu.js +8 -8
- package/esm/vs/editor/contrib/codeAction/browser/lightBulbWidget.js +9 -9
- package/esm/vs/editor/contrib/codelens/browser/codelensController.js +2 -2
- package/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerCloseButton.js +1 -1
- package/esm/vs/editor/contrib/colorPicker/browser/colorPickerParts/colorPickerHeader.js +1 -1
- package/esm/vs/editor/contrib/colorPicker/browser/standaloneColorPicker/standaloneColorPickerActions.js +7 -7
- package/esm/vs/editor/contrib/comment/browser/comment.js +6 -6
- package/esm/vs/editor/contrib/contextmenu/browser/contextmenu.js +10 -10
- package/esm/vs/editor/contrib/cursorUndo/browser/cursorUndo.js +2 -2
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/copyPasteContribution.js +4 -4
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/copyPasteController.js +9 -9
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/defaultProviders.js +8 -8
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/dropIntoEditorController.js +3 -3
- package/esm/vs/editor/contrib/dropOrPasteInto/browser/postEditWidget.js +2 -2
- package/esm/vs/editor/contrib/editorState/browser/keybindingCancellation.js +1 -1
- package/esm/vs/editor/contrib/find/browser/findController.js +16 -16
- package/esm/vs/editor/contrib/find/browser/findWidget.js +26 -26
- package/esm/vs/editor/contrib/floatingMenu/browser/floatingMenu.css +10 -0
- package/esm/vs/editor/contrib/floatingMenu/browser/floatingMenu.js +28 -5
- package/esm/vs/editor/contrib/floatingMenu/browser/floatingMenu.js.map +1 -1
- package/esm/vs/editor/contrib/folding/browser/folding.js +20 -20
- package/esm/vs/editor/contrib/folding/browser/foldingDecorations.js +9 -9
- package/esm/vs/editor/contrib/folding/browser/foldingDecorations.js.map +1 -1
- package/esm/vs/editor/contrib/fontZoom/browser/fontZoom.js +3 -3
- package/esm/vs/editor/contrib/format/browser/format.js +3 -0
- package/esm/vs/editor/contrib/format/browser/format.js.map +1 -1
- package/esm/vs/editor/contrib/format/browser/formatActions.js +2 -2
- package/esm/vs/editor/contrib/gotoError/browser/gotoError.js +8 -8
- package/esm/vs/editor/contrib/gotoError/browser/gotoErrorWidget.js +14 -14
- package/esm/vs/editor/contrib/gotoSymbol/browser/goToCommands.js +39 -39
- package/esm/vs/editor/contrib/gotoSymbol/browser/link/goToDefinitionAtPosition.js +1 -1
- package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesController.js +3 -3
- package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesTree.js +3 -3
- package/esm/vs/editor/contrib/gotoSymbol/browser/peek/referencesWidget.js +3 -3
- package/esm/vs/editor/contrib/gotoSymbol/browser/referencesModel.js +8 -8
- package/esm/vs/editor/contrib/gotoSymbol/browser/symbolNavigation.js +3 -3
- package/esm/vs/editor/contrib/gpu/browser/gpuActions.js +4 -4
- package/esm/vs/editor/contrib/hover/browser/hoverActionIds.js +2 -2
- package/esm/vs/editor/contrib/hover/browser/hoverActions.js +24 -24
- package/esm/vs/editor/contrib/hover/browser/markdownHoverParticipant.js +9 -9
- package/esm/vs/editor/contrib/hover/browser/markerHoverParticipant.js +5 -5
- package/esm/vs/editor/contrib/inPlaceReplace/browser/inPlaceReplace.js +2 -2
- package/esm/vs/editor/contrib/indentation/browser/indentation.js +20 -20
- package/esm/vs/editor/contrib/inlayHints/browser/inlayHints.js +2 -7
- package/esm/vs/editor/contrib/inlayHints/browser/inlayHints.js.map +1 -1
- package/esm/vs/editor/contrib/inlayHints/browser/inlayHintsHover.js +8 -8
- package/esm/vs/editor/contrib/inlineCompletions/browser/controller/commands.js +19 -19
- package/esm/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionContextKeys.js +12 -12
- package/esm/vs/editor/contrib/inlineCompletions/browser/controller/inlineCompletionsController.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget/hoverParticipant.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/hintsWidget/inlineCompletionsHintsWidget.js +5 -5
- package/esm/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js +6 -0
- package/esm/vs/editor/contrib/inlineCompletions/browser/model/inlineCompletionsModel.js.map +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/components/gutterIndicatorMenu.js +5 -5
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/inlineEditsModel.js +1 -1
- package/esm/vs/editor/contrib/inlineCompletions/browser/view/inlineEdits/theme.js +20 -20
- package/esm/vs/editor/contrib/insertFinalNewLine/browser/insertFinalNewLine.js +1 -1
- package/esm/vs/editor/contrib/lineSelection/browser/lineSelection.js +1 -1
- package/esm/vs/editor/contrib/linesOperations/browser/linesOperations.js +31 -31
- package/esm/vs/editor/contrib/linkedEditing/browser/linkedEditing.js +2 -2
- package/esm/vs/editor/contrib/links/browser/links.js +10 -10
- package/esm/vs/editor/contrib/message/browser/messageController.js +1 -1
- package/esm/vs/editor/contrib/multicursor/browser/multicursor.js +22 -22
- package/esm/vs/editor/contrib/parameterHints/browser/parameterHints.js +1 -1
- package/esm/vs/editor/contrib/parameterHints/browser/parameterHintsWidget.js +4 -4
- package/esm/vs/editor/contrib/peekView/browser/peekView.js +18 -18
- package/esm/vs/editor/contrib/placeholderText/browser/placeholderText.contribution.js +1 -1
- package/esm/vs/editor/contrib/quickAccess/browser/gotoLineQuickAccess.js +5 -5
- package/esm/vs/editor/contrib/quickAccess/browser/gotoSymbolQuickAccess.js +32 -32
- package/esm/vs/editor/contrib/readOnlyMessage/browser/contribution.js +2 -2
- package/esm/vs/editor/contrib/rename/browser/rename.js +11 -11
- package/esm/vs/editor/contrib/rename/browser/renameWidget.js +7 -7
- package/esm/vs/editor/contrib/smartSelect/browser/smartSelect.js +4 -4
- package/esm/vs/editor/contrib/snippet/browser/snippetController2.js +12 -4
- package/esm/vs/editor/contrib/snippet/browser/snippetController2.js.map +1 -1
- package/esm/vs/editor/contrib/snippet/browser/snippetVariables.js +4 -4
- package/esm/vs/editor/contrib/stickyScroll/browser/stickyScrollActions.js +11 -11
- package/esm/vs/editor/contrib/suggest/browser/suggest.js +8 -8
- package/esm/vs/editor/contrib/suggest/browser/suggestController.js +10 -10
- package/esm/vs/editor/contrib/suggest/browser/suggestWidget.js +17 -17
- package/esm/vs/editor/contrib/suggest/browser/suggestWidgetDetails.js +2 -2
- package/esm/vs/editor/contrib/suggest/browser/suggestWidgetRenderer.js +2 -2
- package/esm/vs/editor/contrib/suggest/browser/wordContextKey.js +1 -1
- package/esm/vs/editor/contrib/symbolIcons/browser/symbolIcons.js +33 -33
- package/esm/vs/editor/contrib/toggleTabFocusMode/browser/toggleTabFocusMode.js +4 -4
- package/esm/vs/editor/contrib/tokenization/browser/tokenization.js +1 -1
- package/esm/vs/editor/contrib/unicodeHighlighter/browser/bannerController.js +1 -1
- package/esm/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js +26 -26
- package/esm/vs/editor/contrib/unicodeHighlighter/browser/unicodeHighlighter.js.map +1 -1
- package/esm/vs/editor/contrib/unusualLineTerminators/browser/unusualLineTerminators.js +5 -5
- package/esm/vs/editor/contrib/wordHighlighter/browser/highlightDecorations.js +9 -9
- package/esm/vs/editor/contrib/wordHighlighter/browser/wordHighlighter.js +3 -3
- package/esm/vs/editor/contrib/wordOperations/browser/wordOperations.js +1 -1
- package/esm/vs/editor/editor.api.d.ts +1 -0
- package/esm/vs/editor/standalone/browser/standaloneThemeService.js +10 -0
- package/esm/vs/editor/standalone/browser/standaloneThemeService.js.map +1 -1
- package/esm/vs/platform/accessibilitySignal/browser/accessibilitySignalService.js +62 -62
- package/esm/vs/platform/action/common/actionCommonCategories.js +6 -6
- package/esm/vs/platform/actionWidget/browser/actionList.js +4 -4
- package/esm/vs/platform/actionWidget/browser/actionWidget.js +7 -7
- package/esm/vs/platform/actions/browser/menuEntryActionViewItem.js +5 -5
- package/esm/vs/platform/actions/browser/toolbar.js +2 -2
- package/esm/vs/platform/actions/common/menuService.js +2 -2
- package/esm/vs/platform/configuration/common/configurationRegistry.js +10 -10
- package/esm/vs/platform/contextkey/browser/contextKeyService.js +37 -3
- package/esm/vs/platform/contextkey/browser/contextKeyService.js.map +1 -1
- package/esm/vs/platform/contextkey/common/contextkey.js +9 -9
- package/esm/vs/platform/contextkey/common/contextkeys.js +9 -9
- package/esm/vs/platform/contextkey/common/scanner.js +5 -5
- package/esm/vs/platform/history/browser/contextScopedHistoryWidget.js +1 -1
- package/esm/vs/platform/keybinding/common/abstractKeybindingService.js +4 -4
- package/esm/vs/platform/list/browser/listService.js +27 -27
- package/esm/vs/platform/markers/common/markerService.js +2 -2
- package/esm/vs/platform/markers/common/markers.js +6 -6
- package/esm/vs/platform/quickinput/browser/commandsQuickAccess.js +7 -7
- package/esm/vs/platform/quickinput/browser/helpQuickAccess.js +1 -1
- package/esm/vs/platform/quickinput/browser/quickInput.js +10 -10
- package/esm/vs/platform/quickinput/browser/quickInputActions.js +5 -5
- package/esm/vs/platform/quickinput/browser/quickInputController.js +6 -6
- package/esm/vs/platform/quickinput/browser/quickInputList.js +1 -1
- package/esm/vs/platform/quickinput/browser/quickInputUtils.js +1 -1
- package/esm/vs/platform/quickinput/browser/tree/quickInputTreeAccessibilityProvider.js +1 -1
- package/esm/vs/platform/theme/common/colorUtils.js +2 -2
- package/esm/vs/platform/theme/common/colors/baseColors.js +17 -17
- package/esm/vs/platform/theme/common/colors/chartsColors.js +8 -8
- package/esm/vs/platform/theme/common/colors/editorColors.js +95 -95
- package/esm/vs/platform/theme/common/colors/inputColors.js +47 -47
- package/esm/vs/platform/theme/common/colors/listColors.js +36 -36
- package/esm/vs/platform/theme/common/colors/menuColors.js +7 -7
- package/esm/vs/platform/theme/common/colors/minimapColors.js +11 -11
- package/esm/vs/platform/theme/common/colors/miscColors.js +15 -15
- package/esm/vs/platform/theme/common/colors/quickpickColors.js +9 -9
- package/esm/vs/platform/theme/common/colors/searchColors.js +3 -3
- package/esm/vs/platform/theme/common/iconRegistry.js +6 -6
- package/esm/vs/platform/undoRedo/common/undoRedoService.js +20 -20
- package/esm/vs/platform/workspace/common/workspace.js +1 -1
- package/monaco.d.ts +1 -0
- package/package.json +2 -2
- package/version.txt +1 -1
|
@@ -2124,6 +2124,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2124
2124
|
fontFamily: 'default',
|
|
2125
2125
|
syntaxHighlightingEnabled: true,
|
|
2126
2126
|
minShowDelay: 0,
|
|
2127
|
+
suppressInSnippetMode: false,
|
|
2127
2128
|
edits: {
|
|
2128
2129
|
enabled: true,
|
|
2129
2130
|
showCollapsed: false,
|
|
@@ -2163,18 +2164,23 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2163
2164
|
default: defaults.suppressSuggestions,
|
|
2164
2165
|
description: nls.localize(336, "Controls how inline suggestions interact with the suggest widget. If enabled, the suggest widget is not shown automatically when inline suggestions are available.")
|
|
2165
2166
|
},
|
|
2167
|
+
'editor.inlineSuggest.suppressInSnippetMode': {
|
|
2168
|
+
type: 'boolean',
|
|
2169
|
+
default: defaults.suppressInSnippetMode,
|
|
2170
|
+
description: nls.localize(337, "Controls whether inline suggestions are suppressed when in snippet mode."),
|
|
2171
|
+
},
|
|
2166
2172
|
'editor.inlineSuggest.minShowDelay': {
|
|
2167
2173
|
type: 'number',
|
|
2168
2174
|
default: 0,
|
|
2169
2175
|
minimum: 0,
|
|
2170
2176
|
maximum: 10000,
|
|
2171
|
-
description: nls.localize(
|
|
2177
|
+
description: nls.localize(338, "Controls the minimal delay in milliseconds after which inline suggestions are shown after typing."),
|
|
2172
2178
|
},
|
|
2173
2179
|
'editor.inlineSuggest.experimental.suppressInlineSuggestions': {
|
|
2174
2180
|
type: 'string',
|
|
2175
2181
|
default: defaults.experimental.suppressInlineSuggestions,
|
|
2176
2182
|
tags: ['experimental'],
|
|
2177
|
-
description: nls.localize(
|
|
2183
|
+
description: nls.localize(339, "Suppresses inline completions for specified extension IDs -- comma separated."),
|
|
2178
2184
|
experiment: {
|
|
2179
2185
|
mode: 'auto'
|
|
2180
2186
|
}
|
|
@@ -2183,7 +2189,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2183
2189
|
type: 'boolean',
|
|
2184
2190
|
default: defaults.triggerCommandOnProviderChange,
|
|
2185
2191
|
tags: ['experimental'],
|
|
2186
|
-
description: nls.localize(
|
|
2192
|
+
description: nls.localize(340, "Controls whether to trigger a command when the inline suggestion provider changes."),
|
|
2187
2193
|
experiment: {
|
|
2188
2194
|
mode: 'auto'
|
|
2189
2195
|
}
|
|
@@ -2193,7 +2199,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2193
2199
|
default: defaults.experimental.showOnSuggestConflict,
|
|
2194
2200
|
tags: ['experimental'],
|
|
2195
2201
|
enum: ['always', 'never', 'whenSuggestListIsIncomplete'],
|
|
2196
|
-
description: nls.localize(
|
|
2202
|
+
description: nls.localize(341, "Controls whether to show inline suggestions when there is a suggest conflict."),
|
|
2197
2203
|
experiment: {
|
|
2198
2204
|
mode: 'auto'
|
|
2199
2205
|
}
|
|
@@ -2201,30 +2207,30 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2201
2207
|
'editor.inlineSuggest.fontFamily': {
|
|
2202
2208
|
type: 'string',
|
|
2203
2209
|
default: defaults.fontFamily,
|
|
2204
|
-
description: nls.localize(
|
|
2210
|
+
description: nls.localize(342, "Controls the font family of the inline suggestions.")
|
|
2205
2211
|
},
|
|
2206
2212
|
'editor.inlineSuggest.edits.allowCodeShifting': {
|
|
2207
2213
|
type: 'string',
|
|
2208
2214
|
default: defaults.edits.allowCodeShifting,
|
|
2209
|
-
description: nls.localize(
|
|
2215
|
+
description: nls.localize(343, "Controls whether showing a suggestion will shift the code to make space for the suggestion inline."),
|
|
2210
2216
|
enum: ['always', 'horizontal', 'never'],
|
|
2211
2217
|
tags: ['nextEditSuggestions']
|
|
2212
2218
|
},
|
|
2213
2219
|
'editor.inlineSuggest.edits.renderSideBySide': {
|
|
2214
2220
|
type: 'string',
|
|
2215
2221
|
default: defaults.edits.renderSideBySide,
|
|
2216
|
-
description: nls.localize(
|
|
2222
|
+
description: nls.localize(344, "Controls whether larger suggestions can be shown side by side."),
|
|
2217
2223
|
enum: ['auto', 'never'],
|
|
2218
2224
|
enumDescriptions: [
|
|
2219
|
-
nls.localize(
|
|
2220
|
-
nls.localize(
|
|
2225
|
+
nls.localize(345, "Larger suggestions will show side by side if there is enough space, otherwise they will be shown below."),
|
|
2226
|
+
nls.localize(346, "Larger suggestions are never shown side by side and will always be shown below."),
|
|
2221
2227
|
],
|
|
2222
2228
|
tags: ['nextEditSuggestions']
|
|
2223
2229
|
},
|
|
2224
2230
|
'editor.inlineSuggest.edits.showCollapsed': {
|
|
2225
2231
|
type: 'boolean',
|
|
2226
2232
|
default: defaults.edits.showCollapsed,
|
|
2227
|
-
description: nls.localize(
|
|
2233
|
+
description: nls.localize(347, "Controls whether the suggestion will show as collapsed until jumping to it."),
|
|
2228
2234
|
tags: ['nextEditSuggestions']
|
|
2229
2235
|
},
|
|
2230
2236
|
});
|
|
@@ -2243,6 +2249,7 @@ class InlineEditorSuggest extends BaseEditorOption {
|
|
|
2243
2249
|
fontFamily: EditorStringOption.string(input.fontFamily, this.defaultValue.fontFamily),
|
|
2244
2250
|
syntaxHighlightingEnabled: boolean(input.syntaxHighlightingEnabled, this.defaultValue.syntaxHighlightingEnabled),
|
|
2245
2251
|
minShowDelay: EditorIntOption.clampedInt(input.minShowDelay, 0, 0, 10000),
|
|
2252
|
+
suppressInSnippetMode: boolean(input.suppressInSnippetMode, this.defaultValue.suppressInSnippetMode),
|
|
2246
2253
|
edits: {
|
|
2247
2254
|
enabled: boolean(input.edits?.enabled, this.defaultValue.edits.enabled),
|
|
2248
2255
|
showCollapsed: boolean(input.edits?.showCollapsed, this.defaultValue.edits.showCollapsed),
|
|
@@ -2270,12 +2277,12 @@ class BracketPairColorization extends BaseEditorOption {
|
|
|
2270
2277
|
'editor.bracketPairColorization.enabled': {
|
|
2271
2278
|
type: 'boolean',
|
|
2272
2279
|
default: defaults.enabled,
|
|
2273
|
-
markdownDescription: nls.localize(
|
|
2280
|
+
markdownDescription: nls.localize(348, "Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.", '`#workbench.colorCustomizations#`')
|
|
2274
2281
|
},
|
|
2275
2282
|
'editor.bracketPairColorization.independentColorPoolPerBracketType': {
|
|
2276
2283
|
type: 'boolean',
|
|
2277
2284
|
default: defaults.independentColorPoolPerBracketType,
|
|
2278
|
-
description: nls.localize(
|
|
2285
|
+
description: nls.localize(349, "Controls whether each bracket type has its own independent color pool.")
|
|
2279
2286
|
},
|
|
2280
2287
|
});
|
|
2281
2288
|
}
|
|
@@ -2307,44 +2314,44 @@ class GuideOptions extends BaseEditorOption {
|
|
|
2307
2314
|
type: ['boolean', 'string'],
|
|
2308
2315
|
enum: [true, 'active', false],
|
|
2309
2316
|
enumDescriptions: [
|
|
2310
|
-
nls.localize(
|
|
2311
|
-
nls.localize(
|
|
2312
|
-
nls.localize(
|
|
2317
|
+
nls.localize(350, "Enables bracket pair guides."),
|
|
2318
|
+
nls.localize(351, "Enables bracket pair guides only for the active bracket pair."),
|
|
2319
|
+
nls.localize(352, "Disables bracket pair guides."),
|
|
2313
2320
|
],
|
|
2314
2321
|
default: defaults.bracketPairs,
|
|
2315
|
-
description: nls.localize(
|
|
2322
|
+
description: nls.localize(353, "Controls whether bracket pair guides are enabled or not.")
|
|
2316
2323
|
},
|
|
2317
2324
|
'editor.guides.bracketPairsHorizontal': {
|
|
2318
2325
|
type: ['boolean', 'string'],
|
|
2319
2326
|
enum: [true, 'active', false],
|
|
2320
2327
|
enumDescriptions: [
|
|
2321
|
-
nls.localize(
|
|
2322
|
-
nls.localize(
|
|
2323
|
-
nls.localize(
|
|
2328
|
+
nls.localize(354, "Enables horizontal guides as addition to vertical bracket pair guides."),
|
|
2329
|
+
nls.localize(355, "Enables horizontal guides only for the active bracket pair."),
|
|
2330
|
+
nls.localize(356, "Disables horizontal bracket pair guides."),
|
|
2324
2331
|
],
|
|
2325
2332
|
default: defaults.bracketPairsHorizontal,
|
|
2326
|
-
description: nls.localize(
|
|
2333
|
+
description: nls.localize(357, "Controls whether horizontal bracket pair guides are enabled or not.")
|
|
2327
2334
|
},
|
|
2328
2335
|
'editor.guides.highlightActiveBracketPair': {
|
|
2329
2336
|
type: 'boolean',
|
|
2330
2337
|
default: defaults.highlightActiveBracketPair,
|
|
2331
|
-
description: nls.localize(
|
|
2338
|
+
description: nls.localize(358, "Controls whether the editor should highlight the active bracket pair.")
|
|
2332
2339
|
},
|
|
2333
2340
|
'editor.guides.indentation': {
|
|
2334
2341
|
type: 'boolean',
|
|
2335
2342
|
default: defaults.indentation,
|
|
2336
|
-
description: nls.localize(
|
|
2343
|
+
description: nls.localize(359, "Controls whether the editor should render indent guides.")
|
|
2337
2344
|
},
|
|
2338
2345
|
'editor.guides.highlightActiveIndentation': {
|
|
2339
2346
|
type: ['boolean', 'string'],
|
|
2340
2347
|
enum: [true, 'always', false],
|
|
2341
2348
|
enumDescriptions: [
|
|
2342
|
-
nls.localize(
|
|
2343
|
-
nls.localize(
|
|
2344
|
-
nls.localize(
|
|
2349
|
+
nls.localize(360, "Highlights the active indent guide."),
|
|
2350
|
+
nls.localize(361, "Highlights the active indent guide even if bracket guides are highlighted."),
|
|
2351
|
+
nls.localize(362, "Do not highlight the active indent guide."),
|
|
2345
2352
|
],
|
|
2346
2353
|
default: defaults.highlightActiveIndentation,
|
|
2347
|
-
description: nls.localize(
|
|
2354
|
+
description: nls.localize(363, "Controls whether the editor should highlight the active indent guide.")
|
|
2348
2355
|
}
|
|
2349
2356
|
});
|
|
2350
2357
|
}
|
|
@@ -2418,221 +2425,221 @@ class EditorSuggest extends BaseEditorOption {
|
|
|
2418
2425
|
type: 'string',
|
|
2419
2426
|
enum: ['insert', 'replace'],
|
|
2420
2427
|
enumDescriptions: [
|
|
2421
|
-
nls.localize(
|
|
2422
|
-
nls.localize(
|
|
2428
|
+
nls.localize(364, "Insert suggestion without overwriting text right of the cursor."),
|
|
2429
|
+
nls.localize(365, "Insert suggestion and overwrite text right of the cursor."),
|
|
2423
2430
|
],
|
|
2424
2431
|
default: defaults.insertMode,
|
|
2425
|
-
description: nls.localize(
|
|
2432
|
+
description: nls.localize(366, "Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature.")
|
|
2426
2433
|
},
|
|
2427
2434
|
'editor.suggest.filterGraceful': {
|
|
2428
2435
|
type: 'boolean',
|
|
2429
2436
|
default: defaults.filterGraceful,
|
|
2430
|
-
description: nls.localize(
|
|
2437
|
+
description: nls.localize(367, "Controls whether filtering and sorting suggestions accounts for small typos.")
|
|
2431
2438
|
},
|
|
2432
2439
|
'editor.suggest.localityBonus': {
|
|
2433
2440
|
type: 'boolean',
|
|
2434
2441
|
default: defaults.localityBonus,
|
|
2435
|
-
description: nls.localize(
|
|
2442
|
+
description: nls.localize(368, "Controls whether sorting favors words that appear close to the cursor.")
|
|
2436
2443
|
},
|
|
2437
2444
|
'editor.suggest.shareSuggestSelections': {
|
|
2438
2445
|
type: 'boolean',
|
|
2439
2446
|
default: defaults.shareSuggestSelections,
|
|
2440
|
-
markdownDescription: nls.localize(
|
|
2447
|
+
markdownDescription: nls.localize(369, "Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`).")
|
|
2441
2448
|
},
|
|
2442
2449
|
'editor.suggest.selectionMode': {
|
|
2443
2450
|
type: 'string',
|
|
2444
2451
|
enum: ['always', 'never', 'whenTriggerCharacter', 'whenQuickSuggestion'],
|
|
2445
2452
|
enumDescriptions: [
|
|
2446
|
-
nls.localize(
|
|
2447
|
-
nls.localize(
|
|
2448
|
-
nls.localize(
|
|
2449
|
-
nls.localize(
|
|
2453
|
+
nls.localize(370, "Always select a suggestion when automatically triggering IntelliSense."),
|
|
2454
|
+
nls.localize(371, "Never select a suggestion when automatically triggering IntelliSense."),
|
|
2455
|
+
nls.localize(372, "Select a suggestion only when triggering IntelliSense from a trigger character."),
|
|
2456
|
+
nls.localize(373, "Select a suggestion only when triggering IntelliSense as you type."),
|
|
2450
2457
|
],
|
|
2451
2458
|
default: defaults.selectionMode,
|
|
2452
|
-
markdownDescription: nls.localize(
|
|
2459
|
+
markdownDescription: nls.localize(374, "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`.", '`#editor.quickSuggestions#`', '`#editor.suggestOnTriggerCharacters#`')
|
|
2453
2460
|
},
|
|
2454
2461
|
'editor.suggest.snippetsPreventQuickSuggestions': {
|
|
2455
2462
|
type: 'boolean',
|
|
2456
2463
|
default: defaults.snippetsPreventQuickSuggestions,
|
|
2457
|
-
description: nls.localize(
|
|
2464
|
+
description: nls.localize(375, "Controls whether an active snippet prevents quick suggestions.")
|
|
2458
2465
|
},
|
|
2459
2466
|
'editor.suggest.showIcons': {
|
|
2460
2467
|
type: 'boolean',
|
|
2461
2468
|
default: defaults.showIcons,
|
|
2462
|
-
description: nls.localize(
|
|
2469
|
+
description: nls.localize(376, "Controls whether to show or hide icons in suggestions.")
|
|
2463
2470
|
},
|
|
2464
2471
|
'editor.suggest.showStatusBar': {
|
|
2465
2472
|
type: 'boolean',
|
|
2466
2473
|
default: defaults.showStatusBar,
|
|
2467
|
-
description: nls.localize(
|
|
2474
|
+
description: nls.localize(377, "Controls the visibility of the status bar at the bottom of the suggest widget.")
|
|
2468
2475
|
},
|
|
2469
2476
|
'editor.suggest.preview': {
|
|
2470
2477
|
type: 'boolean',
|
|
2471
2478
|
default: defaults.preview,
|
|
2472
|
-
description: nls.localize(
|
|
2479
|
+
description: nls.localize(378, "Controls whether to preview the suggestion outcome in the editor.")
|
|
2473
2480
|
},
|
|
2474
2481
|
'editor.suggest.showInlineDetails': {
|
|
2475
2482
|
type: 'boolean',
|
|
2476
2483
|
default: defaults.showInlineDetails,
|
|
2477
|
-
description: nls.localize(
|
|
2484
|
+
description: nls.localize(379, "Controls whether suggest details show inline with the label or only in the details widget.")
|
|
2478
2485
|
},
|
|
2479
2486
|
'editor.suggest.maxVisibleSuggestions': {
|
|
2480
2487
|
type: 'number',
|
|
2481
|
-
deprecationMessage: nls.localize(
|
|
2488
|
+
deprecationMessage: nls.localize(380, "This setting is deprecated. The suggest widget can now be resized."),
|
|
2482
2489
|
},
|
|
2483
2490
|
'editor.suggest.filteredTypes': {
|
|
2484
2491
|
type: 'object',
|
|
2485
|
-
deprecationMessage: nls.localize(
|
|
2492
|
+
deprecationMessage: nls.localize(381, "This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead.")
|
|
2486
2493
|
},
|
|
2487
2494
|
'editor.suggest.showMethods': {
|
|
2488
2495
|
type: 'boolean',
|
|
2489
2496
|
default: true,
|
|
2490
|
-
markdownDescription: nls.localize(
|
|
2497
|
+
markdownDescription: nls.localize(382, "When enabled IntelliSense shows `method`-suggestions.")
|
|
2491
2498
|
},
|
|
2492
2499
|
'editor.suggest.showFunctions': {
|
|
2493
2500
|
type: 'boolean',
|
|
2494
2501
|
default: true,
|
|
2495
|
-
markdownDescription: nls.localize(
|
|
2502
|
+
markdownDescription: nls.localize(383, "When enabled IntelliSense shows `function`-suggestions.")
|
|
2496
2503
|
},
|
|
2497
2504
|
'editor.suggest.showConstructors': {
|
|
2498
2505
|
type: 'boolean',
|
|
2499
2506
|
default: true,
|
|
2500
|
-
markdownDescription: nls.localize(
|
|
2507
|
+
markdownDescription: nls.localize(384, "When enabled IntelliSense shows `constructor`-suggestions.")
|
|
2501
2508
|
},
|
|
2502
2509
|
'editor.suggest.showDeprecated': {
|
|
2503
2510
|
type: 'boolean',
|
|
2504
2511
|
default: true,
|
|
2505
|
-
markdownDescription: nls.localize(
|
|
2512
|
+
markdownDescription: nls.localize(385, "When enabled IntelliSense shows `deprecated`-suggestions.")
|
|
2506
2513
|
},
|
|
2507
2514
|
'editor.suggest.matchOnWordStartOnly': {
|
|
2508
2515
|
type: 'boolean',
|
|
2509
2516
|
default: true,
|
|
2510
|
-
markdownDescription: nls.localize(
|
|
2517
|
+
markdownDescription: nls.localize(386, "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.")
|
|
2511
2518
|
},
|
|
2512
2519
|
'editor.suggest.showFields': {
|
|
2513
2520
|
type: 'boolean',
|
|
2514
2521
|
default: true,
|
|
2515
|
-
markdownDescription: nls.localize(
|
|
2522
|
+
markdownDescription: nls.localize(387, "When enabled IntelliSense shows `field`-suggestions.")
|
|
2516
2523
|
},
|
|
2517
2524
|
'editor.suggest.showVariables': {
|
|
2518
2525
|
type: 'boolean',
|
|
2519
2526
|
default: true,
|
|
2520
|
-
markdownDescription: nls.localize(
|
|
2527
|
+
markdownDescription: nls.localize(388, "When enabled IntelliSense shows `variable`-suggestions.")
|
|
2521
2528
|
},
|
|
2522
2529
|
'editor.suggest.showClasses': {
|
|
2523
2530
|
type: 'boolean',
|
|
2524
2531
|
default: true,
|
|
2525
|
-
markdownDescription: nls.localize(
|
|
2532
|
+
markdownDescription: nls.localize(389, "When enabled IntelliSense shows `class`-suggestions.")
|
|
2526
2533
|
},
|
|
2527
2534
|
'editor.suggest.showStructs': {
|
|
2528
2535
|
type: 'boolean',
|
|
2529
2536
|
default: true,
|
|
2530
|
-
markdownDescription: nls.localize(
|
|
2537
|
+
markdownDescription: nls.localize(390, "When enabled IntelliSense shows `struct`-suggestions.")
|
|
2531
2538
|
},
|
|
2532
2539
|
'editor.suggest.showInterfaces': {
|
|
2533
2540
|
type: 'boolean',
|
|
2534
2541
|
default: true,
|
|
2535
|
-
markdownDescription: nls.localize(
|
|
2542
|
+
markdownDescription: nls.localize(391, "When enabled IntelliSense shows `interface`-suggestions.")
|
|
2536
2543
|
},
|
|
2537
2544
|
'editor.suggest.showModules': {
|
|
2538
2545
|
type: 'boolean',
|
|
2539
2546
|
default: true,
|
|
2540
|
-
markdownDescription: nls.localize(
|
|
2547
|
+
markdownDescription: nls.localize(392, "When enabled IntelliSense shows `module`-suggestions.")
|
|
2541
2548
|
},
|
|
2542
2549
|
'editor.suggest.showProperties': {
|
|
2543
2550
|
type: 'boolean',
|
|
2544
2551
|
default: true,
|
|
2545
|
-
markdownDescription: nls.localize(
|
|
2552
|
+
markdownDescription: nls.localize(393, "When enabled IntelliSense shows `property`-suggestions.")
|
|
2546
2553
|
},
|
|
2547
2554
|
'editor.suggest.showEvents': {
|
|
2548
2555
|
type: 'boolean',
|
|
2549
2556
|
default: true,
|
|
2550
|
-
markdownDescription: nls.localize(
|
|
2557
|
+
markdownDescription: nls.localize(394, "When enabled IntelliSense shows `event`-suggestions.")
|
|
2551
2558
|
},
|
|
2552
2559
|
'editor.suggest.showOperators': {
|
|
2553
2560
|
type: 'boolean',
|
|
2554
2561
|
default: true,
|
|
2555
|
-
markdownDescription: nls.localize(
|
|
2562
|
+
markdownDescription: nls.localize(395, "When enabled IntelliSense shows `operator`-suggestions.")
|
|
2556
2563
|
},
|
|
2557
2564
|
'editor.suggest.showUnits': {
|
|
2558
2565
|
type: 'boolean',
|
|
2559
2566
|
default: true,
|
|
2560
|
-
markdownDescription: nls.localize(
|
|
2567
|
+
markdownDescription: nls.localize(396, "When enabled IntelliSense shows `unit`-suggestions.")
|
|
2561
2568
|
},
|
|
2562
2569
|
'editor.suggest.showValues': {
|
|
2563
2570
|
type: 'boolean',
|
|
2564
2571
|
default: true,
|
|
2565
|
-
markdownDescription: nls.localize(
|
|
2572
|
+
markdownDescription: nls.localize(397, "When enabled IntelliSense shows `value`-suggestions.")
|
|
2566
2573
|
},
|
|
2567
2574
|
'editor.suggest.showConstants': {
|
|
2568
2575
|
type: 'boolean',
|
|
2569
2576
|
default: true,
|
|
2570
|
-
markdownDescription: nls.localize(
|
|
2577
|
+
markdownDescription: nls.localize(398, "When enabled IntelliSense shows `constant`-suggestions.")
|
|
2571
2578
|
},
|
|
2572
2579
|
'editor.suggest.showEnums': {
|
|
2573
2580
|
type: 'boolean',
|
|
2574
2581
|
default: true,
|
|
2575
|
-
markdownDescription: nls.localize(
|
|
2582
|
+
markdownDescription: nls.localize(399, "When enabled IntelliSense shows `enum`-suggestions.")
|
|
2576
2583
|
},
|
|
2577
2584
|
'editor.suggest.showEnumMembers': {
|
|
2578
2585
|
type: 'boolean',
|
|
2579
2586
|
default: true,
|
|
2580
|
-
markdownDescription: nls.localize(
|
|
2587
|
+
markdownDescription: nls.localize(400, "When enabled IntelliSense shows `enumMember`-suggestions.")
|
|
2581
2588
|
},
|
|
2582
2589
|
'editor.suggest.showKeywords': {
|
|
2583
2590
|
type: 'boolean',
|
|
2584
2591
|
default: true,
|
|
2585
|
-
markdownDescription: nls.localize(
|
|
2592
|
+
markdownDescription: nls.localize(401, "When enabled IntelliSense shows `keyword`-suggestions.")
|
|
2586
2593
|
},
|
|
2587
2594
|
'editor.suggest.showWords': {
|
|
2588
2595
|
type: 'boolean',
|
|
2589
2596
|
default: true,
|
|
2590
|
-
markdownDescription: nls.localize(
|
|
2597
|
+
markdownDescription: nls.localize(402, "When enabled IntelliSense shows `text`-suggestions.")
|
|
2591
2598
|
},
|
|
2592
2599
|
'editor.suggest.showColors': {
|
|
2593
2600
|
type: 'boolean',
|
|
2594
2601
|
default: true,
|
|
2595
|
-
markdownDescription: nls.localize(
|
|
2602
|
+
markdownDescription: nls.localize(403, "When enabled IntelliSense shows `color`-suggestions.")
|
|
2596
2603
|
},
|
|
2597
2604
|
'editor.suggest.showFiles': {
|
|
2598
2605
|
type: 'boolean',
|
|
2599
2606
|
default: true,
|
|
2600
|
-
markdownDescription: nls.localize(
|
|
2607
|
+
markdownDescription: nls.localize(404, "When enabled IntelliSense shows `file`-suggestions.")
|
|
2601
2608
|
},
|
|
2602
2609
|
'editor.suggest.showReferences': {
|
|
2603
2610
|
type: 'boolean',
|
|
2604
2611
|
default: true,
|
|
2605
|
-
markdownDescription: nls.localize(
|
|
2612
|
+
markdownDescription: nls.localize(405, "When enabled IntelliSense shows `reference`-suggestions.")
|
|
2606
2613
|
},
|
|
2607
2614
|
'editor.suggest.showCustomcolors': {
|
|
2608
2615
|
type: 'boolean',
|
|
2609
2616
|
default: true,
|
|
2610
|
-
markdownDescription: nls.localize(
|
|
2617
|
+
markdownDescription: nls.localize(406, "When enabled IntelliSense shows `customcolor`-suggestions.")
|
|
2611
2618
|
},
|
|
2612
2619
|
'editor.suggest.showFolders': {
|
|
2613
2620
|
type: 'boolean',
|
|
2614
2621
|
default: true,
|
|
2615
|
-
markdownDescription: nls.localize(
|
|
2622
|
+
markdownDescription: nls.localize(407, "When enabled IntelliSense shows `folder`-suggestions.")
|
|
2616
2623
|
},
|
|
2617
2624
|
'editor.suggest.showTypeParameters': {
|
|
2618
2625
|
type: 'boolean',
|
|
2619
2626
|
default: true,
|
|
2620
|
-
markdownDescription: nls.localize(
|
|
2627
|
+
markdownDescription: nls.localize(408, "When enabled IntelliSense shows `typeParameter`-suggestions.")
|
|
2621
2628
|
},
|
|
2622
2629
|
'editor.suggest.showSnippets': {
|
|
2623
2630
|
type: 'boolean',
|
|
2624
2631
|
default: true,
|
|
2625
|
-
markdownDescription: nls.localize(
|
|
2632
|
+
markdownDescription: nls.localize(409, "When enabled IntelliSense shows `snippet`-suggestions.")
|
|
2626
2633
|
},
|
|
2627
2634
|
'editor.suggest.showUsers': {
|
|
2628
2635
|
type: 'boolean',
|
|
2629
2636
|
default: true,
|
|
2630
|
-
markdownDescription: nls.localize(
|
|
2637
|
+
markdownDescription: nls.localize(410, "When enabled IntelliSense shows `user`-suggestions.")
|
|
2631
2638
|
},
|
|
2632
2639
|
'editor.suggest.showIssues': {
|
|
2633
2640
|
type: 'boolean',
|
|
2634
2641
|
default: true,
|
|
2635
|
-
markdownDescription: nls.localize(
|
|
2642
|
+
markdownDescription: nls.localize(411, "When enabled IntelliSense shows `issues`-suggestions.")
|
|
2636
2643
|
}
|
|
2637
2644
|
});
|
|
2638
2645
|
}
|
|
@@ -2692,12 +2699,12 @@ class SmartSelect extends BaseEditorOption {
|
|
|
2692
2699
|
selectSubwords: true,
|
|
2693
2700
|
}, {
|
|
2694
2701
|
'editor.smartSelect.selectLeadingAndTrailingWhitespace': {
|
|
2695
|
-
description: nls.localize(
|
|
2702
|
+
description: nls.localize(412, "Whether leading and trailing whitespace should always be selected."),
|
|
2696
2703
|
default: true,
|
|
2697
2704
|
type: 'boolean'
|
|
2698
2705
|
},
|
|
2699
2706
|
'editor.smartSelect.selectSubwords': {
|
|
2700
|
-
description: nls.localize(
|
|
2707
|
+
description: nls.localize(413, "Whether subwords (like 'foo' in 'fooBar' or 'foo_bar') should be selected."),
|
|
2701
2708
|
default: true,
|
|
2702
2709
|
type: 'boolean'
|
|
2703
2710
|
}
|
|
@@ -2734,7 +2741,7 @@ class WordSegmenterLocales extends BaseEditorOption {
|
|
|
2734
2741
|
}
|
|
2735
2742
|
}
|
|
2736
2743
|
],
|
|
2737
|
-
description: nls.localize(
|
|
2744
|
+
description: nls.localize(414, "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.)."),
|
|
2738
2745
|
type: 'array',
|
|
2739
2746
|
items: {
|
|
2740
2747
|
type: 'string',
|
|
@@ -2772,12 +2779,12 @@ class WrappingIndentOption extends BaseEditorOption {
|
|
|
2772
2779
|
type: 'string',
|
|
2773
2780
|
enum: ['none', 'same', 'indent', 'deepIndent'],
|
|
2774
2781
|
enumDescriptions: [
|
|
2775
|
-
nls.localize(
|
|
2776
|
-
nls.localize(
|
|
2777
|
-
nls.localize(
|
|
2778
|
-
nls.localize(
|
|
2782
|
+
nls.localize(415, "No indentation. Wrapped lines begin at column 1."),
|
|
2783
|
+
nls.localize(416, "Wrapped lines get the same indentation as the parent."),
|
|
2784
|
+
nls.localize(417, "Wrapped lines get +1 indentation toward the parent."),
|
|
2785
|
+
nls.localize(418, "Wrapped lines get +2 indentation toward the parent."),
|
|
2779
2786
|
],
|
|
2780
|
-
description: nls.localize(
|
|
2787
|
+
description: nls.localize(419, "Controls the indentation of wrapped lines."),
|
|
2781
2788
|
default: 'same'
|
|
2782
2789
|
}
|
|
2783
2790
|
});
|
|
@@ -2822,18 +2829,18 @@ class EditorDropIntoEditor extends BaseEditorOption {
|
|
|
2822
2829
|
'editor.dropIntoEditor.enabled': {
|
|
2823
2830
|
type: 'boolean',
|
|
2824
2831
|
default: defaults.enabled,
|
|
2825
|
-
markdownDescription: nls.localize(
|
|
2832
|
+
markdownDescription: nls.localize(420, "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)."),
|
|
2826
2833
|
},
|
|
2827
2834
|
'editor.dropIntoEditor.showDropSelector': {
|
|
2828
2835
|
type: 'string',
|
|
2829
|
-
markdownDescription: nls.localize(
|
|
2836
|
+
markdownDescription: nls.localize(421, "Controls if a widget is shown when dropping files into the editor. This widget lets you control how the file is dropped."),
|
|
2830
2837
|
enum: [
|
|
2831
2838
|
'afterDrop',
|
|
2832
2839
|
'never'
|
|
2833
2840
|
],
|
|
2834
2841
|
enumDescriptions: [
|
|
2835
|
-
nls.localize(
|
|
2836
|
-
nls.localize(
|
|
2842
|
+
nls.localize(422, "Show the drop selector widget after a file is dropped into the editor."),
|
|
2843
|
+
nls.localize(423, "Never show the drop selector widget. Instead the default drop provider is always used."),
|
|
2837
2844
|
],
|
|
2838
2845
|
default: 'afterDrop',
|
|
2839
2846
|
},
|
|
@@ -2857,18 +2864,18 @@ class EditorPasteAs extends BaseEditorOption {
|
|
|
2857
2864
|
'editor.pasteAs.enabled': {
|
|
2858
2865
|
type: 'boolean',
|
|
2859
2866
|
default: defaults.enabled,
|
|
2860
|
-
markdownDescription: nls.localize(
|
|
2867
|
+
markdownDescription: nls.localize(424, "Controls whether you can paste content in different ways."),
|
|
2861
2868
|
},
|
|
2862
2869
|
'editor.pasteAs.showPasteSelector': {
|
|
2863
2870
|
type: 'string',
|
|
2864
|
-
markdownDescription: nls.localize(
|
|
2871
|
+
markdownDescription: nls.localize(425, "Controls if a widget is shown when pasting content in to the editor. This widget lets you control how the file is pasted."),
|
|
2865
2872
|
enum: [
|
|
2866
2873
|
'afterPaste',
|
|
2867
2874
|
'never'
|
|
2868
2875
|
],
|
|
2869
2876
|
enumDescriptions: [
|
|
2870
|
-
nls.localize(
|
|
2871
|
-
nls.localize(
|
|
2877
|
+
nls.localize(426, "Show the paste selector widget after content is pasted into the editor."),
|
|
2878
|
+
nls.localize(427, "Never show the paste selector widget. Instead the default pasting behavior is always used."),
|
|
2872
2879
|
],
|
|
2873
2880
|
default: 'afterPaste',
|
|
2874
2881
|
},
|
|
@@ -2908,236 +2915,236 @@ function register(option) {
|
|
|
2908
2915
|
return option;
|
|
2909
2916
|
}
|
|
2910
2917
|
export const EditorOptions = {
|
|
2911
|
-
acceptSuggestionOnCommitCharacter: register(new EditorBooleanOption(0 /* EditorOption.acceptSuggestionOnCommitCharacter */, 'acceptSuggestionOnCommitCharacter', true, { markdownDescription: nls.localize(
|
|
2918
|
+
acceptSuggestionOnCommitCharacter: register(new EditorBooleanOption(0 /* EditorOption.acceptSuggestionOnCommitCharacter */, 'acceptSuggestionOnCommitCharacter', true, { markdownDescription: nls.localize(428, "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.") })),
|
|
2912
2919
|
acceptSuggestionOnEnter: register(new EditorStringEnumOption(1 /* EditorOption.acceptSuggestionOnEnter */, 'acceptSuggestionOnEnter', 'on', ['on', 'smart', 'off'], {
|
|
2913
2920
|
markdownEnumDescriptions: [
|
|
2914
2921
|
'',
|
|
2915
|
-
nls.localize(
|
|
2922
|
+
nls.localize(429, "Only accept a suggestion with `Enter` when it makes a textual change."),
|
|
2916
2923
|
''
|
|
2917
2924
|
],
|
|
2918
|
-
markdownDescription: nls.localize(
|
|
2925
|
+
markdownDescription: nls.localize(430, "Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions.")
|
|
2919
2926
|
})),
|
|
2920
2927
|
accessibilitySupport: register(new EditorAccessibilitySupport()),
|
|
2921
2928
|
accessibilityPageSize: register(new EditorIntOption(3 /* EditorOption.accessibilityPageSize */, 'accessibilityPageSize', 500, 1, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, {
|
|
2922
|
-
description: nls.localize(
|
|
2929
|
+
description: nls.localize(431, "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."),
|
|
2923
2930
|
tags: ['accessibility']
|
|
2924
2931
|
})),
|
|
2925
2932
|
allowOverflow: register(new EditorBooleanOption(4 /* EditorOption.allowOverflow */, 'allowOverflow', true)),
|
|
2926
2933
|
allowVariableLineHeights: register(new EditorBooleanOption(5 /* EditorOption.allowVariableLineHeights */, 'allowVariableLineHeights', true, {
|
|
2927
|
-
description: nls.localize(
|
|
2934
|
+
description: nls.localize(432, "Controls whether to allow using variable line heights in the editor.")
|
|
2928
2935
|
})),
|
|
2929
2936
|
allowVariableFonts: register(new EditorBooleanOption(6 /* EditorOption.allowVariableFonts */, 'allowVariableFonts', true, {
|
|
2930
|
-
description: nls.localize(
|
|
2937
|
+
description: nls.localize(433, "Controls whether to allow using variable fonts in the editor.")
|
|
2931
2938
|
})),
|
|
2932
2939
|
allowVariableFontsInAccessibilityMode: register(new EditorBooleanOption(7 /* EditorOption.allowVariableFontsInAccessibilityMode */, 'allowVariableFontsInAccessibilityMode', false, {
|
|
2933
|
-
description: nls.localize(
|
|
2940
|
+
description: nls.localize(434, "Controls whether to allow using variable fonts in the editor in the accessibility mode."),
|
|
2934
2941
|
tags: ['accessibility']
|
|
2935
2942
|
})),
|
|
2936
|
-
ariaLabel: register(new EditorStringOption(8 /* EditorOption.ariaLabel */, 'ariaLabel', nls.localize(
|
|
2943
|
+
ariaLabel: register(new EditorStringOption(8 /* EditorOption.ariaLabel */, 'ariaLabel', nls.localize(435, "Editor content"))),
|
|
2937
2944
|
ariaRequired: register(new EditorBooleanOption(9 /* EditorOption.ariaRequired */, 'ariaRequired', false, undefined)),
|
|
2938
2945
|
screenReaderAnnounceInlineSuggestion: register(new EditorBooleanOption(12 /* EditorOption.screenReaderAnnounceInlineSuggestion */, 'screenReaderAnnounceInlineSuggestion', true, {
|
|
2939
|
-
description: nls.localize(
|
|
2946
|
+
description: nls.localize(436, "Control whether inline suggestions are announced by a screen reader."),
|
|
2940
2947
|
tags: ['accessibility']
|
|
2941
2948
|
})),
|
|
2942
2949
|
autoClosingBrackets: register(new EditorStringEnumOption(10 /* EditorOption.autoClosingBrackets */, 'autoClosingBrackets', 'languageDefined', ['always', 'languageDefined', 'beforeWhitespace', 'never'], {
|
|
2943
2950
|
enumDescriptions: [
|
|
2944
2951
|
'',
|
|
2945
|
-
nls.localize(
|
|
2946
|
-
nls.localize(
|
|
2952
|
+
nls.localize(437, "Use language configurations to determine when to autoclose brackets."),
|
|
2953
|
+
nls.localize(438, "Autoclose brackets only when the cursor is to the left of whitespace."),
|
|
2947
2954
|
'',
|
|
2948
2955
|
],
|
|
2949
|
-
description: nls.localize(
|
|
2956
|
+
description: nls.localize(439, "Controls whether the editor should automatically close brackets after the user adds an opening bracket.")
|
|
2950
2957
|
})),
|
|
2951
2958
|
autoClosingComments: register(new EditorStringEnumOption(11 /* EditorOption.autoClosingComments */, 'autoClosingComments', 'languageDefined', ['always', 'languageDefined', 'beforeWhitespace', 'never'], {
|
|
2952
2959
|
enumDescriptions: [
|
|
2953
2960
|
'',
|
|
2954
|
-
nls.localize(
|
|
2955
|
-
nls.localize(
|
|
2961
|
+
nls.localize(440, "Use language configurations to determine when to autoclose comments."),
|
|
2962
|
+
nls.localize(441, "Autoclose comments only when the cursor is to the left of whitespace."),
|
|
2956
2963
|
'',
|
|
2957
2964
|
],
|
|
2958
|
-
description: nls.localize(
|
|
2965
|
+
description: nls.localize(442, "Controls whether the editor should automatically close comments after the user adds an opening comment.")
|
|
2959
2966
|
})),
|
|
2960
2967
|
autoClosingDelete: register(new EditorStringEnumOption(13 /* EditorOption.autoClosingDelete */, 'autoClosingDelete', 'auto', ['always', 'auto', 'never'], {
|
|
2961
2968
|
enumDescriptions: [
|
|
2962
2969
|
'',
|
|
2963
|
-
nls.localize(
|
|
2970
|
+
nls.localize(443, "Remove adjacent closing quotes or brackets only if they were automatically inserted."),
|
|
2964
2971
|
'',
|
|
2965
2972
|
],
|
|
2966
|
-
description: nls.localize(
|
|
2973
|
+
description: nls.localize(444, "Controls whether the editor should remove adjacent closing quotes or brackets when deleting.")
|
|
2967
2974
|
})),
|
|
2968
2975
|
autoClosingOvertype: register(new EditorStringEnumOption(14 /* EditorOption.autoClosingOvertype */, 'autoClosingOvertype', 'auto', ['always', 'auto', 'never'], {
|
|
2969
2976
|
enumDescriptions: [
|
|
2970
2977
|
'',
|
|
2971
|
-
nls.localize(
|
|
2978
|
+
nls.localize(445, "Type over closing quotes or brackets only if they were automatically inserted."),
|
|
2972
2979
|
'',
|
|
2973
2980
|
],
|
|
2974
|
-
description: nls.localize(
|
|
2981
|
+
description: nls.localize(446, "Controls whether the editor should type over closing quotes or brackets.")
|
|
2975
2982
|
})),
|
|
2976
2983
|
autoClosingQuotes: register(new EditorStringEnumOption(15 /* EditorOption.autoClosingQuotes */, 'autoClosingQuotes', 'languageDefined', ['always', 'languageDefined', 'beforeWhitespace', 'never'], {
|
|
2977
2984
|
enumDescriptions: [
|
|
2978
2985
|
'',
|
|
2979
|
-
nls.localize(
|
|
2980
|
-
nls.localize(
|
|
2986
|
+
nls.localize(447, "Use language configurations to determine when to autoclose quotes."),
|
|
2987
|
+
nls.localize(448, "Autoclose quotes only when the cursor is to the left of whitespace."),
|
|
2981
2988
|
'',
|
|
2982
2989
|
],
|
|
2983
|
-
description: nls.localize(
|
|
2990
|
+
description: nls.localize(449, "Controls whether the editor should automatically close quotes after the user adds an opening quote.")
|
|
2984
2991
|
})),
|
|
2985
2992
|
autoIndent: register(new EditorEnumOption(16 /* EditorOption.autoIndent */, 'autoIndent', 4 /* EditorAutoIndentStrategy.Full */, 'full', ['none', 'keep', 'brackets', 'advanced', 'full'], _autoIndentFromString, {
|
|
2986
2993
|
enumDescriptions: [
|
|
2987
|
-
nls.localize(
|
|
2988
|
-
nls.localize(
|
|
2989
|
-
nls.localize(
|
|
2990
|
-
nls.localize(
|
|
2991
|
-
nls.localize(
|
|
2994
|
+
nls.localize(450, "The editor will not insert indentation automatically."),
|
|
2995
|
+
nls.localize(451, "The editor will keep the current line's indentation."),
|
|
2996
|
+
nls.localize(452, "The editor will keep the current line's indentation and honor language defined brackets."),
|
|
2997
|
+
nls.localize(453, "The editor will keep the current line's indentation, honor language defined brackets and invoke special onEnterRules defined by languages."),
|
|
2998
|
+
nls.localize(454, "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."),
|
|
2992
2999
|
],
|
|
2993
|
-
description: nls.localize(
|
|
3000
|
+
description: nls.localize(455, "Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines.")
|
|
2994
3001
|
})),
|
|
2995
|
-
autoIndentOnPaste: register(new EditorBooleanOption(17 /* EditorOption.autoIndentOnPaste */, 'autoIndentOnPaste', false, { description: nls.localize(
|
|
2996
|
-
autoIndentOnPasteWithinString: register(new EditorBooleanOption(18 /* EditorOption.autoIndentOnPasteWithinString */, 'autoIndentOnPasteWithinString', true, { description: nls.localize(
|
|
3002
|
+
autoIndentOnPaste: register(new EditorBooleanOption(17 /* EditorOption.autoIndentOnPaste */, 'autoIndentOnPaste', false, { description: nls.localize(456, "Controls whether the editor should automatically auto-indent the pasted content.") })),
|
|
3003
|
+
autoIndentOnPasteWithinString: register(new EditorBooleanOption(18 /* EditorOption.autoIndentOnPasteWithinString */, 'autoIndentOnPasteWithinString', true, { description: nls.localize(457, "Controls whether the editor should automatically auto-indent the pasted content when pasted within a string. This takes effect when autoIndentOnPaste is true.") })),
|
|
2997
3004
|
automaticLayout: register(new EditorBooleanOption(19 /* EditorOption.automaticLayout */, 'automaticLayout', false)),
|
|
2998
3005
|
autoSurround: register(new EditorStringEnumOption(20 /* EditorOption.autoSurround */, 'autoSurround', 'languageDefined', ['languageDefined', 'quotes', 'brackets', 'never'], {
|
|
2999
3006
|
enumDescriptions: [
|
|
3000
|
-
nls.localize(
|
|
3001
|
-
nls.localize(
|
|
3002
|
-
nls.localize(
|
|
3007
|
+
nls.localize(458, "Use language configurations to determine when to automatically surround selections."),
|
|
3008
|
+
nls.localize(459, "Surround with quotes but not brackets."),
|
|
3009
|
+
nls.localize(460, "Surround with brackets but not quotes."),
|
|
3003
3010
|
''
|
|
3004
3011
|
],
|
|
3005
|
-
description: nls.localize(
|
|
3012
|
+
description: nls.localize(461, "Controls whether the editor should automatically surround selections when typing quotes or brackets.")
|
|
3006
3013
|
})),
|
|
3007
3014
|
bracketPairColorization: register(new BracketPairColorization()),
|
|
3008
3015
|
bracketPairGuides: register(new GuideOptions()),
|
|
3009
|
-
stickyTabStops: register(new EditorBooleanOption(132 /* EditorOption.stickyTabStops */, 'stickyTabStops', false, { description: nls.localize(
|
|
3010
|
-
codeLens: register(new EditorBooleanOption(23 /* EditorOption.codeLens */, 'codeLens', true, { description: nls.localize(
|
|
3011
|
-
codeLensFontFamily: register(new EditorStringOption(24 /* EditorOption.codeLensFontFamily */, 'codeLensFontFamily', '', { description: nls.localize(
|
|
3016
|
+
stickyTabStops: register(new EditorBooleanOption(132 /* EditorOption.stickyTabStops */, 'stickyTabStops', false, { description: nls.localize(462, "Emulate selection behavior of tab characters when using spaces for indentation. Selection will stick to tab stops.") })),
|
|
3017
|
+
codeLens: register(new EditorBooleanOption(23 /* EditorOption.codeLens */, 'codeLens', true, { description: nls.localize(463, "Controls whether the editor shows CodeLens.") })),
|
|
3018
|
+
codeLensFontFamily: register(new EditorStringOption(24 /* EditorOption.codeLensFontFamily */, 'codeLensFontFamily', '', { description: nls.localize(464, "Controls the font family for CodeLens.") })),
|
|
3012
3019
|
codeLensFontSize: register(new EditorIntOption(25 /* EditorOption.codeLensFontSize */, 'codeLensFontSize', 0, 0, 100, {
|
|
3013
3020
|
type: 'number',
|
|
3014
3021
|
default: 0,
|
|
3015
3022
|
minimum: 0,
|
|
3016
3023
|
maximum: 100,
|
|
3017
|
-
markdownDescription: nls.localize(
|
|
3024
|
+
markdownDescription: nls.localize(465, "Controls the font size in pixels for CodeLens. When set to 0, 90% of `#editor.fontSize#` is used.")
|
|
3018
3025
|
})),
|
|
3019
|
-
colorDecorators: register(new EditorBooleanOption(26 /* EditorOption.colorDecorators */, 'colorDecorators', true, { description: nls.localize(
|
|
3026
|
+
colorDecorators: register(new EditorBooleanOption(26 /* EditorOption.colorDecorators */, 'colorDecorators', true, { description: nls.localize(466, "Controls whether the editor should render the inline color decorators and color picker.") })),
|
|
3020
3027
|
colorDecoratorActivatedOn: register(new EditorStringEnumOption(168 /* EditorOption.colorDecoratorsActivatedOn */, 'colorDecoratorsActivatedOn', 'clickAndHover', ['clickAndHover', 'hover', 'click'], {
|
|
3021
3028
|
enumDescriptions: [
|
|
3022
|
-
nls.localize(
|
|
3023
|
-
nls.localize(
|
|
3024
|
-
nls.localize(
|
|
3029
|
+
nls.localize(467, "Make the color picker appear both on click and hover of the color decorator"),
|
|
3030
|
+
nls.localize(468, "Make the color picker appear on hover of the color decorator"),
|
|
3031
|
+
nls.localize(469, "Make the color picker appear on click of the color decorator")
|
|
3025
3032
|
],
|
|
3026
|
-
description: nls.localize(
|
|
3033
|
+
description: nls.localize(470, "Controls the condition to make a color picker appear from a color decorator.")
|
|
3027
3034
|
})),
|
|
3028
3035
|
colorDecoratorsLimit: register(new EditorIntOption(27 /* EditorOption.colorDecoratorsLimit */, 'colorDecoratorsLimit', 500, 1, 1000000, {
|
|
3029
|
-
markdownDescription: nls.localize(
|
|
3036
|
+
markdownDescription: nls.localize(471, "Controls the max number of color decorators that can be rendered in an editor at once.")
|
|
3030
3037
|
})),
|
|
3031
|
-
columnSelection: register(new EditorBooleanOption(28 /* EditorOption.columnSelection */, 'columnSelection', false, { description: nls.localize(
|
|
3038
|
+
columnSelection: register(new EditorBooleanOption(28 /* EditorOption.columnSelection */, 'columnSelection', false, { description: nls.localize(472, "Enable that the selection with the mouse and keys is doing column selection.") })),
|
|
3032
3039
|
comments: register(new EditorComments()),
|
|
3033
3040
|
contextmenu: register(new EditorBooleanOption(30 /* EditorOption.contextmenu */, 'contextmenu', true)),
|
|
3034
|
-
copyWithSyntaxHighlighting: register(new EditorBooleanOption(31 /* EditorOption.copyWithSyntaxHighlighting */, 'copyWithSyntaxHighlighting', true, { description: nls.localize(
|
|
3035
|
-
cursorBlinking: register(new EditorEnumOption(32 /* EditorOption.cursorBlinking */, 'cursorBlinking', 1 /* TextEditorCursorBlinkingStyle.Blink */, 'blink', ['blink', 'smooth', 'phase', 'expand', 'solid'], cursorBlinkingStyleFromString, { description: nls.localize(
|
|
3041
|
+
copyWithSyntaxHighlighting: register(new EditorBooleanOption(31 /* EditorOption.copyWithSyntaxHighlighting */, 'copyWithSyntaxHighlighting', true, { description: nls.localize(473, "Controls whether syntax highlighting should be copied into the clipboard.") })),
|
|
3042
|
+
cursorBlinking: register(new EditorEnumOption(32 /* EditorOption.cursorBlinking */, 'cursorBlinking', 1 /* TextEditorCursorBlinkingStyle.Blink */, 'blink', ['blink', 'smooth', 'phase', 'expand', 'solid'], cursorBlinkingStyleFromString, { description: nls.localize(474, "Control the cursor animation style.") })),
|
|
3036
3043
|
cursorSmoothCaretAnimation: register(new EditorStringEnumOption(33 /* EditorOption.cursorSmoothCaretAnimation */, 'cursorSmoothCaretAnimation', 'off', ['off', 'explicit', 'on'], {
|
|
3037
3044
|
enumDescriptions: [
|
|
3038
|
-
nls.localize(
|
|
3039
|
-
nls.localize(
|
|
3040
|
-
nls.localize(
|
|
3045
|
+
nls.localize(475, "Smooth caret animation is disabled."),
|
|
3046
|
+
nls.localize(476, "Smooth caret animation is enabled only when the user moves the cursor with an explicit gesture."),
|
|
3047
|
+
nls.localize(477, "Smooth caret animation is always enabled.")
|
|
3041
3048
|
],
|
|
3042
|
-
description: nls.localize(
|
|
3049
|
+
description: nls.localize(478, "Controls whether the smooth caret animation should be enabled.")
|
|
3043
3050
|
})),
|
|
3044
|
-
cursorStyle: register(new EditorEnumOption(34 /* EditorOption.cursorStyle */, 'cursorStyle', TextEditorCursorStyle.Line, 'line', ['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'], cursorStyleFromString, { description: nls.localize(
|
|
3045
|
-
overtypeCursorStyle: register(new EditorEnumOption(92 /* EditorOption.overtypeCursorStyle */, 'overtypeCursorStyle', TextEditorCursorStyle.Block, 'block', ['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'], cursorStyleFromString, { description: nls.localize(
|
|
3046
|
-
cursorSurroundingLines: register(new EditorIntOption(35 /* EditorOption.cursorSurroundingLines */, 'cursorSurroundingLines', 0, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { description: nls.localize(
|
|
3051
|
+
cursorStyle: register(new EditorEnumOption(34 /* EditorOption.cursorStyle */, 'cursorStyle', TextEditorCursorStyle.Line, 'line', ['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'], cursorStyleFromString, { description: nls.localize(479, "Controls the cursor style in insert input mode.") })),
|
|
3052
|
+
overtypeCursorStyle: register(new EditorEnumOption(92 /* EditorOption.overtypeCursorStyle */, 'overtypeCursorStyle', TextEditorCursorStyle.Block, 'block', ['line', 'block', 'underline', 'line-thin', 'block-outline', 'underline-thin'], cursorStyleFromString, { description: nls.localize(480, "Controls the cursor style in overtype input mode.") })),
|
|
3053
|
+
cursorSurroundingLines: register(new EditorIntOption(35 /* EditorOption.cursorSurroundingLines */, 'cursorSurroundingLines', 0, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { description: nls.localize(481, "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.") })),
|
|
3047
3054
|
cursorSurroundingLinesStyle: register(new EditorStringEnumOption(36 /* EditorOption.cursorSurroundingLinesStyle */, 'cursorSurroundingLinesStyle', 'default', ['default', 'all'], {
|
|
3048
3055
|
enumDescriptions: [
|
|
3049
|
-
nls.localize(
|
|
3050
|
-
nls.localize(
|
|
3056
|
+
nls.localize(482, "`cursorSurroundingLines` is enforced only when triggered via the keyboard or API."),
|
|
3057
|
+
nls.localize(483, "`cursorSurroundingLines` is enforced always.")
|
|
3051
3058
|
],
|
|
3052
|
-
markdownDescription: nls.localize(
|
|
3059
|
+
markdownDescription: nls.localize(484, "Controls when `#editor.cursorSurroundingLines#` should be enforced.")
|
|
3053
3060
|
})),
|
|
3054
|
-
cursorWidth: register(new EditorIntOption(37 /* EditorOption.cursorWidth */, 'cursorWidth', 0, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { markdownDescription: nls.localize(
|
|
3055
|
-
cursorHeight: register(new EditorIntOption(38 /* EditorOption.cursorHeight */, 'cursorHeight', 0, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { markdownDescription: nls.localize(
|
|
3061
|
+
cursorWidth: register(new EditorIntOption(37 /* EditorOption.cursorWidth */, 'cursorWidth', 0, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { markdownDescription: nls.localize(485, "Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`.") })),
|
|
3062
|
+
cursorHeight: register(new EditorIntOption(38 /* EditorOption.cursorHeight */, 'cursorHeight', 0, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { markdownDescription: nls.localize(486, "Controls the height of the cursor when `#editor.cursorStyle#` is set to `line`. Cursor's max height depends on line height.") })),
|
|
3056
3063
|
disableLayerHinting: register(new EditorBooleanOption(39 /* EditorOption.disableLayerHinting */, 'disableLayerHinting', false)),
|
|
3057
3064
|
disableMonospaceOptimizations: register(new EditorBooleanOption(40 /* EditorOption.disableMonospaceOptimizations */, 'disableMonospaceOptimizations', false)),
|
|
3058
3065
|
domReadOnly: register(new EditorBooleanOption(41 /* EditorOption.domReadOnly */, 'domReadOnly', false)),
|
|
3059
|
-
dragAndDrop: register(new EditorBooleanOption(42 /* EditorOption.dragAndDrop */, 'dragAndDrop', true, { description: nls.localize(
|
|
3066
|
+
dragAndDrop: register(new EditorBooleanOption(42 /* EditorOption.dragAndDrop */, 'dragAndDrop', true, { description: nls.localize(487, "Controls whether the editor should allow moving selections via drag and drop.") })),
|
|
3060
3067
|
emptySelectionClipboard: register(new EditorEmptySelectionClipboard()),
|
|
3061
3068
|
dropIntoEditor: register(new EditorDropIntoEditor()),
|
|
3062
3069
|
editContext: register(new EditorBooleanOption(44 /* EditorOption.editContext */, 'editContext', true, {
|
|
3063
|
-
description: nls.localize(
|
|
3070
|
+
description: nls.localize(488, "Sets whether the EditContext API should be used instead of the text area to power input in the editor."),
|
|
3064
3071
|
included: platform.isChrome || platform.isEdge || platform.isNative
|
|
3065
3072
|
})),
|
|
3066
3073
|
renderRichScreenReaderContent: register(new EditorBooleanOption(107 /* EditorOption.renderRichScreenReaderContent */, 'renderRichScreenReaderContent', false, {
|
|
3067
|
-
markdownDescription: nls.localize(
|
|
3074
|
+
markdownDescription: nls.localize(489, "Whether to render rich screen reader content when the `#editor.editContext#` setting is enabled."),
|
|
3068
3075
|
})),
|
|
3069
3076
|
stickyScroll: register(new EditorStickyScroll()),
|
|
3070
3077
|
experimentalGpuAcceleration: register(new EditorStringEnumOption(46 /* EditorOption.experimentalGpuAcceleration */, 'experimentalGpuAcceleration', 'off', ['off', 'on'], {
|
|
3071
3078
|
tags: ['experimental'],
|
|
3072
3079
|
enumDescriptions: [
|
|
3073
|
-
nls.localize(
|
|
3074
|
-
nls.localize(
|
|
3080
|
+
nls.localize(490, "Use regular DOM-based rendering."),
|
|
3081
|
+
nls.localize(491, "Use GPU acceleration."),
|
|
3075
3082
|
],
|
|
3076
|
-
description: nls.localize(
|
|
3083
|
+
description: nls.localize(492, "Controls whether to use the experimental GPU acceleration to render the editor.")
|
|
3077
3084
|
})),
|
|
3078
3085
|
experimentalWhitespaceRendering: register(new EditorStringEnumOption(47 /* EditorOption.experimentalWhitespaceRendering */, 'experimentalWhitespaceRendering', 'svg', ['svg', 'font', 'off'], {
|
|
3079
3086
|
enumDescriptions: [
|
|
3080
|
-
nls.localize(
|
|
3081
|
-
nls.localize(
|
|
3082
|
-
nls.localize(
|
|
3087
|
+
nls.localize(493, "Use a new rendering method with svgs."),
|
|
3088
|
+
nls.localize(494, "Use a new rendering method with font characters."),
|
|
3089
|
+
nls.localize(495, "Use the stable rendering method."),
|
|
3083
3090
|
],
|
|
3084
|
-
description: nls.localize(
|
|
3091
|
+
description: nls.localize(496, "Controls whether whitespace is rendered with a new, experimental method.")
|
|
3085
3092
|
})),
|
|
3086
3093
|
extraEditorClassName: register(new EditorStringOption(48 /* EditorOption.extraEditorClassName */, 'extraEditorClassName', '')),
|
|
3087
|
-
fastScrollSensitivity: register(new EditorFloatOption(49 /* EditorOption.fastScrollSensitivity */, 'fastScrollSensitivity', 5, x => (x <= 0 ? 5 : x), { markdownDescription: nls.localize(
|
|
3094
|
+
fastScrollSensitivity: register(new EditorFloatOption(49 /* EditorOption.fastScrollSensitivity */, 'fastScrollSensitivity', 5, x => (x <= 0 ? 5 : x), { markdownDescription: nls.localize(497, "Scrolling speed multiplier when pressing `Alt`.") })),
|
|
3088
3095
|
find: register(new EditorFind()),
|
|
3089
3096
|
fixedOverflowWidgets: register(new EditorBooleanOption(51 /* EditorOption.fixedOverflowWidgets */, 'fixedOverflowWidgets', false)),
|
|
3090
|
-
folding: register(new EditorBooleanOption(52 /* EditorOption.folding */, 'folding', true, { description: nls.localize(
|
|
3097
|
+
folding: register(new EditorBooleanOption(52 /* EditorOption.folding */, 'folding', true, { description: nls.localize(498, "Controls whether the editor has code folding enabled.") })),
|
|
3091
3098
|
foldingStrategy: register(new EditorStringEnumOption(53 /* EditorOption.foldingStrategy */, 'foldingStrategy', 'auto', ['auto', 'indentation'], {
|
|
3092
3099
|
enumDescriptions: [
|
|
3093
|
-
nls.localize(
|
|
3094
|
-
nls.localize(
|
|
3100
|
+
nls.localize(499, "Use a language-specific folding strategy if available, else the indentation-based one."),
|
|
3101
|
+
nls.localize(500, "Use the indentation-based folding strategy."),
|
|
3095
3102
|
],
|
|
3096
|
-
description: nls.localize(
|
|
3103
|
+
description: nls.localize(501, "Controls the strategy for computing folding ranges.")
|
|
3097
3104
|
})),
|
|
3098
|
-
foldingHighlight: register(new EditorBooleanOption(54 /* EditorOption.foldingHighlight */, 'foldingHighlight', true, { description: nls.localize(
|
|
3099
|
-
foldingImportsByDefault: register(new EditorBooleanOption(55 /* EditorOption.foldingImportsByDefault */, 'foldingImportsByDefault', false, { description: nls.localize(
|
|
3105
|
+
foldingHighlight: register(new EditorBooleanOption(54 /* EditorOption.foldingHighlight */, 'foldingHighlight', true, { description: nls.localize(502, "Controls whether the editor should highlight folded ranges.") })),
|
|
3106
|
+
foldingImportsByDefault: register(new EditorBooleanOption(55 /* EditorOption.foldingImportsByDefault */, 'foldingImportsByDefault', false, { description: nls.localize(503, "Controls whether the editor automatically collapses import ranges.") })),
|
|
3100
3107
|
foldingMaximumRegions: register(new EditorIntOption(56 /* EditorOption.foldingMaximumRegions */, 'foldingMaximumRegions', 5000, 10, 65000, // limit must be less than foldingRanges MAX_FOLDING_REGIONS
|
|
3101
|
-
{ description: nls.localize(
|
|
3102
|
-
unfoldOnClickAfterEndOfLine: register(new EditorBooleanOption(57 /* EditorOption.unfoldOnClickAfterEndOfLine */, 'unfoldOnClickAfterEndOfLine', false, { description: nls.localize(
|
|
3103
|
-
fontFamily: register(new EditorStringOption(58 /* EditorOption.fontFamily */, 'fontFamily', EDITOR_FONT_DEFAULTS.fontFamily, { description: nls.localize(
|
|
3108
|
+
{ description: nls.localize(504, "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.") })),
|
|
3109
|
+
unfoldOnClickAfterEndOfLine: register(new EditorBooleanOption(57 /* EditorOption.unfoldOnClickAfterEndOfLine */, 'unfoldOnClickAfterEndOfLine', false, { description: nls.localize(505, "Controls whether clicking on the empty content after a folded line will unfold the line.") })),
|
|
3110
|
+
fontFamily: register(new EditorStringOption(58 /* EditorOption.fontFamily */, 'fontFamily', EDITOR_FONT_DEFAULTS.fontFamily, { description: nls.localize(506, "Controls the font family.") })),
|
|
3104
3111
|
fontInfo: register(new EditorFontInfo()),
|
|
3105
3112
|
fontLigatures2: register(new EditorFontLigatures()),
|
|
3106
3113
|
fontSize: register(new EditorFontSize()),
|
|
3107
3114
|
fontWeight: register(new EditorFontWeight()),
|
|
3108
3115
|
fontVariations: register(new EditorFontVariations()),
|
|
3109
|
-
formatOnPaste: register(new EditorBooleanOption(64 /* EditorOption.formatOnPaste */, 'formatOnPaste', false, { description: nls.localize(
|
|
3110
|
-
formatOnType: register(new EditorBooleanOption(65 /* EditorOption.formatOnType */, 'formatOnType', false, { description: nls.localize(
|
|
3111
|
-
glyphMargin: register(new EditorBooleanOption(66 /* EditorOption.glyphMargin */, 'glyphMargin', true, { description: nls.localize(
|
|
3116
|
+
formatOnPaste: register(new EditorBooleanOption(64 /* EditorOption.formatOnPaste */, 'formatOnPaste', false, { description: nls.localize(507, "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.") })),
|
|
3117
|
+
formatOnType: register(new EditorBooleanOption(65 /* EditorOption.formatOnType */, 'formatOnType', false, { description: nls.localize(508, "Controls whether the editor should automatically format the line after typing.") })),
|
|
3118
|
+
glyphMargin: register(new EditorBooleanOption(66 /* EditorOption.glyphMargin */, 'glyphMargin', true, { description: nls.localize(509, "Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging.") })),
|
|
3112
3119
|
gotoLocation: register(new EditorGoToLocation()),
|
|
3113
|
-
hideCursorInOverviewRuler: register(new EditorBooleanOption(68 /* EditorOption.hideCursorInOverviewRuler */, 'hideCursorInOverviewRuler', false, { description: nls.localize(
|
|
3120
|
+
hideCursorInOverviewRuler: register(new EditorBooleanOption(68 /* EditorOption.hideCursorInOverviewRuler */, 'hideCursorInOverviewRuler', false, { description: nls.localize(510, "Controls whether the cursor should be hidden in the overview ruler.") })),
|
|
3114
3121
|
hover: register(new EditorHover()),
|
|
3115
3122
|
inDiffEditor: register(new EditorBooleanOption(70 /* EditorOption.inDiffEditor */, 'inDiffEditor', false)),
|
|
3116
|
-
inertialScroll: register(new EditorBooleanOption(158 /* EditorOption.inertialScroll */, 'inertialScroll', false, { description: nls.localize(
|
|
3117
|
-
letterSpacing: register(new EditorFloatOption(72 /* EditorOption.letterSpacing */, 'letterSpacing', EDITOR_FONT_DEFAULTS.letterSpacing, x => EditorFloatOption.clamp(x, -5, 20), { description: nls.localize(
|
|
3123
|
+
inertialScroll: register(new EditorBooleanOption(158 /* EditorOption.inertialScroll */, 'inertialScroll', false, { description: nls.localize(511, "Make scrolling inertial - mostly useful with touchpad on linux.") })),
|
|
3124
|
+
letterSpacing: register(new EditorFloatOption(72 /* EditorOption.letterSpacing */, 'letterSpacing', EDITOR_FONT_DEFAULTS.letterSpacing, x => EditorFloatOption.clamp(x, -5, 20), { description: nls.localize(512, "Controls the letter spacing in pixels.") })),
|
|
3118
3125
|
lightbulb: register(new EditorLightbulb()),
|
|
3119
3126
|
lineDecorationsWidth: register(new EditorLineDecorationsWidth()),
|
|
3120
3127
|
lineHeight: register(new EditorLineHeight()),
|
|
3121
3128
|
lineNumbers: register(new EditorRenderLineNumbersOption()),
|
|
3122
3129
|
lineNumbersMinChars: register(new EditorIntOption(77 /* EditorOption.lineNumbersMinChars */, 'lineNumbersMinChars', 5, 1, 300)),
|
|
3123
|
-
linkedEditing: register(new EditorBooleanOption(78 /* EditorOption.linkedEditing */, 'linkedEditing', false, { description: nls.localize(
|
|
3124
|
-
links: register(new EditorBooleanOption(79 /* EditorOption.links */, 'links', true, { description: nls.localize(
|
|
3125
|
-
matchBrackets: register(new EditorStringEnumOption(80 /* EditorOption.matchBrackets */, 'matchBrackets', 'always', ['always', 'near', 'never'], { description: nls.localize(
|
|
3130
|
+
linkedEditing: register(new EditorBooleanOption(78 /* EditorOption.linkedEditing */, 'linkedEditing', false, { description: nls.localize(513, "Controls whether the editor has linked editing enabled. Depending on the language, related symbols such as HTML tags, are updated while editing.") })),
|
|
3131
|
+
links: register(new EditorBooleanOption(79 /* EditorOption.links */, 'links', true, { description: nls.localize(514, "Controls whether the editor should detect links and make them clickable.") })),
|
|
3132
|
+
matchBrackets: register(new EditorStringEnumOption(80 /* EditorOption.matchBrackets */, 'matchBrackets', 'always', ['always', 'near', 'never'], { description: nls.localize(515, "Highlight matching brackets.") })),
|
|
3126
3133
|
minimap: register(new EditorMinimap()),
|
|
3127
3134
|
mouseStyle: register(new EditorStringEnumOption(82 /* EditorOption.mouseStyle */, 'mouseStyle', 'text', ['text', 'default', 'copy'])),
|
|
3128
|
-
mouseWheelScrollSensitivity: register(new EditorFloatOption(83 /* EditorOption.mouseWheelScrollSensitivity */, 'mouseWheelScrollSensitivity', 1, x => (x === 0 ? 1 : x), { markdownDescription: nls.localize(
|
|
3135
|
+
mouseWheelScrollSensitivity: register(new EditorFloatOption(83 /* EditorOption.mouseWheelScrollSensitivity */, 'mouseWheelScrollSensitivity', 1, x => (x === 0 ? 1 : x), { markdownDescription: nls.localize(516, "A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events.") })),
|
|
3129
3136
|
mouseWheelZoom: register(new EditorBooleanOption(84 /* EditorOption.mouseWheelZoom */, 'mouseWheelZoom', false, {
|
|
3130
3137
|
markdownDescription: platform.isMacintosh
|
|
3131
|
-
? nls.localize(
|
|
3132
|
-
: nls.localize(
|
|
3138
|
+
? nls.localize(517, "Zoom the font of the editor when using mouse wheel and holding `Cmd`.")
|
|
3139
|
+
: nls.localize(518, "Zoom the font of the editor when using mouse wheel and holding `Ctrl`.")
|
|
3133
3140
|
})),
|
|
3134
|
-
multiCursorMergeOverlapping: register(new EditorBooleanOption(85 /* EditorOption.multiCursorMergeOverlapping */, 'multiCursorMergeOverlapping', true, { description: nls.localize(
|
|
3141
|
+
multiCursorMergeOverlapping: register(new EditorBooleanOption(85 /* EditorOption.multiCursorMergeOverlapping */, 'multiCursorMergeOverlapping', true, { description: nls.localize(519, "Merge multiple cursors when they are overlapping.") })),
|
|
3135
3142
|
multiCursorModifier: register(new EditorEnumOption(86 /* EditorOption.multiCursorModifier */, 'multiCursorModifier', 'altKey', 'alt', ['ctrlCmd', 'alt'], _multiCursorModifierFromString, {
|
|
3136
3143
|
markdownEnumDescriptions: [
|
|
3137
|
-
nls.localize(
|
|
3138
|
-
nls.localize(
|
|
3144
|
+
nls.localize(520, "Maps to `Control` on Windows and Linux and to `Command` on macOS."),
|
|
3145
|
+
nls.localize(521, "Maps to `Alt` on Windows and Linux and to `Option` on macOS.")
|
|
3139
3146
|
],
|
|
3140
|
-
markdownDescription: nls.localize(
|
|
3147
|
+
markdownDescription: nls.localize(522, "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).")
|
|
3141
3148
|
|
|
3142
3149
|
|
|
3143
3150
|
|
|
@@ -3145,171 +3152,171 @@ export const EditorOptions = {
|
|
|
3145
3152
|
|
|
3146
3153
|
|
|
3147
3154
|
})),
|
|
3148
|
-
mouseMiddleClickAction: register(new EditorStringEnumOption(87 /* EditorOption.mouseMiddleClickAction */, 'mouseMiddleClickAction', 'default', ['default', 'openLink', 'ctrlLeftClick'], { description: nls.localize(
|
|
3155
|
+
mouseMiddleClickAction: register(new EditorStringEnumOption(87 /* EditorOption.mouseMiddleClickAction */, 'mouseMiddleClickAction', 'default', ['default', 'openLink', 'ctrlLeftClick'], { description: nls.localize(523, "Controls what happens when middle mouse button is clicked in the editor.") })),
|
|
3149
3156
|
multiCursorPaste: register(new EditorStringEnumOption(88 /* EditorOption.multiCursorPaste */, 'multiCursorPaste', 'spread', ['spread', 'full'], {
|
|
3150
3157
|
markdownEnumDescriptions: [
|
|
3151
|
-
nls.localize(
|
|
3152
|
-
nls.localize(
|
|
3158
|
+
nls.localize(524, "Each cursor pastes a single line of the text."),
|
|
3159
|
+
nls.localize(525, "Each cursor pastes the full text.")
|
|
3153
3160
|
],
|
|
3154
|
-
markdownDescription: nls.localize(
|
|
3161
|
+
markdownDescription: nls.localize(526, "Controls pasting when the line count of the pasted text matches the cursor count.")
|
|
3155
3162
|
})),
|
|
3156
3163
|
multiCursorLimit: register(new EditorIntOption(89 /* EditorOption.multiCursorLimit */, 'multiCursorLimit', 10000, 1, 100000, {
|
|
3157
|
-
markdownDescription: nls.localize(
|
|
3164
|
+
markdownDescription: nls.localize(527, "Controls the max number of cursors that can be in an active editor at once.")
|
|
3158
3165
|
})),
|
|
3159
3166
|
occurrencesHighlight: register(new EditorStringEnumOption(90 /* EditorOption.occurrencesHighlight */, 'occurrencesHighlight', 'singleFile', ['off', 'singleFile', 'multiFile'], {
|
|
3160
3167
|
markdownEnumDescriptions: [
|
|
3161
|
-
nls.localize(
|
|
3162
|
-
nls.localize(
|
|
3163
|
-
nls.localize(
|
|
3168
|
+
nls.localize(528, "Does not highlight occurrences."),
|
|
3169
|
+
nls.localize(529, "Highlights occurrences only in the current file."),
|
|
3170
|
+
nls.localize(530, "Experimental: Highlights occurrences across all valid open files.")
|
|
3164
3171
|
],
|
|
3165
|
-
markdownDescription: nls.localize(
|
|
3172
|
+
markdownDescription: nls.localize(531, "Controls whether occurrences should be highlighted across open files.")
|
|
3166
3173
|
})),
|
|
3167
3174
|
occurrencesHighlightDelay: register(new EditorIntOption(91 /* EditorOption.occurrencesHighlightDelay */, 'occurrencesHighlightDelay', 0, 0, 2000, {
|
|
3168
|
-
description: nls.localize(
|
|
3175
|
+
description: nls.localize(532, "Controls the delay in milliseconds after which occurrences are highlighted."),
|
|
3169
3176
|
tags: ['preview']
|
|
3170
3177
|
})),
|
|
3171
|
-
overtypeOnPaste: register(new EditorBooleanOption(93 /* EditorOption.overtypeOnPaste */, 'overtypeOnPaste', true, { description: nls.localize(
|
|
3172
|
-
overviewRulerBorder: register(new EditorBooleanOption(94 /* EditorOption.overviewRulerBorder */, 'overviewRulerBorder', true, { description: nls.localize(
|
|
3178
|
+
overtypeOnPaste: register(new EditorBooleanOption(93 /* EditorOption.overtypeOnPaste */, 'overtypeOnPaste', true, { description: nls.localize(533, "Controls whether pasting should overtype.") })),
|
|
3179
|
+
overviewRulerBorder: register(new EditorBooleanOption(94 /* EditorOption.overviewRulerBorder */, 'overviewRulerBorder', true, { description: nls.localize(534, "Controls whether a border should be drawn around the overview ruler.") })),
|
|
3173
3180
|
overviewRulerLanes: register(new EditorIntOption(95 /* EditorOption.overviewRulerLanes */, 'overviewRulerLanes', 3, 0, 3)),
|
|
3174
3181
|
padding: register(new EditorPadding()),
|
|
3175
3182
|
pasteAs: register(new EditorPasteAs()),
|
|
3176
3183
|
parameterHints: register(new EditorParameterHints()),
|
|
3177
3184
|
peekWidgetDefaultFocus: register(new EditorStringEnumOption(99 /* EditorOption.peekWidgetDefaultFocus */, 'peekWidgetDefaultFocus', 'tree', ['tree', 'editor'], {
|
|
3178
3185
|
enumDescriptions: [
|
|
3179
|
-
nls.localize(
|
|
3180
|
-
nls.localize(
|
|
3186
|
+
nls.localize(535, "Focus the tree when opening peek"),
|
|
3187
|
+
nls.localize(536, "Focus the editor when opening peek")
|
|
3181
3188
|
],
|
|
3182
|
-
description: nls.localize(
|
|
3189
|
+
description: nls.localize(537, "Controls whether to focus the inline editor or the tree in the peek widget.")
|
|
3183
3190
|
})),
|
|
3184
3191
|
placeholder: register(new PlaceholderOption()),
|
|
3185
|
-
definitionLinkOpensInPeek: register(new EditorBooleanOption(101 /* EditorOption.definitionLinkOpensInPeek */, 'definitionLinkOpensInPeek', false, { description: nls.localize(
|
|
3192
|
+
definitionLinkOpensInPeek: register(new EditorBooleanOption(101 /* EditorOption.definitionLinkOpensInPeek */, 'definitionLinkOpensInPeek', false, { description: nls.localize(538, "Controls whether the Go to Definition mouse gesture always opens the peek widget.") })),
|
|
3186
3193
|
quickSuggestions: register(new EditorQuickSuggestions()),
|
|
3187
3194
|
quickSuggestionsDelay: register(new EditorIntOption(103 /* EditorOption.quickSuggestionsDelay */, 'quickSuggestionsDelay', 10, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, {
|
|
3188
|
-
description: nls.localize(
|
|
3195
|
+
description: nls.localize(539, "Controls the delay in milliseconds after which quick suggestions will show up."),
|
|
3189
3196
|
experiment: {
|
|
3190
3197
|
mode: 'auto'
|
|
3191
3198
|
}
|
|
3192
3199
|
})),
|
|
3193
3200
|
readOnly: register(new EditorBooleanOption(104 /* EditorOption.readOnly */, 'readOnly', false)),
|
|
3194
3201
|
readOnlyMessage: register(new ReadonlyMessage()),
|
|
3195
|
-
renameOnType: register(new EditorBooleanOption(106 /* EditorOption.renameOnType */, 'renameOnType', false, { description: nls.localize(
|
|
3196
|
-
renderControlCharacters: register(new EditorBooleanOption(108 /* EditorOption.renderControlCharacters */, 'renderControlCharacters', true, { description: nls.localize(
|
|
3197
|
-
renderFinalNewline: register(new EditorStringEnumOption(109 /* EditorOption.renderFinalNewline */, 'renderFinalNewline', (platform.isLinux ? 'dimmed' : 'on'), ['off', 'on', 'dimmed'], { description: nls.localize(
|
|
3202
|
+
renameOnType: register(new EditorBooleanOption(106 /* EditorOption.renameOnType */, 'renameOnType', false, { description: nls.localize(540, "Controls whether the editor auto renames on type."), markdownDeprecationMessage: nls.localize(541, "Deprecated, use `#editor.linkedEditing#` instead.") })),
|
|
3203
|
+
renderControlCharacters: register(new EditorBooleanOption(108 /* EditorOption.renderControlCharacters */, 'renderControlCharacters', true, { description: nls.localize(542, "Controls whether the editor should render control characters."), restricted: true })),
|
|
3204
|
+
renderFinalNewline: register(new EditorStringEnumOption(109 /* EditorOption.renderFinalNewline */, 'renderFinalNewline', (platform.isLinux ? 'dimmed' : 'on'), ['off', 'on', 'dimmed'], { description: nls.localize(543, "Render last line number when the file ends with a newline.") })),
|
|
3198
3205
|
renderLineHighlight: register(new EditorStringEnumOption(110 /* EditorOption.renderLineHighlight */, 'renderLineHighlight', 'line', ['none', 'gutter', 'line', 'all'], {
|
|
3199
3206
|
enumDescriptions: [
|
|
3200
3207
|
'',
|
|
3201
3208
|
'',
|
|
3202
3209
|
'',
|
|
3203
|
-
nls.localize(
|
|
3210
|
+
nls.localize(544, "Highlights both the gutter and the current line."),
|
|
3204
3211
|
],
|
|
3205
|
-
description: nls.localize(
|
|
3212
|
+
description: nls.localize(545, "Controls how the editor should render the current line highlight.")
|
|
3206
3213
|
})),
|
|
3207
|
-
renderLineHighlightOnlyWhenFocus: register(new EditorBooleanOption(111 /* EditorOption.renderLineHighlightOnlyWhenFocus */, 'renderLineHighlightOnlyWhenFocus', false, { description: nls.localize(
|
|
3214
|
+
renderLineHighlightOnlyWhenFocus: register(new EditorBooleanOption(111 /* EditorOption.renderLineHighlightOnlyWhenFocus */, 'renderLineHighlightOnlyWhenFocus', false, { description: nls.localize(546, "Controls if the editor should render the current line highlight only when the editor is focused.") })),
|
|
3208
3215
|
renderValidationDecorations: register(new EditorStringEnumOption(112 /* EditorOption.renderValidationDecorations */, 'renderValidationDecorations', 'editable', ['editable', 'on', 'off'])),
|
|
3209
3216
|
renderWhitespace: register(new EditorStringEnumOption(113 /* EditorOption.renderWhitespace */, 'renderWhitespace', 'selection', ['none', 'boundary', 'selection', 'trailing', 'all'], {
|
|
3210
3217
|
enumDescriptions: [
|
|
3211
3218
|
'',
|
|
3212
|
-
nls.localize(
|
|
3213
|
-
nls.localize(
|
|
3214
|
-
nls.localize(
|
|
3219
|
+
nls.localize(547, "Render whitespace characters except for single spaces between words."),
|
|
3220
|
+
nls.localize(548, "Render whitespace characters only on selected text."),
|
|
3221
|
+
nls.localize(549, "Render only trailing whitespace characters."),
|
|
3215
3222
|
''
|
|
3216
3223
|
],
|
|
3217
|
-
description: nls.localize(
|
|
3224
|
+
description: nls.localize(550, "Controls how the editor should render whitespace characters.")
|
|
3218
3225
|
})),
|
|
3219
3226
|
revealHorizontalRightPadding: register(new EditorIntOption(114 /* EditorOption.revealHorizontalRightPadding */, 'revealHorizontalRightPadding', 15, 0, 1000)),
|
|
3220
|
-
roundedSelection: register(new EditorBooleanOption(115 /* EditorOption.roundedSelection */, 'roundedSelection', true, { description: nls.localize(
|
|
3227
|
+
roundedSelection: register(new EditorBooleanOption(115 /* EditorOption.roundedSelection */, 'roundedSelection', true, { description: nls.localize(551, "Controls whether selections should have rounded corners.") })),
|
|
3221
3228
|
rulers: register(new EditorRulers()),
|
|
3222
3229
|
scrollbar: register(new EditorScrollbar()),
|
|
3223
|
-
scrollBeyondLastColumn: register(new EditorIntOption(118 /* EditorOption.scrollBeyondLastColumn */, 'scrollBeyondLastColumn', 4, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { description: nls.localize(
|
|
3224
|
-
scrollBeyondLastLine: register(new EditorBooleanOption(119 /* EditorOption.scrollBeyondLastLine */, 'scrollBeyondLastLine', true, { description: nls.localize(
|
|
3225
|
-
scrollOnMiddleClick: register(new EditorBooleanOption(171 /* EditorOption.scrollOnMiddleClick */, 'scrollOnMiddleClick', false, { description: nls.localize(
|
|
3226
|
-
scrollPredominantAxis: register(new EditorBooleanOption(120 /* EditorOption.scrollPredominantAxis */, 'scrollPredominantAxis', true, { description: nls.localize(
|
|
3230
|
+
scrollBeyondLastColumn: register(new EditorIntOption(118 /* EditorOption.scrollBeyondLastColumn */, 'scrollBeyondLastColumn', 4, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { description: nls.localize(552, "Controls the number of extra characters beyond which the editor will scroll horizontally.") })),
|
|
3231
|
+
scrollBeyondLastLine: register(new EditorBooleanOption(119 /* EditorOption.scrollBeyondLastLine */, 'scrollBeyondLastLine', true, { description: nls.localize(553, "Controls whether the editor will scroll beyond the last line.") })),
|
|
3232
|
+
scrollOnMiddleClick: register(new EditorBooleanOption(171 /* EditorOption.scrollOnMiddleClick */, 'scrollOnMiddleClick', false, { description: nls.localize(554, "Controls whether the editor will scroll when the middle button is pressed.") })),
|
|
3233
|
+
scrollPredominantAxis: register(new EditorBooleanOption(120 /* EditorOption.scrollPredominantAxis */, 'scrollPredominantAxis', true, { description: nls.localize(555, "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.") })),
|
|
3227
3234
|
selectionClipboard: register(new EditorBooleanOption(121 /* EditorOption.selectionClipboard */, 'selectionClipboard', true, {
|
|
3228
|
-
description: nls.localize(
|
|
3235
|
+
description: nls.localize(556, "Controls whether the Linux primary clipboard should be supported."),
|
|
3229
3236
|
included: platform.isLinux
|
|
3230
3237
|
})),
|
|
3231
|
-
selectionHighlight: register(new EditorBooleanOption(122 /* EditorOption.selectionHighlight */, 'selectionHighlight', true, { description: nls.localize(
|
|
3232
|
-
selectionHighlightMaxLength: register(new EditorIntOption(123 /* EditorOption.selectionHighlightMaxLength */, 'selectionHighlightMaxLength', 200, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { description: nls.localize(
|
|
3233
|
-
selectionHighlightMultiline: register(new EditorBooleanOption(124 /* EditorOption.selectionHighlightMultiline */, 'selectionHighlightMultiline', false, { description: nls.localize(
|
|
3238
|
+
selectionHighlight: register(new EditorBooleanOption(122 /* EditorOption.selectionHighlight */, 'selectionHighlight', true, { description: nls.localize(557, "Controls whether the editor should highlight matches similar to the selection.") })),
|
|
3239
|
+
selectionHighlightMaxLength: register(new EditorIntOption(123 /* EditorOption.selectionHighlightMaxLength */, 'selectionHighlightMaxLength', 200, 0, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, { description: nls.localize(558, "Controls how many characters can be in the selection before similiar matches are not highlighted. Set to zero for unlimited.") })),
|
|
3240
|
+
selectionHighlightMultiline: register(new EditorBooleanOption(124 /* EditorOption.selectionHighlightMultiline */, 'selectionHighlightMultiline', false, { description: nls.localize(559, "Controls whether the editor should highlight selection matches that span multiple lines.") })),
|
|
3234
3241
|
selectOnLineNumbers: register(new EditorBooleanOption(125 /* EditorOption.selectOnLineNumbers */, 'selectOnLineNumbers', true)),
|
|
3235
3242
|
showFoldingControls: register(new EditorStringEnumOption(126 /* EditorOption.showFoldingControls */, 'showFoldingControls', 'mouseover', ['always', 'never', 'mouseover'], {
|
|
3236
3243
|
enumDescriptions: [
|
|
3237
|
-
nls.localize(
|
|
3238
|
-
nls.localize(
|
|
3239
|
-
nls.localize(
|
|
3244
|
+
nls.localize(560, "Always show the folding controls."),
|
|
3245
|
+
nls.localize(561, "Never show the folding controls and reduce the gutter size."),
|
|
3246
|
+
nls.localize(562, "Only show the folding controls when the mouse is over the gutter."),
|
|
3240
3247
|
],
|
|
3241
|
-
description: nls.localize(
|
|
3248
|
+
description: nls.localize(563, "Controls when the folding controls on the gutter are shown.")
|
|
3242
3249
|
})),
|
|
3243
|
-
showUnused: register(new EditorBooleanOption(127 /* EditorOption.showUnused */, 'showUnused', true, { description: nls.localize(
|
|
3244
|
-
showDeprecated: register(new EditorBooleanOption(157 /* EditorOption.showDeprecated */, 'showDeprecated', true, { description: nls.localize(
|
|
3250
|
+
showUnused: register(new EditorBooleanOption(127 /* EditorOption.showUnused */, 'showUnused', true, { description: nls.localize(564, "Controls fading out of unused code.") })),
|
|
3251
|
+
showDeprecated: register(new EditorBooleanOption(157 /* EditorOption.showDeprecated */, 'showDeprecated', true, { description: nls.localize(565, "Controls strikethrough deprecated variables.") })),
|
|
3245
3252
|
inlayHints: register(new EditorInlayHints()),
|
|
3246
3253
|
snippetSuggestions: register(new EditorStringEnumOption(128 /* EditorOption.snippetSuggestions */, 'snippetSuggestions', 'inline', ['top', 'bottom', 'inline', 'none'], {
|
|
3247
3254
|
enumDescriptions: [
|
|
3248
|
-
nls.localize(
|
|
3249
|
-
nls.localize(
|
|
3250
|
-
nls.localize(
|
|
3251
|
-
nls.localize(
|
|
3255
|
+
nls.localize(566, "Show snippet suggestions on top of other suggestions."),
|
|
3256
|
+
nls.localize(567, "Show snippet suggestions below other suggestions."),
|
|
3257
|
+
nls.localize(568, "Show snippets suggestions with other suggestions."),
|
|
3258
|
+
nls.localize(569, "Do not show snippet suggestions."),
|
|
3252
3259
|
],
|
|
3253
|
-
description: nls.localize(
|
|
3260
|
+
description: nls.localize(570, "Controls whether snippets are shown with other suggestions and how they are sorted.")
|
|
3254
3261
|
})),
|
|
3255
3262
|
smartSelect: register(new SmartSelect()),
|
|
3256
|
-
smoothScrolling: register(new EditorBooleanOption(130 /* EditorOption.smoothScrolling */, 'smoothScrolling', false, { description: nls.localize(
|
|
3263
|
+
smoothScrolling: register(new EditorBooleanOption(130 /* EditorOption.smoothScrolling */, 'smoothScrolling', false, { description: nls.localize(571, "Controls whether the editor will scroll using an animation.") })),
|
|
3257
3264
|
stopRenderingLineAfter: register(new EditorIntOption(133 /* EditorOption.stopRenderingLineAfter */, 'stopRenderingLineAfter', 10000, -1, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */)),
|
|
3258
3265
|
suggest: register(new EditorSuggest()),
|
|
3259
3266
|
inlineSuggest: register(new InlineEditorSuggest()),
|
|
3260
|
-
inlineCompletionsAccessibilityVerbose: register(new EditorBooleanOption(169 /* EditorOption.inlineCompletionsAccessibilityVerbose */, 'inlineCompletionsAccessibilityVerbose', false, { description: nls.localize(
|
|
3261
|
-
suggestFontSize: register(new EditorIntOption(135 /* EditorOption.suggestFontSize */, 'suggestFontSize', 0, 0, 1000, { markdownDescription: nls.localize(
|
|
3262
|
-
suggestLineHeight: register(new EditorIntOption(136 /* EditorOption.suggestLineHeight */, 'suggestLineHeight', 0, 0, 1000, { markdownDescription: nls.localize(
|
|
3263
|
-
suggestOnTriggerCharacters: register(new EditorBooleanOption(137 /* EditorOption.suggestOnTriggerCharacters */, 'suggestOnTriggerCharacters', true, { description: nls.localize(
|
|
3267
|
+
inlineCompletionsAccessibilityVerbose: register(new EditorBooleanOption(169 /* EditorOption.inlineCompletionsAccessibilityVerbose */, 'inlineCompletionsAccessibilityVerbose', false, { description: nls.localize(572, "Controls whether the accessibility hint should be provided to screen reader users when an inline completion is shown.") })),
|
|
3268
|
+
suggestFontSize: register(new EditorIntOption(135 /* EditorOption.suggestFontSize */, 'suggestFontSize', 0, 0, 1000, { markdownDescription: nls.localize(573, "Font size for the suggest widget. When set to {0}, the value of {1} is used.", '`0`', '`#editor.fontSize#`') })),
|
|
3269
|
+
suggestLineHeight: register(new EditorIntOption(136 /* EditorOption.suggestLineHeight */, 'suggestLineHeight', 0, 0, 1000, { markdownDescription: nls.localize(574, "Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.", '`0`', '`#editor.lineHeight#`') })),
|
|
3270
|
+
suggestOnTriggerCharacters: register(new EditorBooleanOption(137 /* EditorOption.suggestOnTriggerCharacters */, 'suggestOnTriggerCharacters', true, { description: nls.localize(575, "Controls whether suggestions should automatically show up when typing trigger characters.") })),
|
|
3264
3271
|
suggestSelection: register(new EditorStringEnumOption(138 /* EditorOption.suggestSelection */, 'suggestSelection', 'first', ['first', 'recentlyUsed', 'recentlyUsedByPrefix'], {
|
|
3265
3272
|
markdownEnumDescriptions: [
|
|
3266
|
-
nls.localize(
|
|
3267
|
-
nls.localize(
|
|
3268
|
-
nls.localize(
|
|
3273
|
+
nls.localize(576, "Always select the first suggestion."),
|
|
3274
|
+
nls.localize(577, "Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently."),
|
|
3275
|
+
nls.localize(578, "Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`."),
|
|
3269
3276
|
],
|
|
3270
|
-
description: nls.localize(
|
|
3277
|
+
description: nls.localize(579, "Controls how suggestions are pre-selected when showing the suggest list.")
|
|
3271
3278
|
})),
|
|
3272
3279
|
tabCompletion: register(new EditorStringEnumOption(139 /* EditorOption.tabCompletion */, 'tabCompletion', 'off', ['on', 'off', 'onlySnippets'], {
|
|
3273
3280
|
enumDescriptions: [
|
|
3274
|
-
nls.localize(
|
|
3275
|
-
nls.localize(
|
|
3276
|
-
nls.localize(
|
|
3281
|
+
nls.localize(580, "Tab complete will insert the best matching suggestion when pressing tab."),
|
|
3282
|
+
nls.localize(581, "Disable tab completions."),
|
|
3283
|
+
nls.localize(582, "Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled."),
|
|
3277
3284
|
],
|
|
3278
|
-
description: nls.localize(
|
|
3285
|
+
description: nls.localize(583, "Enables tab completions.")
|
|
3279
3286
|
})),
|
|
3280
3287
|
tabIndex: register(new EditorIntOption(140 /* EditorOption.tabIndex */, 'tabIndex', 0, -1, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */)),
|
|
3281
|
-
trimWhitespaceOnDelete: register(new EditorBooleanOption(141 /* EditorOption.trimWhitespaceOnDelete */, 'trimWhitespaceOnDelete', false, { description: nls.localize(
|
|
3288
|
+
trimWhitespaceOnDelete: register(new EditorBooleanOption(141 /* EditorOption.trimWhitespaceOnDelete */, 'trimWhitespaceOnDelete', false, { description: nls.localize(584, "Controls whether the editor will also delete the next line's indentation whitespace when deleting a newline.") })),
|
|
3282
3289
|
unicodeHighlight: register(new UnicodeHighlight()),
|
|
3283
3290
|
unusualLineTerminators: register(new EditorStringEnumOption(143 /* EditorOption.unusualLineTerminators */, 'unusualLineTerminators', 'prompt', ['auto', 'off', 'prompt'], {
|
|
3284
3291
|
enumDescriptions: [
|
|
3285
|
-
nls.localize(
|
|
3286
|
-
nls.localize(
|
|
3287
|
-
nls.localize(
|
|
3292
|
+
nls.localize(585, "Unusual line terminators are automatically removed."),
|
|
3293
|
+
nls.localize(586, "Unusual line terminators are ignored."),
|
|
3294
|
+
nls.localize(587, "Unusual line terminators prompt to be removed."),
|
|
3288
3295
|
],
|
|
3289
|
-
description: nls.localize(
|
|
3296
|
+
description: nls.localize(588, "Remove unusual line terminators that might cause problems.")
|
|
3290
3297
|
})),
|
|
3291
3298
|
useShadowDOM: register(new EditorBooleanOption(144 /* EditorOption.useShadowDOM */, 'useShadowDOM', true)),
|
|
3292
|
-
useTabStops: register(new EditorBooleanOption(145 /* EditorOption.useTabStops */, 'useTabStops', true, { description: nls.localize(
|
|
3299
|
+
useTabStops: register(new EditorBooleanOption(145 /* EditorOption.useTabStops */, 'useTabStops', true, { description: nls.localize(589, "Spaces and tabs are inserted and deleted in alignment with tab stops.") })),
|
|
3293
3300
|
wordBreak: register(new EditorStringEnumOption(146 /* EditorOption.wordBreak */, 'wordBreak', 'normal', ['normal', 'keepAll'], {
|
|
3294
3301
|
markdownEnumDescriptions: [
|
|
3295
|
-
nls.localize(
|
|
3296
|
-
nls.localize(
|
|
3302
|
+
nls.localize(590, "Use the default line break rule."),
|
|
3303
|
+
nls.localize(591, "Word breaks should not be used for Chinese/Japanese/Korean (CJK) text. Non-CJK text behavior is the same as for normal."),
|
|
3297
3304
|
],
|
|
3298
|
-
description: nls.localize(
|
|
3305
|
+
description: nls.localize(592, "Controls the word break rules used for Chinese/Japanese/Korean (CJK) text.")
|
|
3299
3306
|
})),
|
|
3300
3307
|
wordSegmenterLocales: register(new WordSegmenterLocales()),
|
|
3301
|
-
wordSeparators: register(new EditorStringOption(148 /* EditorOption.wordSeparators */, 'wordSeparators', USUAL_WORD_SEPARATORS, { description: nls.localize(
|
|
3308
|
+
wordSeparators: register(new EditorStringOption(148 /* EditorOption.wordSeparators */, 'wordSeparators', USUAL_WORD_SEPARATORS, { description: nls.localize(593, "Characters that will be used as word separators when doing word related navigations or operations.") })),
|
|
3302
3309
|
wordWrap: register(new EditorStringEnumOption(149 /* EditorOption.wordWrap */, 'wordWrap', 'off', ['off', 'on', 'wordWrapColumn', 'bounded'], {
|
|
3303
3310
|
markdownEnumDescriptions: [
|
|
3304
|
-
nls.localize(
|
|
3305
|
-
nls.localize(
|
|
3306
|
-
nls.localize(
|
|
3311
|
+
nls.localize(594, "Lines will never wrap."),
|
|
3312
|
+
nls.localize(595, "Lines will wrap at the viewport width."),
|
|
3313
|
+
nls.localize(596, "Lines will wrap at `#editor.wordWrapColumn#`."),
|
|
3307
3314
|
|
|
3308
3315
|
|
|
3309
3316
|
|
|
3310
3317
|
|
|
3311
3318
|
|
|
3312
|
-
nls.localize(
|
|
3319
|
+
nls.localize(597, "Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`."),
|
|
3313
3320
|
|
|
3314
3321
|
|
|
3315
3322
|
|
|
@@ -3317,7 +3324,7 @@ export const EditorOptions = {
|
|
|
3317
3324
|
|
|
3318
3325
|
|
|
3319
3326
|
],
|
|
3320
|
-
description: nls.localize(
|
|
3327
|
+
description: nls.localize(598, "Controls how lines should wrap.")
|
|
3321
3328
|
|
|
3322
3329
|
|
|
3323
3330
|
|
|
@@ -3332,7 +3339,7 @@ export const EditorOptions = {
|
|
|
3332
3339
|
// allow-any-unicode-next-line
|
|
3333
3340
|
'([{‘“〈《「『【〔([{「£¥$£¥++')),
|
|
3334
3341
|
wordWrapColumn: register(new EditorIntOption(152 /* EditorOption.wordWrapColumn */, 'wordWrapColumn', 80, 1, 1073741824 /* Constants.MAX_SAFE_SMALL_INTEGER */, {
|
|
3335
|
-
markdownDescription: nls.localize(
|
|
3342
|
+
markdownDescription: nls.localize(599, "Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`.")
|
|
3336
3343
|
|
|
3337
3344
|
|
|
3338
3345
|
|
|
@@ -3342,20 +3349,20 @@ export const EditorOptions = {
|
|
|
3342
3349
|
})),
|
|
3343
3350
|
wordWrapOverride1: register(new EditorStringEnumOption(153 /* EditorOption.wordWrapOverride1 */, 'wordWrapOverride1', 'inherit', ['off', 'on', 'inherit'])),
|
|
3344
3351
|
wordWrapOverride2: register(new EditorStringEnumOption(154 /* EditorOption.wordWrapOverride2 */, 'wordWrapOverride2', 'inherit', ['off', 'on', 'inherit'])),
|
|
3345
|
-
wrapOnEscapedLineFeeds: register(new EditorBooleanOption(160 /* EditorOption.wrapOnEscapedLineFeeds */, 'wrapOnEscapedLineFeeds', false, { markdownDescription: nls.localize(
|
|
3352
|
+
wrapOnEscapedLineFeeds: register(new EditorBooleanOption(160 /* EditorOption.wrapOnEscapedLineFeeds */, 'wrapOnEscapedLineFeeds', false, { markdownDescription: nls.localize(600, "Controls whether literal `\\n` shall trigger a wordWrap when `#editor.wordWrap#` is enabled.\n\nFor example:\n```c\nchar* str=\"hello\\nworld\"\n```\nwill be displayed as\n```c\nchar* str=\"hello\\n\n world\"\n```") })),
|
|
3346
3353
|
// Leave these at the end (because they have dependencies!)
|
|
3347
3354
|
effectiveCursorStyle: register(new EffectiveCursorStyle()),
|
|
3348
3355
|
editorClassName: register(new EditorClassName()),
|
|
3349
3356
|
defaultColorDecorators: register(new EditorStringEnumOption(167 /* EditorOption.defaultColorDecorators */, 'defaultColorDecorators', 'auto', ['auto', 'always', 'never'], {
|
|
3350
3357
|
enumDescriptions: [
|
|
3351
|
-
nls.localize(
|
|
3352
|
-
nls.localize(
|
|
3353
|
-
nls.localize(
|
|
3358
|
+
nls.localize(601, "Show default color decorators only when no extension provides colors decorators."),
|
|
3359
|
+
nls.localize(602, "Always show default color decorators."),
|
|
3360
|
+
nls.localize(603, "Never show default color decorators."),
|
|
3354
3361
|
],
|
|
3355
|
-
description: nls.localize(
|
|
3362
|
+
description: nls.localize(604, "Controls whether inline color decorations should be shown using the default document color provider.")
|
|
3356
3363
|
})),
|
|
3357
3364
|
pixelRatio: register(new EditorPixelRatio()),
|
|
3358
|
-
tabFocusMode: register(new EditorBooleanOption(164 /* EditorOption.tabFocusMode */, 'tabFocusMode', false, { markdownDescription: nls.localize(
|
|
3365
|
+
tabFocusMode: register(new EditorBooleanOption(164 /* EditorOption.tabFocusMode */, 'tabFocusMode', false, { markdownDescription: nls.localize(605, "Controls whether the editor receives tabs or defers them to the workbench for navigation.") })),
|
|
3359
3366
|
layoutInfo: register(new EditorLayoutInfoComputer()),
|
|
3360
3367
|
wrappingInfo: register(new EditorWrappingInfoComputer()),
|
|
3361
3368
|
wrappingIndent: register(new WrappingIndentOption()),
|