@theia/editor 1.19.0 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/browser/editor-command.d.ts.map +1 -1
- package/lib/browser/editor-command.js +53 -53
- package/lib/browser/editor-command.js.map +1 -1
- package/lib/browser/editor-contribution.js +3 -3
- package/lib/browser/editor-contribution.js.map +1 -1
- package/lib/browser/editor-menu.js +3 -3
- package/lib/browser/editor-menu.js.map +1 -1
- package/lib/browser/editor-preferences.d.ts.map +1 -1
- package/lib/browser/editor-preferences.js +271 -270
- package/lib/browser/editor-preferences.js.map +1 -1
- package/package.json +5 -5
- package/src/browser/editor-command.ts +53 -53
- package/src/browser/editor-contribution.ts +3 -3
- package/src/browser/editor-menu.ts +3 -3
- package/src/browser/editor-preferences.ts +271 -270
|
@@ -59,7 +59,7 @@ const codeEditorPreferenceProperties = {
|
|
|
59
59
|
'type': 'number',
|
|
60
60
|
'default': exports.EDITOR_MODEL_DEFAULTS.tabSize,
|
|
61
61
|
'minimum': 1,
|
|
62
|
-
'markdownDescription': nls_1.nls.
|
|
62
|
+
'markdownDescription': nls_1.nls.localizeByDefault('The number of spaces a tab is equal to. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.')
|
|
63
63
|
},
|
|
64
64
|
'editor.defaultFormatter': {
|
|
65
65
|
'type': 'string',
|
|
@@ -69,105 +69,105 @@ const codeEditorPreferenceProperties = {
|
|
|
69
69
|
'editor.insertSpaces': {
|
|
70
70
|
'type': 'boolean',
|
|
71
71
|
'default': exports.EDITOR_MODEL_DEFAULTS.insertSpaces,
|
|
72
|
-
'markdownDescription': nls_1.nls.
|
|
72
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Insert spaces when pressing `Tab`. This setting is overridden based on the file contents when `#editor.detectIndentation#` is on.')
|
|
73
73
|
},
|
|
74
74
|
'editor.detectIndentation': {
|
|
75
75
|
'type': 'boolean',
|
|
76
76
|
'default': exports.EDITOR_MODEL_DEFAULTS.detectIndentation,
|
|
77
|
-
'markdownDescription': nls_1.nls.
|
|
77
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Controls whether `#editor.tabSize#` and `#editor.insertSpaces#` will be automatically detected when a file is opened based on the file contents.')
|
|
78
78
|
},
|
|
79
79
|
'editor.trimAutoWhitespace': {
|
|
80
80
|
'type': 'boolean',
|
|
81
81
|
'default': exports.EDITOR_MODEL_DEFAULTS.trimAutoWhitespace,
|
|
82
|
-
'description': nls_1.nls.
|
|
82
|
+
'description': nls_1.nls.localizeByDefault('Remove trailing auto inserted whitespace.')
|
|
83
83
|
},
|
|
84
84
|
'editor.largeFileOptimizations': {
|
|
85
85
|
'type': 'boolean',
|
|
86
86
|
'default': exports.EDITOR_MODEL_DEFAULTS.largeFileOptimizations,
|
|
87
|
-
'description': nls_1.nls.
|
|
87
|
+
'description': nls_1.nls.localizeByDefault('Special handling for large files to disable certain memory intensive features.')
|
|
88
88
|
},
|
|
89
89
|
'editor.wordBasedSuggestions': {
|
|
90
90
|
'type': 'boolean',
|
|
91
91
|
'default': true,
|
|
92
|
-
'description': nls_1.nls.
|
|
92
|
+
'description': nls_1.nls.localizeByDefault('Controls whether completions should be computed based on words in the document.')
|
|
93
93
|
},
|
|
94
94
|
'editor.wordBasedSuggestionsMode': {
|
|
95
95
|
'enum': ['currentDocument', 'matchingDocuments', 'allDocuments'],
|
|
96
96
|
'default': 'matchingDocuments',
|
|
97
97
|
'enumDescriptions': [
|
|
98
|
-
nls_1.nls.
|
|
99
|
-
nls_1.nls.
|
|
100
|
-
nls_1.nls.
|
|
98
|
+
nls_1.nls.localizeByDefault('Only suggest words from the active document.'),
|
|
99
|
+
nls_1.nls.localizeByDefault('Suggest words from all open documents of the same language.'),
|
|
100
|
+
nls_1.nls.localizeByDefault('Suggest words from all open documents.')
|
|
101
101
|
],
|
|
102
|
-
'description': nls_1.nls.
|
|
102
|
+
'description': nls_1.nls.localizeByDefault('Controls form what documents word based completions are computed.')
|
|
103
103
|
},
|
|
104
104
|
'editor.semanticHighlighting.enabled': {
|
|
105
105
|
'enum': [true, false, 'configuredByTheme'],
|
|
106
106
|
'enumDescriptions': [
|
|
107
|
-
nls_1.nls.
|
|
108
|
-
nls_1.nls.
|
|
109
|
-
nls_1.nls.
|
|
107
|
+
nls_1.nls.localizeByDefault('Semantic highlighting enabled for all color themes.'),
|
|
108
|
+
nls_1.nls.localizeByDefault('Semantic highlighting disabled for all color themes.'),
|
|
109
|
+
nls_1.nls.localizeByDefault('Semantic highlighting is configured by the current color theme\'s `semanticHighlighting` setting.')
|
|
110
110
|
],
|
|
111
111
|
'default': 'configuredByTheme',
|
|
112
|
-
'description': nls_1.nls.
|
|
112
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the semanticHighlighting is shown for the languages that support it.')
|
|
113
113
|
},
|
|
114
114
|
'editor.stablePeek': {
|
|
115
115
|
'type': 'boolean',
|
|
116
116
|
'default': false,
|
|
117
|
-
'markdownDescription': nls_1.nls.
|
|
117
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Keep peek editors open even when double clicking their content or when hitting `Escape`.')
|
|
118
118
|
},
|
|
119
119
|
'editor.maxTokenizationLineLength': {
|
|
120
120
|
'type': 'integer',
|
|
121
121
|
'default': 400,
|
|
122
|
-
'description': nls_1.nls.
|
|
122
|
+
'description': nls_1.nls.localizeByDefault('Lines above this length will not be tokenized for performance reasons')
|
|
123
123
|
},
|
|
124
124
|
'diffEditor.maxComputationTime': {
|
|
125
125
|
'type': 'number',
|
|
126
126
|
'default': 5000,
|
|
127
|
-
'description': nls_1.nls.
|
|
127
|
+
'description': nls_1.nls.localizeByDefault('Timeout in milliseconds after which diff computation is cancelled. Use 0 for no timeout.')
|
|
128
128
|
},
|
|
129
129
|
'diffEditor.renderSideBySide': {
|
|
130
130
|
'type': 'boolean',
|
|
131
131
|
'default': true,
|
|
132
|
-
'description': nls_1.nls.
|
|
132
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the diff editor shows the diff side by side or inline.')
|
|
133
133
|
},
|
|
134
134
|
'diffEditor.ignoreTrimWhitespace': {
|
|
135
135
|
'type': 'boolean',
|
|
136
136
|
'default': true,
|
|
137
|
-
'description': nls_1.nls.
|
|
137
|
+
'description': nls_1.nls.localizeByDefault('When enabled, the diff editor ignores changes in leading or trailing whitespace.')
|
|
138
138
|
},
|
|
139
139
|
'diffEditor.renderIndicators': {
|
|
140
140
|
'type': 'boolean',
|
|
141
141
|
'default': true,
|
|
142
|
-
'description': nls_1.nls.
|
|
142
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the diff editor shows +/- indicators for added/removed changes.')
|
|
143
143
|
},
|
|
144
144
|
'diffEditor.codeLens': {
|
|
145
145
|
'type': 'boolean',
|
|
146
146
|
'default': false,
|
|
147
|
-
'description': nls_1.nls.
|
|
147
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor shows CodeLens.')
|
|
148
148
|
},
|
|
149
149
|
'diffEditor.wordWrap': {
|
|
150
150
|
'type': 'string',
|
|
151
151
|
'enum': ['off', 'on', 'inherit'],
|
|
152
152
|
'default': 'inherit',
|
|
153
153
|
'markdownEnumDescriptions': [
|
|
154
|
-
nls_1.nls.
|
|
155
|
-
nls_1.nls.
|
|
156
|
-
nls_1.nls.
|
|
154
|
+
nls_1.nls.localizeByDefault('Lines will never wrap.'),
|
|
155
|
+
nls_1.nls.localizeByDefault('Lines will wrap at the viewport width.'),
|
|
156
|
+
nls_1.nls.localizeByDefault('Lines will wrap according to the `#editor.wordWrap#` setting.')
|
|
157
157
|
]
|
|
158
158
|
},
|
|
159
159
|
'editor.acceptSuggestionOnCommitCharacter': {
|
|
160
|
-
'markdownDescription': nls_1.nls.
|
|
160
|
+
'markdownDescription': nls_1.nls.localizeByDefault('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.'),
|
|
161
161
|
'type': 'boolean',
|
|
162
162
|
'default': true
|
|
163
163
|
},
|
|
164
164
|
'editor.acceptSuggestionOnEnter': {
|
|
165
165
|
'markdownEnumDescriptions': [
|
|
166
166
|
'',
|
|
167
|
-
nls_1.nls.
|
|
167
|
+
nls_1.nls.localizeByDefault('Only accept a suggestion with `Enter` when it makes a textual change.'),
|
|
168
168
|
''
|
|
169
169
|
],
|
|
170
|
-
'markdownDescription': nls_1.nls.
|
|
170
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Controls whether suggestions should be accepted on `Enter`, in addition to `Tab`. Helps to avoid ambiguity between inserting new lines or accepting suggestions.'),
|
|
171
171
|
'type': 'string',
|
|
172
172
|
'enum': [
|
|
173
173
|
'on',
|
|
@@ -184,15 +184,15 @@ const codeEditorPreferenceProperties = {
|
|
|
184
184
|
'off'
|
|
185
185
|
],
|
|
186
186
|
'enumDescriptions': [
|
|
187
|
-
nls_1.nls.
|
|
188
|
-
nls_1.nls.
|
|
189
|
-
nls_1.nls.
|
|
187
|
+
nls_1.nls.localizeByDefault('The editor will use platform APIs to detect when a Screen Reader is attached.'),
|
|
188
|
+
nls_1.nls.localizeByDefault('The editor will be permanently optimized for usage with a Screen Reader. Word wrapping will be disabled.'),
|
|
189
|
+
nls_1.nls.localizeByDefault('The editor will never be optimized for usage with a Screen Reader.')
|
|
190
190
|
],
|
|
191
191
|
'default': 'auto',
|
|
192
|
-
'description': nls_1.nls.
|
|
192
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should run in a mode where it is optimized for screen readers. Setting to on will disable word wrapping.')
|
|
193
193
|
},
|
|
194
194
|
'editor.accessibilityPageSize': {
|
|
195
|
-
'description': nls_1.nls.
|
|
195
|
+
'description': nls_1.nls.localizeByDefault('Controls the number of lines in the editor that can be read out by a screen reader. Warning: this has a performance implication for numbers larger than the default.'),
|
|
196
196
|
'type': 'integer',
|
|
197
197
|
'default': 10,
|
|
198
198
|
'minimum': 1,
|
|
@@ -201,11 +201,11 @@ const codeEditorPreferenceProperties = {
|
|
|
201
201
|
'editor.autoClosingBrackets': {
|
|
202
202
|
'enumDescriptions': [
|
|
203
203
|
'',
|
|
204
|
-
nls_1.nls.
|
|
205
|
-
nls_1.nls.
|
|
204
|
+
nls_1.nls.localizeByDefault('Use language configurations to determine when to autoclose brackets.'),
|
|
205
|
+
nls_1.nls.localizeByDefault('Autoclose brackets only when the cursor is to the left of whitespace.'),
|
|
206
206
|
''
|
|
207
207
|
],
|
|
208
|
-
'description': nls_1.nls.
|
|
208
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should automatically close brackets after the user adds an opening bracket.'),
|
|
209
209
|
'type': 'string',
|
|
210
210
|
'enum': [
|
|
211
211
|
'always',
|
|
@@ -218,10 +218,10 @@ const codeEditorPreferenceProperties = {
|
|
|
218
218
|
'editor.autoClosingOvertype': {
|
|
219
219
|
'enumDescriptions': [
|
|
220
220
|
'',
|
|
221
|
-
nls_1.nls.
|
|
221
|
+
nls_1.nls.localizeByDefault('Type over closing quotes or brackets only if they were automatically inserted.'),
|
|
222
222
|
''
|
|
223
223
|
],
|
|
224
|
-
'description': nls_1.nls.
|
|
224
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should type over closing quotes or brackets.'),
|
|
225
225
|
'type': 'string',
|
|
226
226
|
'enum': [
|
|
227
227
|
'always',
|
|
@@ -233,11 +233,11 @@ const codeEditorPreferenceProperties = {
|
|
|
233
233
|
'editor.autoClosingQuotes': {
|
|
234
234
|
'enumDescriptions': [
|
|
235
235
|
'',
|
|
236
|
-
nls_1.nls.
|
|
237
|
-
nls_1.nls.
|
|
236
|
+
nls_1.nls.localizeByDefault('Use language configurations to determine when to autoclose quotes.'),
|
|
237
|
+
nls_1.nls.localizeByDefault('Autoclose quotes only when the cursor is to the left of whitespace.'),
|
|
238
238
|
''
|
|
239
239
|
],
|
|
240
|
-
'description': nls_1.nls.
|
|
240
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should automatically close quotes after the user adds an opening quote.'),
|
|
241
241
|
'type': 'string',
|
|
242
242
|
'enum': [
|
|
243
243
|
'always',
|
|
@@ -249,13 +249,13 @@ const codeEditorPreferenceProperties = {
|
|
|
249
249
|
},
|
|
250
250
|
'editor.autoIndent': {
|
|
251
251
|
'enumDescriptions': [
|
|
252
|
-
nls_1.nls.
|
|
253
|
-
nls_1.nls.
|
|
254
|
-
nls_1.nls.
|
|
255
|
-
nls_1.nls.
|
|
256
|
-
nls_1.nls.
|
|
252
|
+
nls_1.nls.localizeByDefault('The editor will not insert indentation automatically.'),
|
|
253
|
+
nls_1.nls.localizeByDefault('The editor will keep the current line\'s indentation.'),
|
|
254
|
+
nls_1.nls.localizeByDefault('The editor will keep the current line\'s indentation and honor language defined brackets.'),
|
|
255
|
+
nls_1.nls.localizeByDefault('The editor will keep the current line\'s indentation, honor language defined brackets and invoke special onEnterRules defined by languages.'),
|
|
256
|
+
nls_1.nls.localizeByDefault('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.')
|
|
257
257
|
],
|
|
258
|
-
'description': nls_1.nls.
|
|
258
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should automatically adjust the indentation when users type, paste, move or indent lines.'),
|
|
259
259
|
'type': 'string',
|
|
260
260
|
'enum': [
|
|
261
261
|
'none',
|
|
@@ -268,12 +268,12 @@ const codeEditorPreferenceProperties = {
|
|
|
268
268
|
},
|
|
269
269
|
'editor.autoSurround': {
|
|
270
270
|
'enumDescriptions': [
|
|
271
|
-
nls_1.nls.
|
|
272
|
-
nls_1.nls.
|
|
273
|
-
nls_1.nls.
|
|
271
|
+
nls_1.nls.localizeByDefault('Use language configurations to determine when to automatically surround selections.'),
|
|
272
|
+
nls_1.nls.localizeByDefault('Surround with quotes but not brackets.'),
|
|
273
|
+
nls_1.nls.localizeByDefault('Surround with brackets but not quotes.'),
|
|
274
274
|
''
|
|
275
275
|
],
|
|
276
|
-
'description': nls_1.nls.
|
|
276
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should automatically surround selections when typing quotes or brackets.'),
|
|
277
277
|
'type': 'string',
|
|
278
278
|
'enum': [
|
|
279
279
|
'languageDefined',
|
|
@@ -294,12 +294,12 @@ const codeEditorPreferenceProperties = {
|
|
|
294
294
|
'description': nls_1.nls.localize('theia/editor/automaticLayout', 'Enable that the editor will install an interval to check if its container dom node size has changed. Enabling this might have a severe performance impact.')
|
|
295
295
|
},
|
|
296
296
|
'editor.codeLens': {
|
|
297
|
-
'description': nls_1.nls.
|
|
297
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor shows CodeLens.'),
|
|
298
298
|
'type': 'boolean',
|
|
299
299
|
'default': true
|
|
300
300
|
},
|
|
301
301
|
'editor.codeLensFontFamily': {
|
|
302
|
-
'description': nls_1.nls.
|
|
302
|
+
'description': nls_1.nls.localizeByDefault('Controls the font family for CodeLens.'),
|
|
303
303
|
'type': 'string',
|
|
304
304
|
'default': true
|
|
305
305
|
},
|
|
@@ -308,22 +308,22 @@ const codeEditorPreferenceProperties = {
|
|
|
308
308
|
'default': 0,
|
|
309
309
|
'minimum': 0,
|
|
310
310
|
'maximum': 100,
|
|
311
|
-
'description': nls_1.nls.
|
|
311
|
+
'description': nls_1.nls.localizeByDefault('Controls the font size in pixels for CodeLens. When set to `0`, the 90% of `#editor.fontSize#` is used.')
|
|
312
312
|
},
|
|
313
313
|
'editor.colorDecorators': {
|
|
314
|
-
'description': nls_1.nls.
|
|
314
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should render the inline color decorators and color picker.'),
|
|
315
315
|
'type': 'boolean',
|
|
316
316
|
'default': true
|
|
317
317
|
},
|
|
318
318
|
'editor.comments.insertSpace': {
|
|
319
319
|
'type': 'boolean',
|
|
320
320
|
'default': true,
|
|
321
|
-
'description': nls_1.nls.
|
|
321
|
+
'description': nls_1.nls.localizeByDefault('Controls whether a space character is inserted when commenting.')
|
|
322
322
|
},
|
|
323
323
|
'editor.comments.ignoreEmptyLines': {
|
|
324
324
|
'type': 'boolean',
|
|
325
325
|
'default': true,
|
|
326
|
-
'description': nls_1.nls.
|
|
326
|
+
'description': nls_1.nls.localizeByDefault('Controls if empty lines should be ignored with toggle, add or remove actions for line comments.')
|
|
327
327
|
},
|
|
328
328
|
'editor.contextmenu': {
|
|
329
329
|
'description': nls_1.nls.localize('theia/editor/contextmenu', 'Controls whether to enable the custom contextmenu.'),
|
|
@@ -331,12 +331,12 @@ const codeEditorPreferenceProperties = {
|
|
|
331
331
|
'default': true,
|
|
332
332
|
},
|
|
333
333
|
'editor.copyWithSyntaxHighlighting': {
|
|
334
|
-
'description': nls_1.nls.
|
|
334
|
+
'description': nls_1.nls.localizeByDefault('Controls whether syntax highlighting should be copied into the clipboard.'),
|
|
335
335
|
'type': 'boolean',
|
|
336
336
|
'default': true
|
|
337
337
|
},
|
|
338
338
|
'editor.cursorBlinking': {
|
|
339
|
-
'description': nls_1.nls.
|
|
339
|
+
'description': nls_1.nls.localizeByDefault('Control the cursor animation style.'),
|
|
340
340
|
'type': 'string',
|
|
341
341
|
'enum': [
|
|
342
342
|
'blink',
|
|
@@ -348,12 +348,12 @@ const codeEditorPreferenceProperties = {
|
|
|
348
348
|
'default': 'blink'
|
|
349
349
|
},
|
|
350
350
|
'editor.cursorSmoothCaretAnimation': {
|
|
351
|
-
'description': nls_1.nls.
|
|
351
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the smooth caret animation should be enabled.'),
|
|
352
352
|
'type': 'boolean',
|
|
353
353
|
'default': false
|
|
354
354
|
},
|
|
355
355
|
'editor.cursorStyle': {
|
|
356
|
-
'description': nls_1.nls.
|
|
356
|
+
'description': nls_1.nls.localizeByDefault('Controls the cursor style.'),
|
|
357
357
|
'type': 'string',
|
|
358
358
|
'enum': [
|
|
359
359
|
'line',
|
|
@@ -366,7 +366,7 @@ const codeEditorPreferenceProperties = {
|
|
|
366
366
|
'default': 'line'
|
|
367
367
|
},
|
|
368
368
|
'editor.cursorSurroundingLines': {
|
|
369
|
-
'description': nls_1.nls.
|
|
369
|
+
'description': nls_1.nls.localizeByDefault("Controls the minimal number of visible leading and trailing lines surrounding the cursor. Known as 'scrollOff' or 'scrollOffset' in some other editors."),
|
|
370
370
|
'type': 'integer',
|
|
371
371
|
'default': 0,
|
|
372
372
|
'minimum': 0,
|
|
@@ -374,10 +374,10 @@ const codeEditorPreferenceProperties = {
|
|
|
374
374
|
},
|
|
375
375
|
'editor.cursorSurroundingLinesStyle': {
|
|
376
376
|
'enumDescriptions': [
|
|
377
|
-
nls_1.nls.
|
|
378
|
-
nls_1.nls.
|
|
377
|
+
nls_1.nls.localizeByDefault('`cursorSurroundingLines` is enforced only when triggered via the keyboard or API.'),
|
|
378
|
+
nls_1.nls.localizeByDefault('`cursorSurroundingLines` is enforced always.')
|
|
379
379
|
],
|
|
380
|
-
'description': nls_1.nls.
|
|
380
|
+
'description': nls_1.nls.localizeByDefault('Controls when `cursorSurroundingLines` should be enforced.'),
|
|
381
381
|
'type': 'string',
|
|
382
382
|
'enum': [
|
|
383
383
|
'default',
|
|
@@ -386,7 +386,7 @@ const codeEditorPreferenceProperties = {
|
|
|
386
386
|
'default': 'default'
|
|
387
387
|
},
|
|
388
388
|
'editor.cursorWidth': {
|
|
389
|
-
'markdownDescription': nls_1.nls.
|
|
389
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Controls the width of the cursor when `#editor.cursorStyle#` is set to `line`.'),
|
|
390
390
|
'type': 'integer',
|
|
391
391
|
'default': 0,
|
|
392
392
|
'minimum': 0,
|
|
@@ -403,12 +403,12 @@ const codeEditorPreferenceProperties = {
|
|
|
403
403
|
'default': false
|
|
404
404
|
},
|
|
405
405
|
'editor.dragAndDrop': {
|
|
406
|
-
'description': nls_1.nls.
|
|
406
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should allow moving selections via drag and drop.'),
|
|
407
407
|
'type': 'boolean',
|
|
408
408
|
'default': true
|
|
409
409
|
},
|
|
410
410
|
'editor.emptySelectionClipboard': {
|
|
411
|
-
'description': nls_1.nls.
|
|
411
|
+
'description': nls_1.nls.localizeByDefault('Controls whether copying without a selection copies the current line.'),
|
|
412
412
|
'type': 'boolean',
|
|
413
413
|
'default': true
|
|
414
414
|
},
|
|
@@ -418,19 +418,19 @@ const codeEditorPreferenceProperties = {
|
|
|
418
418
|
'default': ''
|
|
419
419
|
},
|
|
420
420
|
'editor.fastScrollSensitivity': {
|
|
421
|
-
'markdownDescription': nls_1.nls.
|
|
421
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Scrolling speed multiplier when pressing `Alt`.'),
|
|
422
422
|
'type': 'number',
|
|
423
423
|
'default': 5
|
|
424
424
|
},
|
|
425
425
|
'editor.find.cursorMoveOnType': {
|
|
426
|
-
'description': nls_1.nls.
|
|
426
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the cursor should jump to find matches while typing.'),
|
|
427
427
|
'type': 'boolean',
|
|
428
428
|
'default': true
|
|
429
429
|
},
|
|
430
430
|
'editor.find.seedSearchStringFromSelection': {
|
|
431
431
|
'type': 'boolean',
|
|
432
432
|
'default': true,
|
|
433
|
-
'description': nls_1.nls.
|
|
433
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the search string in the Find Widget is seeded from the editor selection.')
|
|
434
434
|
},
|
|
435
435
|
'editor.find.autoFindInSelection': {
|
|
436
436
|
'type': 'string',
|
|
@@ -441,27 +441,27 @@ const codeEditorPreferenceProperties = {
|
|
|
441
441
|
],
|
|
442
442
|
'default': 'never',
|
|
443
443
|
'enumDescriptions': [
|
|
444
|
-
nls_1.nls.
|
|
445
|
-
nls_1.nls.
|
|
446
|
-
nls_1.nls.
|
|
444
|
+
nls_1.nls.localizeByDefault('Never turn on Find in selection automatically (default)'),
|
|
445
|
+
nls_1.nls.localizeByDefault('Always turn on Find in selection automatically'),
|
|
446
|
+
nls_1.nls.localizeByDefault('Turn on Find in selection automatically when multiple lines of content are selected.')
|
|
447
447
|
],
|
|
448
|
-
'description': nls_1.nls.
|
|
448
|
+
'description': nls_1.nls.localizeByDefault('Controls the condition for turning on find in selection automatically.')
|
|
449
449
|
},
|
|
450
450
|
'editor.find.globalFindClipboard': {
|
|
451
451
|
'type': 'boolean',
|
|
452
452
|
'default': false,
|
|
453
|
-
'description': nls_1.nls.
|
|
453
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the Find Widget should read or modify the shared find clipboard on macOS.'),
|
|
454
454
|
'included': os_1.isOSX
|
|
455
455
|
},
|
|
456
456
|
'editor.find.addExtraSpaceOnTop': {
|
|
457
457
|
'type': 'boolean',
|
|
458
458
|
'default': true,
|
|
459
|
-
'description': nls_1.nls.
|
|
459
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the Find Widget should add extra lines on top of the editor. When true, you can scroll beyond the first line when the Find Widget is visible.')
|
|
460
460
|
},
|
|
461
461
|
'editor.find.loop': {
|
|
462
462
|
'type': 'boolean',
|
|
463
463
|
'default': true,
|
|
464
|
-
'description': nls_1.nls.
|
|
464
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the search automatically restarts from the beginning (or the end) when no further matches can be found.')
|
|
465
465
|
},
|
|
466
466
|
'editor.fixedOverflowWidgets': {
|
|
467
467
|
'markdownDescription': nls_1.nls.localize('theia/editor/fixedOverflowWidgets', 'Controls whether to display overflow widgets as `fixed`.'),
|
|
@@ -469,35 +469,35 @@ const codeEditorPreferenceProperties = {
|
|
|
469
469
|
'default': false,
|
|
470
470
|
},
|
|
471
471
|
'editor.folding': {
|
|
472
|
-
'description': nls_1.nls.
|
|
472
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor has code folding enabled.'),
|
|
473
473
|
'type': 'boolean',
|
|
474
474
|
'default': true
|
|
475
475
|
},
|
|
476
476
|
'editor.foldingStrategy': {
|
|
477
|
-
'markdownDescription': nls_1.nls.
|
|
477
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Controls the strategy for computing folding ranges.'),
|
|
478
478
|
'type': 'string',
|
|
479
479
|
'enum': [
|
|
480
480
|
'auto',
|
|
481
481
|
'indentation'
|
|
482
482
|
],
|
|
483
483
|
'enumDescriptions': [
|
|
484
|
-
nls_1.nls.
|
|
485
|
-
nls_1.nls.
|
|
484
|
+
nls_1.nls.localizeByDefault('Use a language-specific folding strategy if available, else the indentation-based one.'),
|
|
485
|
+
nls_1.nls.localizeByDefault('Use the indentation-based folding strategy.'),
|
|
486
486
|
],
|
|
487
487
|
'default': 'auto'
|
|
488
488
|
},
|
|
489
489
|
'editor.foldingHighlight': {
|
|
490
|
-
'description': nls_1.nls.
|
|
490
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should highlight folded ranges.'),
|
|
491
491
|
'type': 'boolean',
|
|
492
492
|
'default': true
|
|
493
493
|
},
|
|
494
494
|
'editor.unfoldOnClickAfterEndOfLine': {
|
|
495
|
-
'description': nls_1.nls.
|
|
495
|
+
'description': nls_1.nls.localizeByDefault('Controls whether clicking on the empty content after a folded line will unfold the line.'),
|
|
496
496
|
'type': 'boolean',
|
|
497
497
|
'default': false
|
|
498
498
|
},
|
|
499
499
|
'editor.fontFamily': {
|
|
500
|
-
'description': nls_1.nls.
|
|
500
|
+
'description': nls_1.nls.localizeByDefault('Controls the font family.'),
|
|
501
501
|
'type': 'string',
|
|
502
502
|
'default': exports.EDITOR_FONT_DEFAULTS.fontFamily
|
|
503
503
|
},
|
|
@@ -505,14 +505,14 @@ const codeEditorPreferenceProperties = {
|
|
|
505
505
|
'anyOf': [
|
|
506
506
|
{
|
|
507
507
|
'type': 'boolean',
|
|
508
|
-
'description': nls_1.nls.
|
|
508
|
+
'description': nls_1.nls.localizeByDefault("Enables/Disables font ligatures ('calt' and 'liga' font features). Change this to a string for fine-grained control of the 'font-feature-settings' CSS property.")
|
|
509
509
|
},
|
|
510
510
|
{
|
|
511
511
|
'type': 'string',
|
|
512
|
-
'description': nls_1.nls.
|
|
512
|
+
'description': nls_1.nls.localizeByDefault("Explicit 'font-feature-settings' CSS property. A boolean can be passed instead if one only needs to turn on/off ligatures.")
|
|
513
513
|
}
|
|
514
514
|
],
|
|
515
|
-
'description': nls_1.nls.
|
|
515
|
+
'description': nls_1.nls.localizeByDefault("Configures font ligatures or font features. Can be either a boolean to enable/disable ligatures or a string for the value of the CSS 'font-feature-settings' property."),
|
|
516
516
|
'default': false
|
|
517
517
|
},
|
|
518
518
|
'editor.fontSize': {
|
|
@@ -520,7 +520,7 @@ const codeEditorPreferenceProperties = {
|
|
|
520
520
|
'minimum': 6,
|
|
521
521
|
'maximum': 100,
|
|
522
522
|
'default': exports.EDITOR_FONT_DEFAULTS.fontSize,
|
|
523
|
-
'description': nls_1.nls.
|
|
523
|
+
'description': nls_1.nls.localizeByDefault('Controls the font size in pixels.')
|
|
524
524
|
},
|
|
525
525
|
'editor.fontWeight': {
|
|
526
526
|
'enum': [
|
|
@@ -536,32 +536,32 @@ const codeEditorPreferenceProperties = {
|
|
|
536
536
|
'800',
|
|
537
537
|
'900'
|
|
538
538
|
],
|
|
539
|
-
'description': nls_1.nls.
|
|
539
|
+
'description': nls_1.nls.localizeByDefault('Controls the font weight. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000.'),
|
|
540
540
|
'type': 'string',
|
|
541
541
|
'default': exports.EDITOR_FONT_DEFAULTS.fontWeight
|
|
542
542
|
},
|
|
543
543
|
'editor.formatOnPaste': {
|
|
544
|
-
'description': nls_1.nls.
|
|
544
|
+
'description': nls_1.nls.localizeByDefault('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.'),
|
|
545
545
|
'type': 'boolean',
|
|
546
546
|
'default': false
|
|
547
547
|
},
|
|
548
548
|
'editor.formatOnType': {
|
|
549
|
-
'description': nls_1.nls.
|
|
549
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should automatically format the line after typing.'),
|
|
550
550
|
'type': 'boolean',
|
|
551
551
|
'default': false
|
|
552
552
|
},
|
|
553
553
|
'editor.glyphMargin': {
|
|
554
|
-
'description': nls_1.nls.
|
|
554
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should render the vertical glyph margin. Glyph margin is mostly used for debugging.'),
|
|
555
555
|
'type': 'boolean',
|
|
556
556
|
'default': true
|
|
557
557
|
},
|
|
558
558
|
'editor.gotoLocation.multiple': {
|
|
559
559
|
'type': 'string',
|
|
560
560
|
'default': '',
|
|
561
|
-
'deprecationMessage': nls_1.nls.
|
|
561
|
+
'deprecationMessage': nls_1.nls.localizeByDefault("This setting is deprecated, please use separate settings like 'editor.editor.gotoLocation.multipleDefinitions' or 'editor.editor.gotoLocation.multipleImplementations' instead.")
|
|
562
562
|
},
|
|
563
563
|
'editor.gotoLocation.multipleDefinitions': {
|
|
564
|
-
'description': nls_1.nls.
|
|
564
|
+
'description': nls_1.nls.localizeByDefault("Controls the behavior the 'Go to Definition'-command when multiple target locations exist."),
|
|
565
565
|
'type': 'string',
|
|
566
566
|
'enum': [
|
|
567
567
|
'peek',
|
|
@@ -570,13 +570,13 @@ const codeEditorPreferenceProperties = {
|
|
|
570
570
|
],
|
|
571
571
|
'default': 'peek',
|
|
572
572
|
'enumDescriptions': [
|
|
573
|
-
nls_1.nls.
|
|
574
|
-
nls_1.nls.
|
|
575
|
-
nls_1.nls.
|
|
573
|
+
nls_1.nls.localizeByDefault('Show peek view of the results (default)'),
|
|
574
|
+
nls_1.nls.localizeByDefault('Go to the primary result and show a peek view'),
|
|
575
|
+
nls_1.nls.localizeByDefault('Go to the primary result and enable peek-less navigation to others')
|
|
576
576
|
]
|
|
577
577
|
},
|
|
578
578
|
'editor.gotoLocation.multipleTypeDefinitions': {
|
|
579
|
-
'description': nls_1.nls.
|
|
579
|
+
'description': nls_1.nls.localizeByDefault("Controls the behavior the 'Go to Type Definition'-command when multiple target locations exist."),
|
|
580
580
|
'type': 'string',
|
|
581
581
|
'enum': [
|
|
582
582
|
'peek',
|
|
@@ -585,13 +585,13 @@ const codeEditorPreferenceProperties = {
|
|
|
585
585
|
],
|
|
586
586
|
'default': 'peek',
|
|
587
587
|
'enumDescriptions': [
|
|
588
|
-
nls_1.nls.
|
|
589
|
-
nls_1.nls.
|
|
590
|
-
nls_1.nls.
|
|
588
|
+
nls_1.nls.localizeByDefault('Show peek view of the results (default)'),
|
|
589
|
+
nls_1.nls.localizeByDefault('Go to the primary result and show a peek view'),
|
|
590
|
+
nls_1.nls.localizeByDefault('Go to the primary result and enable peek-less navigation to others')
|
|
591
591
|
]
|
|
592
592
|
},
|
|
593
593
|
'editor.gotoLocation.multipleDeclarations': {
|
|
594
|
-
'description': nls_1.nls.
|
|
594
|
+
'description': nls_1.nls.localizeByDefault("Controls the behavior the 'Go to Declaration'-command when multiple target locations exist."),
|
|
595
595
|
'type': 'string',
|
|
596
596
|
'enum': [
|
|
597
597
|
'peek',
|
|
@@ -600,13 +600,13 @@ const codeEditorPreferenceProperties = {
|
|
|
600
600
|
],
|
|
601
601
|
'default': 'peek',
|
|
602
602
|
'enumDescriptions': [
|
|
603
|
-
nls_1.nls.
|
|
604
|
-
nls_1.nls.
|
|
605
|
-
nls_1.nls.
|
|
603
|
+
nls_1.nls.localizeByDefault('Show peek view of the results (default)'),
|
|
604
|
+
nls_1.nls.localizeByDefault('Go to the primary result and show a peek view'),
|
|
605
|
+
nls_1.nls.localizeByDefault('Go to the primary result and enable peek-less navigation to others')
|
|
606
606
|
]
|
|
607
607
|
},
|
|
608
608
|
'editor.gotoLocation.multipleImplementations': {
|
|
609
|
-
'description': nls_1.nls.
|
|
609
|
+
'description': nls_1.nls.localizeByDefault("Controls the behavior the 'Go to Implementations'-command when multiple target locations exist."),
|
|
610
610
|
'type': 'string',
|
|
611
611
|
'enum': [
|
|
612
612
|
'peek',
|
|
@@ -615,13 +615,13 @@ const codeEditorPreferenceProperties = {
|
|
|
615
615
|
],
|
|
616
616
|
'default': 'peek',
|
|
617
617
|
'enumDescriptions': [
|
|
618
|
-
nls_1.nls.
|
|
619
|
-
nls_1.nls.
|
|
620
|
-
nls_1.nls.
|
|
618
|
+
nls_1.nls.localizeByDefault('Show peek view of the results (default)'),
|
|
619
|
+
nls_1.nls.localizeByDefault('Go to the primary result and show a peek view'),
|
|
620
|
+
nls_1.nls.localizeByDefault('Go to the primary result and enable peek-less navigation to others')
|
|
621
621
|
]
|
|
622
622
|
},
|
|
623
623
|
'editor.gotoLocation.multipleReferences': {
|
|
624
|
-
'description': nls_1.nls.
|
|
624
|
+
'description': nls_1.nls.localizeByDefault("Controls the behavior the 'Go to References'-command when multiple target locations exist."),
|
|
625
625
|
'type': 'string',
|
|
626
626
|
'enum': [
|
|
627
627
|
'peek',
|
|
@@ -630,38 +630,38 @@ const codeEditorPreferenceProperties = {
|
|
|
630
630
|
],
|
|
631
631
|
'default': 'peek',
|
|
632
632
|
'enumDescriptions': [
|
|
633
|
-
nls_1.nls.
|
|
634
|
-
nls_1.nls.
|
|
635
|
-
nls_1.nls.
|
|
633
|
+
nls_1.nls.localizeByDefault('Show peek view of the results (default)'),
|
|
634
|
+
nls_1.nls.localizeByDefault('Go to the primary result and show a peek view'),
|
|
635
|
+
nls_1.nls.localizeByDefault('Go to the primary result and enable peek-less navigation to others')
|
|
636
636
|
]
|
|
637
637
|
},
|
|
638
638
|
'editor.gotoLocation.alternativeDefinitionCommand': {
|
|
639
639
|
'type': 'string',
|
|
640
640
|
'default': 'editor.action.goToReferences',
|
|
641
|
-
'description': nls_1.nls.
|
|
641
|
+
'description': nls_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Definition' is the current location.")
|
|
642
642
|
},
|
|
643
643
|
'editor.gotoLocation.alternativeTypeDefinitionCommand': {
|
|
644
644
|
'type': 'string',
|
|
645
645
|
'default': 'editor.action.goToReferences',
|
|
646
|
-
'description': nls_1.nls.
|
|
646
|
+
'description': nls_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Type Definition' is the current location.")
|
|
647
647
|
},
|
|
648
648
|
'editor.gotoLocation.alternativeDeclarationCommand': {
|
|
649
649
|
'type': 'string',
|
|
650
650
|
'default': 'editor.action.goToReferences',
|
|
651
|
-
'description': nls_1.nls.
|
|
651
|
+
'description': nls_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Declaration' is the current location.")
|
|
652
652
|
},
|
|
653
653
|
'editor.gotoLocation.alternativeImplementationCommand': {
|
|
654
654
|
'type': 'string',
|
|
655
655
|
'default': '',
|
|
656
|
-
'description': nls_1.nls.
|
|
656
|
+
'description': nls_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Implementation' is the current location.")
|
|
657
657
|
},
|
|
658
658
|
'editor.gotoLocation.alternativeReferenceCommand': {
|
|
659
659
|
'type': 'string',
|
|
660
660
|
'default': '',
|
|
661
|
-
'description': nls_1.nls.
|
|
661
|
+
'description': nls_1.nls.localizeByDefault("Alternative command id that is being executed when the result of 'Go to Reference' is the current location.")
|
|
662
662
|
},
|
|
663
663
|
'editor.hideCursorInOverviewRuler': {
|
|
664
|
-
'description': nls_1.nls.
|
|
664
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the cursor should be hidden in the overview ruler.'),
|
|
665
665
|
'type': 'boolean',
|
|
666
666
|
'default': false
|
|
667
667
|
},
|
|
@@ -673,34 +673,34 @@ const codeEditorPreferenceProperties = {
|
|
|
673
673
|
'editor.hover.enabled': {
|
|
674
674
|
'type': 'boolean',
|
|
675
675
|
'default': true,
|
|
676
|
-
'description': nls_1.nls.
|
|
676
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the hover is shown.')
|
|
677
677
|
},
|
|
678
678
|
'editor.hover.delay': {
|
|
679
679
|
'type': 'number',
|
|
680
680
|
'default': 300,
|
|
681
|
-
'description': nls_1.nls.
|
|
681
|
+
'description': nls_1.nls.localizeByDefault('Controls the delay in milliseconds after which the hover is shown.')
|
|
682
682
|
},
|
|
683
683
|
'editor.hover.sticky': {
|
|
684
684
|
'type': 'boolean',
|
|
685
685
|
'default': true,
|
|
686
|
-
'description': nls_1.nls.
|
|
686
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the hover should remain visible when mouse is moved over it.')
|
|
687
687
|
},
|
|
688
688
|
'editor.inDiffEditor': {
|
|
689
689
|
'type': 'boolean',
|
|
690
690
|
'default': true,
|
|
691
691
|
},
|
|
692
692
|
'editor.letterSpacing': {
|
|
693
|
-
'description': nls_1.nls.
|
|
693
|
+
'description': nls_1.nls.localizeByDefault('Controls the letter spacing in pixels.'),
|
|
694
694
|
'type': 'number',
|
|
695
695
|
'default': exports.EDITOR_FONT_DEFAULTS.letterSpacing
|
|
696
696
|
},
|
|
697
697
|
'editor.lightbulb.enabled': {
|
|
698
698
|
'type': 'boolean',
|
|
699
699
|
'default': true,
|
|
700
|
-
'description': nls_1.nls.
|
|
700
|
+
'description': nls_1.nls.localizeByDefault('Enables the code action lightbulb in the editor.')
|
|
701
701
|
},
|
|
702
702
|
'editor.lineHeight': {
|
|
703
|
-
'description': nls_1.nls.
|
|
703
|
+
'description': nls_1.nls.localizeByDefault('Controls the line height. Use 0 to compute the line height from the font size.'),
|
|
704
704
|
'type': 'integer',
|
|
705
705
|
'default': exports.EDITOR_FONT_DEFAULTS.lineHeight,
|
|
706
706
|
'minimum': 0,
|
|
@@ -715,13 +715,13 @@ const codeEditorPreferenceProperties = {
|
|
|
715
715
|
'interval'
|
|
716
716
|
],
|
|
717
717
|
'enumDescriptions': [
|
|
718
|
-
nls_1.nls.
|
|
719
|
-
nls_1.nls.
|
|
720
|
-
nls_1.nls.
|
|
721
|
-
nls_1.nls.
|
|
718
|
+
nls_1.nls.localizeByDefault('Line numbers are not rendered.'),
|
|
719
|
+
nls_1.nls.localizeByDefault('Line numbers are rendered as absolute number.'),
|
|
720
|
+
nls_1.nls.localizeByDefault('Line numbers are rendered as distance in lines to cursor position.'),
|
|
721
|
+
nls_1.nls.localizeByDefault('Line numbers are rendered every 10 lines.')
|
|
722
722
|
],
|
|
723
723
|
'default': 'on',
|
|
724
|
-
'description': nls_1.nls.
|
|
724
|
+
'description': nls_1.nls.localizeByDefault('Controls the display of line numbers.')
|
|
725
725
|
},
|
|
726
726
|
'editor.lineNumbersMinChars': {
|
|
727
727
|
'description': nls_1.nls.localize('theia/editor/lineNumbersMinChars', 'Controls the line height. Use 0 to compute the line height from the font size.'),
|
|
@@ -731,17 +731,17 @@ const codeEditorPreferenceProperties = {
|
|
|
731
731
|
'maximum': 300
|
|
732
732
|
},
|
|
733
733
|
'editor.linkedEditing': {
|
|
734
|
-
'description': nls_1.nls.
|
|
734
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor has linked editing enabled. Depending on the language, related symbols, e.g. HTML tags, are updated while editing.'),
|
|
735
735
|
'type': 'boolean',
|
|
736
736
|
'default': false
|
|
737
737
|
},
|
|
738
738
|
'editor.links': {
|
|
739
|
-
'description': nls_1.nls.
|
|
739
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should detect links and make them clickable.'),
|
|
740
740
|
'type': 'boolean',
|
|
741
741
|
'default': true
|
|
742
742
|
},
|
|
743
743
|
'editor.matchBrackets': {
|
|
744
|
-
'description': nls_1.nls.
|
|
744
|
+
'description': nls_1.nls.localizeByDefault('Highlight matching brackets.'),
|
|
745
745
|
'type': 'string',
|
|
746
746
|
'enum': [
|
|
747
747
|
'always',
|
|
@@ -753,7 +753,7 @@ const codeEditorPreferenceProperties = {
|
|
|
753
753
|
'editor.minimap.enabled': {
|
|
754
754
|
'type': 'boolean',
|
|
755
755
|
'default': true,
|
|
756
|
-
'description': nls_1.nls.
|
|
756
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the minimap is shown.')
|
|
757
757
|
},
|
|
758
758
|
'editor.minimap.side': {
|
|
759
759
|
'type': 'string',
|
|
@@ -762,7 +762,7 @@ const codeEditorPreferenceProperties = {
|
|
|
762
762
|
'right'
|
|
763
763
|
],
|
|
764
764
|
'default': 'right',
|
|
765
|
-
'description': nls_1.nls.
|
|
765
|
+
'description': nls_1.nls.localizeByDefault('Controls the side where to render the minimap.')
|
|
766
766
|
},
|
|
767
767
|
'editor.minimap.showSlider': {
|
|
768
768
|
'type': 'string',
|
|
@@ -771,24 +771,24 @@ const codeEditorPreferenceProperties = {
|
|
|
771
771
|
'mouseover'
|
|
772
772
|
],
|
|
773
773
|
'default': 'mouseover',
|
|
774
|
-
'description': nls_1.nls.
|
|
774
|
+
'description': nls_1.nls.localizeByDefault('Controls when the minimap slider is shown.')
|
|
775
775
|
},
|
|
776
776
|
'editor.minimap.scale': {
|
|
777
777
|
'type': 'number',
|
|
778
778
|
'default': 1,
|
|
779
779
|
'minimum': 1,
|
|
780
780
|
'maximum': 3,
|
|
781
|
-
'description': nls_1.nls.
|
|
781
|
+
'description': nls_1.nls.localizeByDefault('Scale of content drawn in the minimap: 1, 2 or 3.')
|
|
782
782
|
},
|
|
783
783
|
'editor.minimap.renderCharacters': {
|
|
784
784
|
'type': 'boolean',
|
|
785
785
|
'default': true,
|
|
786
|
-
'description': nls_1.nls.
|
|
786
|
+
'description': nls_1.nls.localizeByDefault('Render the actual characters on a line as opposed to color blocks.')
|
|
787
787
|
},
|
|
788
788
|
'editor.minimap.maxColumn': {
|
|
789
789
|
'type': 'number',
|
|
790
790
|
'default': 120,
|
|
791
|
-
'description': nls_1.nls.
|
|
791
|
+
'description': nls_1.nls.localizeByDefault('Limit the width of the minimap to render at most a certain number of columns.')
|
|
792
792
|
},
|
|
793
793
|
'editor.mouseStyle': {
|
|
794
794
|
'description': nls_1.nls.localize('theia/editor/mouseStyle', 'Controls the mouse pointer style.'),
|
|
@@ -797,26 +797,26 @@ const codeEditorPreferenceProperties = {
|
|
|
797
797
|
'default': 'text'
|
|
798
798
|
},
|
|
799
799
|
'editor.mouseWheelScrollSensitivity': {
|
|
800
|
-
'markdownDescription': nls_1.nls.
|
|
800
|
+
'markdownDescription': nls_1.nls.localizeByDefault('A multiplier to be used on the `deltaX` and `deltaY` of mouse wheel scroll events.'),
|
|
801
801
|
'type': 'number',
|
|
802
802
|
'default': 1
|
|
803
803
|
},
|
|
804
804
|
'editor.mouseWheelZoom': {
|
|
805
|
-
'markdownDescription': nls_1.nls.
|
|
805
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Zoom the font of the editor when using mouse wheel and holding `Ctrl`.'),
|
|
806
806
|
'type': 'boolean',
|
|
807
807
|
'default': false
|
|
808
808
|
},
|
|
809
809
|
'editor.multiCursorMergeOverlapping': {
|
|
810
|
-
'description': nls_1.nls.
|
|
810
|
+
'description': nls_1.nls.localizeByDefault('Merge multiple cursors when they are overlapping.'),
|
|
811
811
|
'type': 'boolean',
|
|
812
812
|
'default': true
|
|
813
813
|
},
|
|
814
814
|
'editor.multiCursorModifier': {
|
|
815
815
|
'markdownEnumDescriptions': [
|
|
816
|
-
nls_1.nls.
|
|
817
|
-
nls_1.nls.
|
|
816
|
+
nls_1.nls.localizeByDefault('Maps to `Control` on Windows and Linux and to `Command` on macOS.'),
|
|
817
|
+
nls_1.nls.localizeByDefault('Maps to `Alt` on Windows and Linux and to `Option` on macOS.')
|
|
818
818
|
],
|
|
819
|
-
'markdownDescription': nls_1.nls.
|
|
819
|
+
'markdownDescription': nls_1.nls.localizeByDefault('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. [Read more](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).'),
|
|
820
820
|
'type': 'string',
|
|
821
821
|
'enum': [
|
|
822
822
|
'ctrlCmd',
|
|
@@ -826,10 +826,10 @@ const codeEditorPreferenceProperties = {
|
|
|
826
826
|
},
|
|
827
827
|
'editor.multiCursorPaste': {
|
|
828
828
|
'markdownEnumDescriptions': [
|
|
829
|
-
nls_1.nls.
|
|
830
|
-
nls_1.nls.
|
|
829
|
+
nls_1.nls.localizeByDefault('Each cursor pastes a single line of the text.'),
|
|
830
|
+
nls_1.nls.localizeByDefault('Each cursor pastes the full text.')
|
|
831
831
|
],
|
|
832
|
-
'markdownDescription': nls_1.nls.
|
|
832
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Controls pasting when the line count of the pasted text matches the cursor count.'),
|
|
833
833
|
'type': 'string',
|
|
834
834
|
'enum': [
|
|
835
835
|
'spread',
|
|
@@ -838,12 +838,12 @@ const codeEditorPreferenceProperties = {
|
|
|
838
838
|
'default': 'spread'
|
|
839
839
|
},
|
|
840
840
|
'editor.occurrencesHighlight': {
|
|
841
|
-
'description': nls_1.nls.
|
|
841
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should highlight semantic symbol occurrences.'),
|
|
842
842
|
'type': 'boolean',
|
|
843
843
|
'default': true
|
|
844
844
|
},
|
|
845
845
|
'editor.overviewRulerBorder': {
|
|
846
|
-
'description': nls_1.nls.
|
|
846
|
+
'description': nls_1.nls.localizeByDefault('Controls whether a border should be drawn around the overview ruler.'),
|
|
847
847
|
'type': 'boolean',
|
|
848
848
|
'default': true
|
|
849
849
|
},
|
|
@@ -859,31 +859,31 @@ const codeEditorPreferenceProperties = {
|
|
|
859
859
|
'default': 0,
|
|
860
860
|
'minimum': 0,
|
|
861
861
|
'maximum': 1000,
|
|
862
|
-
'description': nls_1.nls.
|
|
862
|
+
'description': nls_1.nls.localizeByDefault('Controls the amount of space between the top edge of the editor and the first line.')
|
|
863
863
|
},
|
|
864
864
|
'editor.padding.bottom': {
|
|
865
865
|
'type': 'number',
|
|
866
866
|
'default': 0,
|
|
867
867
|
'minimum': 0,
|
|
868
868
|
'maximum': 1000,
|
|
869
|
-
'description': nls_1.nls.
|
|
869
|
+
'description': nls_1.nls.localizeByDefault('Controls the amount of space between the bottom edge of the editor and the last line.')
|
|
870
870
|
},
|
|
871
871
|
'editor.parameterHints.enabled': {
|
|
872
872
|
'type': 'boolean',
|
|
873
873
|
'default': true,
|
|
874
|
-
'description': nls_1.nls.
|
|
874
|
+
'description': nls_1.nls.localizeByDefault('Enables a pop-up that shows parameter documentation and type information as you type.')
|
|
875
875
|
},
|
|
876
876
|
'editor.parameterHints.cycle': {
|
|
877
877
|
'type': 'boolean',
|
|
878
878
|
'default': false,
|
|
879
|
-
'description': nls_1.nls.
|
|
879
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the parameter hints menu cycles or closes when reaching the end of the list.')
|
|
880
880
|
},
|
|
881
881
|
'editor.peekWidgetDefaultFocus': {
|
|
882
882
|
'enumDescriptions': [
|
|
883
|
-
nls_1.nls.
|
|
884
|
-
nls_1.nls.
|
|
883
|
+
nls_1.nls.localizeByDefault('Focus the tree when opening peek'),
|
|
884
|
+
nls_1.nls.localizeByDefault('Focus the editor when opening peek')
|
|
885
885
|
],
|
|
886
|
-
'description': nls_1.nls.
|
|
886
|
+
'description': nls_1.nls.localizeByDefault('Controls whether to focus the inline editor or the tree in the peek widget.'),
|
|
887
887
|
'type': 'string',
|
|
888
888
|
'enum': [
|
|
889
889
|
'tree',
|
|
@@ -894,7 +894,7 @@ const codeEditorPreferenceProperties = {
|
|
|
894
894
|
'editor.definitionLinkOpensInPeek': {
|
|
895
895
|
'type': 'boolean',
|
|
896
896
|
'default': false,
|
|
897
|
-
'description': nls_1.nls.
|
|
897
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the Go to Definition mouse gesture always opens the peek widget.')
|
|
898
898
|
},
|
|
899
899
|
'editor.quickSuggestions': {
|
|
900
900
|
'anyOf': [
|
|
@@ -907,17 +907,17 @@ const codeEditorPreferenceProperties = {
|
|
|
907
907
|
'strings': {
|
|
908
908
|
'type': 'boolean',
|
|
909
909
|
'default': false,
|
|
910
|
-
'description': nls_1.nls.
|
|
910
|
+
'description': nls_1.nls.localizeByDefault('Enable quick suggestions inside strings.')
|
|
911
911
|
},
|
|
912
912
|
'comments': {
|
|
913
913
|
'type': 'boolean',
|
|
914
914
|
'default': false,
|
|
915
|
-
'description': nls_1.nls.
|
|
915
|
+
'description': nls_1.nls.localizeByDefault('Enable quick suggestions inside comments.')
|
|
916
916
|
},
|
|
917
917
|
'other': {
|
|
918
918
|
'type': 'boolean',
|
|
919
919
|
'default': true,
|
|
920
|
-
'description': nls_1.nls.
|
|
920
|
+
'description': nls_1.nls.localizeByDefault('Enable quick suggestions outside of strings and comments.')
|
|
921
921
|
}
|
|
922
922
|
}
|
|
923
923
|
}
|
|
@@ -927,10 +927,10 @@ const codeEditorPreferenceProperties = {
|
|
|
927
927
|
'comments': false,
|
|
928
928
|
'strings': false
|
|
929
929
|
},
|
|
930
|
-
'description': nls_1.nls.
|
|
930
|
+
'description': nls_1.nls.localizeByDefault('Controls whether suggestions should automatically show up while typing.')
|
|
931
931
|
},
|
|
932
932
|
'editor.quickSuggestionsDelay': {
|
|
933
|
-
'description': nls_1.nls.
|
|
933
|
+
'description': nls_1.nls.localizeByDefault('Controls the delay in milliseconds after which quick suggestions will show up.'),
|
|
934
934
|
'type': 'integer',
|
|
935
935
|
'default': 10,
|
|
936
936
|
'minimum': 0,
|
|
@@ -942,22 +942,22 @@ const codeEditorPreferenceProperties = {
|
|
|
942
942
|
'default': false
|
|
943
943
|
},
|
|
944
944
|
'editor.rename.enablePreview': {
|
|
945
|
-
'description': nls_1.nls.
|
|
945
|
+
'description': nls_1.nls.localizeByDefault('Enable/disable the ability to preview changes before renaming'),
|
|
946
946
|
'type': 'boolean',
|
|
947
947
|
'default': true
|
|
948
948
|
},
|
|
949
949
|
'editor.renderControlCharacters': {
|
|
950
|
-
'description': nls_1.nls.
|
|
950
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should render control characters.'),
|
|
951
951
|
'type': 'boolean',
|
|
952
952
|
'default': false
|
|
953
953
|
},
|
|
954
954
|
'editor.renderIndentGuides': {
|
|
955
|
-
'description': nls_1.nls.
|
|
955
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should render indent guides.'),
|
|
956
956
|
'type': 'boolean',
|
|
957
957
|
'default': true
|
|
958
958
|
},
|
|
959
959
|
'editor.renderFinalNewline': {
|
|
960
|
-
'description': nls_1.nls.
|
|
960
|
+
'description': nls_1.nls.localizeByDefault('Render last line number when the file ends with a newline.'),
|
|
961
961
|
'type': 'boolean',
|
|
962
962
|
'default': true
|
|
963
963
|
},
|
|
@@ -966,9 +966,9 @@ const codeEditorPreferenceProperties = {
|
|
|
966
966
|
'',
|
|
967
967
|
'',
|
|
968
968
|
'',
|
|
969
|
-
nls_1.nls.
|
|
969
|
+
nls_1.nls.localizeByDefault('Highlights both the gutter and the current line.')
|
|
970
970
|
],
|
|
971
|
-
'description': nls_1.nls.
|
|
971
|
+
'description': nls_1.nls.localizeByDefault('Controls how the editor should render the current line highlight.'),
|
|
972
972
|
'type': 'string',
|
|
973
973
|
'enum': [
|
|
974
974
|
'none',
|
|
@@ -979,7 +979,7 @@ const codeEditorPreferenceProperties = {
|
|
|
979
979
|
'default': 'line'
|
|
980
980
|
},
|
|
981
981
|
'editor.renderLineHighlightOnlyWhenFocus': {
|
|
982
|
-
'description': nls_1.nls.
|
|
982
|
+
'description': nls_1.nls.localizeByDefault('Controls if the editor should render the current line highlight only when the editor is focused'),
|
|
983
983
|
'type': 'boolean',
|
|
984
984
|
'default': false
|
|
985
985
|
},
|
|
@@ -992,12 +992,12 @@ const codeEditorPreferenceProperties = {
|
|
|
992
992
|
'editor.renderWhitespace': {
|
|
993
993
|
'enumDescriptions': [
|
|
994
994
|
'',
|
|
995
|
-
nls_1.nls.
|
|
996
|
-
nls_1.nls.
|
|
997
|
-
nls_1.nls.
|
|
995
|
+
nls_1.nls.localizeByDefault('Render whitespace characters except for single spaces between words.'),
|
|
996
|
+
nls_1.nls.localizeByDefault('Render whitespace characters only on selected text.'),
|
|
997
|
+
nls_1.nls.localizeByDefault('Render only trailing whitespace characters'),
|
|
998
998
|
''
|
|
999
999
|
],
|
|
1000
|
-
'description': nls_1.nls.
|
|
1000
|
+
'description': nls_1.nls.localizeByDefault('Controls how the editor should render whitespace characters.'),
|
|
1001
1001
|
'type': 'string',
|
|
1002
1002
|
'enum': [
|
|
1003
1003
|
'none',
|
|
@@ -1016,7 +1016,7 @@ const codeEditorPreferenceProperties = {
|
|
|
1016
1016
|
'maximum': 1000
|
|
1017
1017
|
},
|
|
1018
1018
|
'editor.roundedSelection': {
|
|
1019
|
-
'description': nls_1.nls.
|
|
1019
|
+
'description': nls_1.nls.localizeByDefault('Controls whether selections should have rounded corners.'),
|
|
1020
1020
|
'type': 'boolean',
|
|
1021
1021
|
'default': true
|
|
1022
1022
|
},
|
|
@@ -1026,87 +1026,87 @@ const codeEditorPreferenceProperties = {
|
|
|
1026
1026
|
'type': 'number'
|
|
1027
1027
|
},
|
|
1028
1028
|
'default': [],
|
|
1029
|
-
'description': nls_1.nls.
|
|
1029
|
+
'description': nls_1.nls.localizeByDefault('Render vertical rulers after a certain number of monospace characters. Use multiple values for multiple rulers. No rulers are drawn if array is empty.')
|
|
1030
1030
|
},
|
|
1031
1031
|
'editor.scrollBeyondLastColumn': {
|
|
1032
|
-
'description': nls_1.nls.
|
|
1032
|
+
'description': nls_1.nls.localizeByDefault('Controls the number of extra characters beyond which the editor will scroll horizontally.'),
|
|
1033
1033
|
'type': 'integer',
|
|
1034
1034
|
'default': 5,
|
|
1035
1035
|
'minimum': 0,
|
|
1036
1036
|
'maximum': 1073741824
|
|
1037
1037
|
},
|
|
1038
1038
|
'editor.scrollBeyondLastLine': {
|
|
1039
|
-
'description': nls_1.nls.
|
|
1039
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor will scroll beyond the last line.'),
|
|
1040
1040
|
'type': 'boolean',
|
|
1041
1041
|
'default': true
|
|
1042
1042
|
},
|
|
1043
1043
|
'editor.scrollPredominantAxis': {
|
|
1044
|
-
'description': nls_1.nls.
|
|
1044
|
+
'description': nls_1.nls.localizeByDefault('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.'),
|
|
1045
1045
|
'type': 'boolean',
|
|
1046
1046
|
'default': true
|
|
1047
1047
|
},
|
|
1048
1048
|
'editor.selectionClipboard': {
|
|
1049
|
-
'description': nls_1.nls.
|
|
1049
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the Linux primary clipboard should be supported.'),
|
|
1050
1050
|
'included': platform.isLinux,
|
|
1051
1051
|
'type': 'boolean',
|
|
1052
1052
|
'default': true
|
|
1053
1053
|
},
|
|
1054
1054
|
'editor.selectionHighlight': {
|
|
1055
|
-
'description': nls_1.nls.
|
|
1055
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor should highlight matches similar to the selection.'),
|
|
1056
1056
|
'type': 'boolean',
|
|
1057
1057
|
'default': true
|
|
1058
1058
|
},
|
|
1059
1059
|
'editor.selectOnLineNumbers': {
|
|
1060
|
-
'description': nls_1.nls.localize('
|
|
1060
|
+
'description': nls_1.nls.localize('theia/editor/selectOnLineNumbers', 'Controls whether to select the corresponding line when clicking on the line number'),
|
|
1061
1061
|
'type': 'boolean',
|
|
1062
1062
|
'default': true
|
|
1063
1063
|
},
|
|
1064
1064
|
'editor.showFoldingControls': {
|
|
1065
|
-
'description': nls_1.nls.
|
|
1065
|
+
'description': nls_1.nls.localizeByDefault('Controls when the folding controls on the gutter are shown.'),
|
|
1066
1066
|
'type': 'string',
|
|
1067
1067
|
'enum': [
|
|
1068
1068
|
'always',
|
|
1069
1069
|
'mouseover'
|
|
1070
1070
|
],
|
|
1071
1071
|
'enumDescriptions': [
|
|
1072
|
-
nls_1.nls.
|
|
1073
|
-
nls_1.nls.
|
|
1072
|
+
nls_1.nls.localizeByDefault('Always show the folding controls.'),
|
|
1073
|
+
nls_1.nls.localizeByDefault('Only show the folding controls when the mouse is over the gutter.'),
|
|
1074
1074
|
],
|
|
1075
1075
|
'default': 'mouseover'
|
|
1076
1076
|
},
|
|
1077
1077
|
'editor.showUnused': {
|
|
1078
|
-
'description': nls_1.nls.
|
|
1078
|
+
'description': nls_1.nls.localizeByDefault('Controls fading out of unused code.'),
|
|
1079
1079
|
'type': 'boolean',
|
|
1080
1080
|
'default': true
|
|
1081
1081
|
},
|
|
1082
1082
|
'editor.showDeprecated': {
|
|
1083
|
-
'description': nls_1.nls.
|
|
1083
|
+
'description': nls_1.nls.localizeByDefault('Controls strikethrough deprecated variables.'),
|
|
1084
1084
|
'type': 'boolean',
|
|
1085
1085
|
'default': true
|
|
1086
1086
|
},
|
|
1087
1087
|
'editor.inlineHints.enabled': {
|
|
1088
1088
|
'type': 'boolean',
|
|
1089
1089
|
'default': true,
|
|
1090
|
-
'description': nls_1.nls.
|
|
1090
|
+
'description': nls_1.nls.localizeByDefault('Enables the inline hints in the editor.')
|
|
1091
1091
|
},
|
|
1092
1092
|
'editor.inlineHints.fontSize': {
|
|
1093
1093
|
'type': 'number',
|
|
1094
1094
|
'default': exports.EDITOR_FONT_DEFAULTS.fontSize,
|
|
1095
|
-
description: nls_1.nls.
|
|
1095
|
+
description: nls_1.nls.localizeByDefault('Controls font size of inline hints in the editor. When set to `0`, the 90% of `#editor.fontSize#` is used.')
|
|
1096
1096
|
},
|
|
1097
1097
|
'editor.inlineHints.fontFamily': {
|
|
1098
1098
|
'type': 'string',
|
|
1099
1099
|
'default': exports.EDITOR_FONT_DEFAULTS.fontFamily,
|
|
1100
|
-
'description': nls_1.nls.
|
|
1100
|
+
'description': nls_1.nls.localizeByDefault('Controls font family of inline hints in the editor.')
|
|
1101
1101
|
},
|
|
1102
1102
|
'editor.snippetSuggestions': {
|
|
1103
1103
|
'enumDescriptions': [
|
|
1104
|
-
nls_1.nls.
|
|
1105
|
-
nls_1.nls.
|
|
1106
|
-
nls_1.nls.
|
|
1107
|
-
nls_1.nls.
|
|
1104
|
+
nls_1.nls.localizeByDefault('Show snippet suggestions on top of other suggestions.'),
|
|
1105
|
+
nls_1.nls.localizeByDefault('Show snippet suggestions below other suggestions.'),
|
|
1106
|
+
nls_1.nls.localizeByDefault('Show snippets suggestions with other suggestions.'),
|
|
1107
|
+
nls_1.nls.localizeByDefault('Do not show snippet suggestions.')
|
|
1108
1108
|
],
|
|
1109
|
-
'description': nls_1.nls.
|
|
1109
|
+
'description': nls_1.nls.localizeByDefault('Controls whether snippets are shown with other suggestions and how they are sorted.'),
|
|
1110
1110
|
'type': 'string',
|
|
1111
1111
|
'enum': [
|
|
1112
1112
|
'top',
|
|
@@ -1117,17 +1117,17 @@ const codeEditorPreferenceProperties = {
|
|
|
1117
1117
|
'default': 'inline'
|
|
1118
1118
|
},
|
|
1119
1119
|
'editor.smartSelect.selectLeadingAndTrailingWhitespace': {
|
|
1120
|
-
'description': nls_1.nls.
|
|
1120
|
+
'description': nls_1.nls.localizeByDefault('Whether leading and trailing whitespace should always be selected.'),
|
|
1121
1121
|
'default': true,
|
|
1122
1122
|
'type': 'boolean'
|
|
1123
1123
|
},
|
|
1124
1124
|
'editor.smoothScrolling': {
|
|
1125
|
-
'description': nls_1.nls.
|
|
1125
|
+
'description': nls_1.nls.localizeByDefault('Controls whether the editor will scroll using an animation.'),
|
|
1126
1126
|
'type': 'boolean',
|
|
1127
1127
|
'default': false
|
|
1128
1128
|
},
|
|
1129
1129
|
'editor.stickyTabStops': {
|
|
1130
|
-
'description': nls_1.nls.
|
|
1130
|
+
'description': nls_1.nls.localizeByDefault('Emulate selection behaviour of tab characters when using spaces for indentation. Selection will stick to tab stops.'),
|
|
1131
1131
|
'type': 'boolean',
|
|
1132
1132
|
'default': false
|
|
1133
1133
|
},
|
|
@@ -1145,11 +1145,11 @@ const codeEditorPreferenceProperties = {
|
|
|
1145
1145
|
'replace'
|
|
1146
1146
|
],
|
|
1147
1147
|
'enumDescriptions': [
|
|
1148
|
-
nls_1.nls.
|
|
1149
|
-
nls_1.nls.
|
|
1148
|
+
nls_1.nls.localizeByDefault('Insert suggestion without overwriting text right of the cursor.'),
|
|
1149
|
+
nls_1.nls.localizeByDefault('Insert suggestion and overwrite text right of the cursor.')
|
|
1150
1150
|
],
|
|
1151
1151
|
'default': 'insert',
|
|
1152
|
-
'description': nls_1.nls.
|
|
1152
|
+
'description': nls_1.nls.localizeByDefault('Controls whether words are overwritten when accepting completions. Note that this depends on extensions opting into this feature.')
|
|
1153
1153
|
},
|
|
1154
1154
|
'editor.suggest.insertHighlight': {
|
|
1155
1155
|
'type': 'boolean',
|
|
@@ -1159,201 +1159,201 @@ const codeEditorPreferenceProperties = {
|
|
|
1159
1159
|
'editor.suggest.filterGraceful': {
|
|
1160
1160
|
'type': 'boolean',
|
|
1161
1161
|
'default': true,
|
|
1162
|
-
'description': nls_1.nls.
|
|
1162
|
+
'description': nls_1.nls.localizeByDefault('Controls whether filtering and sorting suggestions accounts for small typos.')
|
|
1163
1163
|
},
|
|
1164
1164
|
'editor.suggest.localityBonus': {
|
|
1165
1165
|
'type': 'boolean',
|
|
1166
1166
|
'default': false,
|
|
1167
|
-
'description': nls_1.nls.
|
|
1167
|
+
'description': nls_1.nls.localizeByDefault('Controls whether sorting favours words that appear close to the cursor.')
|
|
1168
1168
|
},
|
|
1169
1169
|
'editor.suggest.shareSuggestSelections': {
|
|
1170
1170
|
'type': 'boolean',
|
|
1171
1171
|
'default': false,
|
|
1172
|
-
'markdownDescription': nls_1.nls.
|
|
1172
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Controls whether remembered suggestion selections are shared between multiple workspaces and windows (needs `#editor.suggestSelection#`).')
|
|
1173
1173
|
},
|
|
1174
1174
|
'editor.suggest.snippetsPreventQuickSuggestions': {
|
|
1175
1175
|
'type': 'boolean',
|
|
1176
1176
|
'default': true,
|
|
1177
|
-
'description': nls_1.nls.
|
|
1177
|
+
'description': nls_1.nls.localizeByDefault('Controls whether an active snippet prevents quick suggestions.')
|
|
1178
1178
|
},
|
|
1179
1179
|
'editor.suggest.showIcons': {
|
|
1180
1180
|
'type': 'boolean',
|
|
1181
1181
|
'default': true,
|
|
1182
|
-
'description': nls_1.nls.
|
|
1182
|
+
'description': nls_1.nls.localizeByDefault('Controls whether to show or hide icons in suggestions.')
|
|
1183
1183
|
},
|
|
1184
1184
|
'editor.suggest.maxVisibleSuggestions': {
|
|
1185
1185
|
'type': 'number',
|
|
1186
1186
|
'default': 12,
|
|
1187
1187
|
'minimum': 1,
|
|
1188
1188
|
'maximum': 15,
|
|
1189
|
-
'description': nls_1.nls.
|
|
1189
|
+
'description': nls_1.nls.localizeByDefault('This setting is deprecated. The suggest widget can now be resized.')
|
|
1190
1190
|
},
|
|
1191
1191
|
'editor.suggest.filteredTypes': {
|
|
1192
1192
|
'type': 'object',
|
|
1193
1193
|
'default': {},
|
|
1194
|
-
'deprecationMessage': nls_1.nls.
|
|
1194
|
+
'deprecationMessage': nls_1.nls.localizeByDefault("This setting is deprecated, please use separate settings like 'editor.suggest.showKeywords' or 'editor.suggest.showSnippets' instead.")
|
|
1195
1195
|
},
|
|
1196
1196
|
'editor.suggest.showMethods': {
|
|
1197
1197
|
'type': 'boolean',
|
|
1198
1198
|
'default': true,
|
|
1199
|
-
'markdownDescription': nls_1.nls.
|
|
1199
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `method`-suggestions.')
|
|
1200
1200
|
},
|
|
1201
1201
|
'editor.suggest.showFunctions': {
|
|
1202
1202
|
'type': 'boolean',
|
|
1203
1203
|
'default': true,
|
|
1204
|
-
'markdownDescription': nls_1.nls.
|
|
1204
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `function`-suggestions.')
|
|
1205
1205
|
},
|
|
1206
1206
|
'editor.suggest.showConstructors': {
|
|
1207
1207
|
'type': 'boolean',
|
|
1208
1208
|
'default': true,
|
|
1209
|
-
'markdownDescription': nls_1.nls.
|
|
1209
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `constructor`-suggestions.')
|
|
1210
1210
|
},
|
|
1211
1211
|
'editor.suggest.showFields': {
|
|
1212
1212
|
'type': 'boolean',
|
|
1213
1213
|
'default': true,
|
|
1214
|
-
'markdownDescription': nls_1.nls.
|
|
1214
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `field`-suggestions.')
|
|
1215
1215
|
},
|
|
1216
1216
|
'editor.suggest.showVariables': {
|
|
1217
1217
|
'type': 'boolean',
|
|
1218
1218
|
'default': true,
|
|
1219
|
-
'markdownDescription': nls_1.nls.
|
|
1219
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `variable`-suggestions.')
|
|
1220
1220
|
},
|
|
1221
1221
|
'editor.suggest.showClasses': {
|
|
1222
1222
|
'type': 'boolean',
|
|
1223
1223
|
'default': true,
|
|
1224
|
-
'markdownDescription': nls_1.nls.
|
|
1224
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `class`-suggestions.')
|
|
1225
1225
|
},
|
|
1226
1226
|
'editor.suggest.showStructs': {
|
|
1227
1227
|
'type': 'boolean',
|
|
1228
1228
|
'default': true,
|
|
1229
|
-
'markdownDescription': nls_1.nls.
|
|
1229
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `struct`-suggestions.')
|
|
1230
1230
|
},
|
|
1231
1231
|
'editor.suggest.showInterfaces': {
|
|
1232
1232
|
'type': 'boolean',
|
|
1233
1233
|
'default': true,
|
|
1234
|
-
'markdownDescription': nls_1.nls.
|
|
1234
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `interface`-suggestions.')
|
|
1235
1235
|
},
|
|
1236
1236
|
'editor.suggest.showModules': {
|
|
1237
1237
|
'type': 'boolean',
|
|
1238
1238
|
'default': true,
|
|
1239
|
-
'markdownDescription': nls_1.nls.
|
|
1239
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `module`-suggestions.')
|
|
1240
1240
|
},
|
|
1241
1241
|
'editor.suggest.showProperties': {
|
|
1242
1242
|
'type': 'boolean',
|
|
1243
1243
|
'default': true,
|
|
1244
|
-
'markdownDescription': nls_1.nls.
|
|
1244
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `property`-suggestions.')
|
|
1245
1245
|
},
|
|
1246
1246
|
'editor.suggest.showEvents': {
|
|
1247
1247
|
'type': 'boolean',
|
|
1248
1248
|
'default': true,
|
|
1249
|
-
'markdownDescription': nls_1.nls.
|
|
1249
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `event`-suggestions.')
|
|
1250
1250
|
},
|
|
1251
1251
|
'editor.suggest.showOperators': {
|
|
1252
1252
|
'type': 'boolean',
|
|
1253
1253
|
'default': true,
|
|
1254
|
-
'markdownDescription': nls_1.nls.
|
|
1254
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `operator`-suggestions.')
|
|
1255
1255
|
},
|
|
1256
1256
|
'editor.suggest.showUnits': {
|
|
1257
1257
|
'type': 'boolean',
|
|
1258
1258
|
'default': true,
|
|
1259
|
-
'markdownDescription': nls_1.nls.
|
|
1259
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `unit`-suggestions.')
|
|
1260
1260
|
},
|
|
1261
1261
|
'editor.suggest.showValues': {
|
|
1262
1262
|
'type': 'boolean',
|
|
1263
1263
|
'default': true,
|
|
1264
|
-
'markdownDescription': nls_1.nls.
|
|
1264
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `value`-suggestions.')
|
|
1265
1265
|
},
|
|
1266
1266
|
'editor.suggest.showConstants': {
|
|
1267
1267
|
'type': 'boolean',
|
|
1268
1268
|
'default': true,
|
|
1269
|
-
'markdownDescription': nls_1.nls.
|
|
1269
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `constant`-suggestions.')
|
|
1270
1270
|
},
|
|
1271
1271
|
'editor.suggest.showEnums': {
|
|
1272
1272
|
'type': 'boolean',
|
|
1273
1273
|
'default': true,
|
|
1274
|
-
'markdownDescription': nls_1.nls.
|
|
1274
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `enum`-suggestions.')
|
|
1275
1275
|
},
|
|
1276
1276
|
'editor.suggest.showEnumMembers': {
|
|
1277
1277
|
'type': 'boolean',
|
|
1278
1278
|
'default': true,
|
|
1279
|
-
'markdownDescription': nls_1.nls.
|
|
1279
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `enumMember`-suggestions.')
|
|
1280
1280
|
},
|
|
1281
1281
|
'editor.suggest.showKeywords': {
|
|
1282
1282
|
'type': 'boolean',
|
|
1283
1283
|
'default': true,
|
|
1284
|
-
'markdownDescription': nls_1.nls.
|
|
1284
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `keyword`-suggestions.')
|
|
1285
1285
|
},
|
|
1286
1286
|
'editor.suggest.showWords': {
|
|
1287
1287
|
'type': 'boolean',
|
|
1288
1288
|
'default': true,
|
|
1289
|
-
'markdownDescription': nls_1.nls.
|
|
1289
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `text`-suggestions.')
|
|
1290
1290
|
},
|
|
1291
1291
|
'editor.suggest.showColors': {
|
|
1292
1292
|
'type': 'boolean',
|
|
1293
1293
|
'default': true,
|
|
1294
|
-
'markdownDescription': nls_1.nls.
|
|
1294
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `color`-suggestions.')
|
|
1295
1295
|
},
|
|
1296
1296
|
'editor.suggest.showFiles': {
|
|
1297
1297
|
'type': 'boolean',
|
|
1298
1298
|
'default': true,
|
|
1299
|
-
'markdownDescription': nls_1.nls.
|
|
1299
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `file`-suggestions.')
|
|
1300
1300
|
},
|
|
1301
1301
|
'editor.suggest.showReferences': {
|
|
1302
1302
|
'type': 'boolean',
|
|
1303
1303
|
'default': true,
|
|
1304
|
-
'markdownDescription': nls_1.nls.
|
|
1304
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `reference`-suggestions.')
|
|
1305
1305
|
},
|
|
1306
1306
|
'editor.suggest.showCustomcolors': {
|
|
1307
1307
|
'type': 'boolean',
|
|
1308
1308
|
'default': true,
|
|
1309
|
-
'markdownDescription': nls_1.nls.
|
|
1309
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `customcolor`-suggestions.')
|
|
1310
1310
|
},
|
|
1311
1311
|
'editor.suggest.showFolders': {
|
|
1312
1312
|
'type': 'boolean',
|
|
1313
1313
|
'default': true,
|
|
1314
|
-
'markdownDescription': nls_1.nls.
|
|
1314
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `folder`-suggestions.')
|
|
1315
1315
|
},
|
|
1316
1316
|
'editor.suggest.showTypeParameters': {
|
|
1317
1317
|
'type': 'boolean',
|
|
1318
1318
|
'default': true,
|
|
1319
|
-
'markdownDescription': nls_1.nls.
|
|
1319
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `typeParameter`-suggestions.')
|
|
1320
1320
|
},
|
|
1321
1321
|
'editor.suggest.showSnippets': {
|
|
1322
1322
|
'type': 'boolean',
|
|
1323
1323
|
'default': true,
|
|
1324
|
-
'markdownDescription': nls_1.nls.
|
|
1324
|
+
'markdownDescription': nls_1.nls.localizeByDefault('When enabled IntelliSense shows `snippet`-suggestions.')
|
|
1325
1325
|
},
|
|
1326
1326
|
'editor.suggest.hideStatusBar': {
|
|
1327
1327
|
'type': 'boolean',
|
|
1328
1328
|
'default': true,
|
|
1329
|
-
'markdownDescription': nls_1.nls.
|
|
1329
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Controls the visibility of the status bar at the bottom of the suggest widget.')
|
|
1330
1330
|
},
|
|
1331
1331
|
'editor.suggestFontSize': {
|
|
1332
|
-
'markdownDescription': nls_1.nls.
|
|
1332
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Font size for the suggest widget. When set to `0`, the value of `#editor.fontSize#` is used.'),
|
|
1333
1333
|
'type': 'integer',
|
|
1334
1334
|
'default': 0,
|
|
1335
1335
|
'minimum': 0,
|
|
1336
1336
|
'maximum': 1000
|
|
1337
1337
|
},
|
|
1338
1338
|
'editor.suggestLineHeight': {
|
|
1339
|
-
'markdownDescription': nls_1.nls.
|
|
1339
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Line height for the suggest widget. When set to `0`, the value of `#editor.lineHeight#` is used. The minimum value is 8.'),
|
|
1340
1340
|
'type': 'integer',
|
|
1341
1341
|
'default': 0,
|
|
1342
1342
|
'minimum': 0,
|
|
1343
1343
|
'maximum': 1000
|
|
1344
1344
|
},
|
|
1345
1345
|
'editor.suggestOnTriggerCharacters': {
|
|
1346
|
-
'description': nls_1.nls.
|
|
1346
|
+
'description': nls_1.nls.localizeByDefault('Controls whether suggestions should automatically show up when typing trigger characters.'),
|
|
1347
1347
|
'type': 'boolean',
|
|
1348
1348
|
'default': true
|
|
1349
1349
|
},
|
|
1350
1350
|
'editor.suggestSelection': {
|
|
1351
1351
|
'markdownEnumDescriptions': [
|
|
1352
|
-
nls_1.nls.
|
|
1353
|
-
nls_1.nls.
|
|
1354
|
-
nls_1.nls.
|
|
1352
|
+
nls_1.nls.localizeByDefault('Always select the first suggestion.'),
|
|
1353
|
+
nls_1.nls.localizeByDefault('Select recent suggestions unless further typing selects one, e.g. `console.| -> console.log` because `log` has been completed recently.'),
|
|
1354
|
+
nls_1.nls.localizeByDefault('Select suggestions based on previous prefixes that have completed those suggestions, e.g. `co -> console` and `con -> const`.')
|
|
1355
1355
|
],
|
|
1356
|
-
'description': nls_1.nls.
|
|
1356
|
+
'description': nls_1.nls.localizeByDefault('Controls how suggestions are pre-selected when showing the suggest list.'),
|
|
1357
1357
|
'type': 'string',
|
|
1358
1358
|
'enum': [
|
|
1359
1359
|
'first',
|
|
@@ -1364,11 +1364,11 @@ const codeEditorPreferenceProperties = {
|
|
|
1364
1364
|
},
|
|
1365
1365
|
'editor.tabCompletion': {
|
|
1366
1366
|
'enumDescriptions': [
|
|
1367
|
-
nls_1.nls.
|
|
1368
|
-
nls_1.nls.
|
|
1369
|
-
nls_1.nls.
|
|
1367
|
+
nls_1.nls.localizeByDefault('Tab complete will insert the best matching suggestion when pressing tab.'),
|
|
1368
|
+
nls_1.nls.localizeByDefault('Disable tab completions.'),
|
|
1369
|
+
nls_1.nls.localizeByDefault("Tab complete snippets when their prefix match. Works best when 'quickSuggestions' aren't enabled.")
|
|
1370
1370
|
],
|
|
1371
|
-
'description': nls_1.nls.
|
|
1371
|
+
'description': nls_1.nls.localizeByDefault('Enables tab completions.'),
|
|
1372
1372
|
'type': 'string',
|
|
1373
1373
|
'enum': [
|
|
1374
1374
|
'on',
|
|
@@ -1390,29 +1390,29 @@ const codeEditorPreferenceProperties = {
|
|
|
1390
1390
|
nls_1.nls.localize('unusualLineTerminators.off', 'Unusual line terminators are ignored.'),
|
|
1391
1391
|
nls_1.nls.localize('unusualLineTerminators.prompt', 'Unusual line terminators prompt to be removed.')
|
|
1392
1392
|
],
|
|
1393
|
-
'description': nls_1.nls.
|
|
1393
|
+
'description': nls_1.nls.localizeByDefault('Remove unusual line terminators that might cause problems.'),
|
|
1394
1394
|
'type': 'string',
|
|
1395
1395
|
'enum': ['auto', 'off', 'prompt'],
|
|
1396
1396
|
'default': 'prompt'
|
|
1397
1397
|
},
|
|
1398
1398
|
'editor.useTabStops': {
|
|
1399
|
-
'description': nls_1.nls.
|
|
1399
|
+
'description': nls_1.nls.localizeByDefault('Inserting and deleting whitespace follows tab stops.'),
|
|
1400
1400
|
'type': 'boolean',
|
|
1401
1401
|
'default': true
|
|
1402
1402
|
},
|
|
1403
1403
|
'editor.wordSeparators': {
|
|
1404
|
-
'description': nls_1.nls.
|
|
1404
|
+
'description': nls_1.nls.localizeByDefault('Characters that will be used as word separators when doing word related navigations or operations.'),
|
|
1405
1405
|
'type': 'string',
|
|
1406
1406
|
'default': exports.DEFAULT_WORD_SEPARATORS
|
|
1407
1407
|
},
|
|
1408
1408
|
'editor.wordWrap': {
|
|
1409
1409
|
'markdownEnumDescriptions': [
|
|
1410
|
-
nls_1.nls.
|
|
1411
|
-
nls_1.nls.
|
|
1412
|
-
nls_1.nls.
|
|
1413
|
-
nls_1.nls.
|
|
1410
|
+
nls_1.nls.localizeByDefault('Lines will never wrap.'),
|
|
1411
|
+
nls_1.nls.localizeByDefault('Lines will wrap at the viewport width.'),
|
|
1412
|
+
nls_1.nls.localizeByDefault('Lines will wrap at `#editor.wordWrapColumn#`.'),
|
|
1413
|
+
nls_1.nls.localizeByDefault('Lines will wrap at the minimum of viewport and `#editor.wordWrapColumn#`.')
|
|
1414
1414
|
],
|
|
1415
|
-
'description': nls_1.nls.
|
|
1415
|
+
'description': nls_1.nls.localizeByDefault('Controls how lines should wrap.'),
|
|
1416
1416
|
'type': 'string',
|
|
1417
1417
|
'enum': [
|
|
1418
1418
|
'off',
|
|
@@ -1433,7 +1433,7 @@ const codeEditorPreferenceProperties = {
|
|
|
1433
1433
|
'default': '([{‘“〈《「『【〔([{「£¥$£¥++',
|
|
1434
1434
|
},
|
|
1435
1435
|
'editor.wordWrapColumn': {
|
|
1436
|
-
'markdownDescription': nls_1.nls.
|
|
1436
|
+
'markdownDescription': nls_1.nls.localizeByDefault('Controls the wrapping column of the editor when `#editor.wordWrap#` is `wordWrapColumn` or `bounded`.'),
|
|
1437
1437
|
'type': 'integer',
|
|
1438
1438
|
'default': 80,
|
|
1439
1439
|
'minimum': 1,
|
|
@@ -1453,12 +1453,12 @@ const codeEditorPreferenceProperties = {
|
|
|
1453
1453
|
},
|
|
1454
1454
|
'editor.wrappingIndent': {
|
|
1455
1455
|
'enumDescriptions': [
|
|
1456
|
-
nls_1.nls.
|
|
1457
|
-
nls_1.nls.
|
|
1458
|
-
nls_1.nls.
|
|
1459
|
-
nls_1.nls.
|
|
1456
|
+
nls_1.nls.localizeByDefault('No indentation. Wrapped lines begin at column 1.'),
|
|
1457
|
+
nls_1.nls.localizeByDefault('Wrapped lines get the same indentation as the parent.'),
|
|
1458
|
+
nls_1.nls.localizeByDefault('Wrapped lines get +1 indentation toward the parent.'),
|
|
1459
|
+
nls_1.nls.localizeByDefault('Wrapped lines get +2 indentation toward the parent.')
|
|
1460
1460
|
],
|
|
1461
|
-
'description': nls_1.nls.
|
|
1461
|
+
'description': nls_1.nls.localizeByDefault('Controls the indentation of wrapped lines.'),
|
|
1462
1462
|
'type': 'string',
|
|
1463
1463
|
'enum': [
|
|
1464
1464
|
'none',
|
|
@@ -1470,10 +1470,10 @@ const codeEditorPreferenceProperties = {
|
|
|
1470
1470
|
},
|
|
1471
1471
|
'editor.wrappingStrategy': {
|
|
1472
1472
|
'enumDescriptions': [
|
|
1473
|
-
nls_1.nls.
|
|
1474
|
-
nls_1.nls.
|
|
1473
|
+
nls_1.nls.localizeByDefault('Assumes that all characters are of the same width. This is a fast algorithm that works correctly for monospace fonts and certain scripts (like Latin characters) where glyphs are of equal width.'),
|
|
1474
|
+
nls_1.nls.localizeByDefault('Delegates wrapping points computation to the browser. This is a slow algorithm, that might cause freezes for large files, but it works correctly in all cases.')
|
|
1475
1475
|
],
|
|
1476
|
-
'description': nls_1.nls.
|
|
1476
|
+
'description': nls_1.nls.localizeByDefault('Controls the algorithm that computes wrapping points.'),
|
|
1477
1477
|
'type': 'string',
|
|
1478
1478
|
'enum': [
|
|
1479
1479
|
'simple',
|
|
@@ -1493,17 +1493,18 @@ exports.editorPreferenceSchema = {
|
|
|
1493
1493
|
'off'
|
|
1494
1494
|
],
|
|
1495
1495
|
'default': 'off',
|
|
1496
|
-
'description': nls_1.nls.localize('
|
|
1496
|
+
'description': nls_1.nls.localize('theia/editor/autoSaveSetting', 'Controls auto save of dirty files.'),
|
|
1497
1497
|
overridable: false
|
|
1498
1498
|
}, 'editor.autoSaveDelay': {
|
|
1499
1499
|
'type': 'number',
|
|
1500
1500
|
'default': 500,
|
|
1501
|
-
'description': nls_1.nls.localize('
|
|
1501
|
+
'description': nls_1.nls.localize('theia/editor/autoSaveDelay', 'Configure the auto save delay in milliseconds.'),
|
|
1502
1502
|
overridable: false
|
|
1503
1503
|
}, 'editor.formatOnSave': {
|
|
1504
1504
|
'type': 'boolean',
|
|
1505
1505
|
'default': false,
|
|
1506
|
-
|
|
1506
|
+
// eslint-disable-next-line max-len
|
|
1507
|
+
'description': nls_1.nls.localizeByDefault('Format a file on save. A formatter must be available, the file must not be saved after delay, and the editor must not be shutting down.')
|
|
1507
1508
|
}, 'editor.formatOnSaveTimeout': {
|
|
1508
1509
|
'type': 'number',
|
|
1509
1510
|
'default': 750,
|
|
@@ -1520,12 +1521,12 @@ exports.editorPreferenceSchema = {
|
|
|
1520
1521
|
'auto'
|
|
1521
1522
|
],
|
|
1522
1523
|
'enumDescriptions': [
|
|
1523
|
-
nls_1.nls.
|
|
1524
|
-
nls_1.nls.
|
|
1525
|
-
nls_1.nls.
|
|
1524
|
+
nls_1.nls.localizeByDefault('LF'),
|
|
1525
|
+
nls_1.nls.localizeByDefault('CRLF'),
|
|
1526
|
+
nls_1.nls.localizeByDefault('Uses operating system specific end of line character.')
|
|
1526
1527
|
],
|
|
1527
1528
|
'default': 'auto',
|
|
1528
|
-
'description': nls_1.nls.
|
|
1529
|
+
'description': nls_1.nls.localizeByDefault('The default end of line character.')
|
|
1529
1530
|
} })
|
|
1530
1531
|
};
|
|
1531
1532
|
exports.EditorPreferenceContribution = Symbol('EditorPreferenceContribution');
|