@fresh-editor/fresh-editor 0.1.86 → 0.1.88
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/CHANGELOG.md +47 -0
- package/README.md +4 -0
- package/package.json +1 -1
- package/plugins/README.md +1 -0
- package/plugins/audit_mode.ts +38 -34
- package/plugins/calculator.i18n.json +13 -13
- package/plugins/calculator.ts +6 -6
- package/plugins/clangd_support.i18n.json +26 -26
- package/plugins/config-schema.json +180 -116
- package/plugins/csharp_support.i18n.json +52 -52
- package/plugins/csharp_support.ts +214 -41
- package/plugins/examples/virtual_buffer_demo.ts +4 -4
- package/plugins/find_references.i18n.json +91 -91
- package/plugins/git_blame.ts +3 -3
- package/plugins/git_explorer.ts +3 -2
- package/plugins/git_log.i18n.json +182 -182
- package/plugins/git_log.ts +10 -10
- package/plugins/java-lsp.ts +65 -0
- package/plugins/latex-lsp.ts +65 -0
- package/plugins/lib/finder.ts +32 -32
- package/plugins/lib/fresh.d.ts +432 -17
- package/plugins/lib/panel-manager.ts +7 -7
- package/plugins/lib/search-utils.ts +13 -13
- package/plugins/lib/virtual-buffer-factory.ts +16 -14
- package/plugins/live_grep.i18n.json +39 -39
- package/plugins/markdown_compose.i18n.json +13 -13
- package/plugins/markdown_compose.ts +4 -4
- package/plugins/marksman-lsp.ts +65 -0
- package/plugins/merge_conflict.i18n.json +143 -143
- package/plugins/merge_conflict.ts +21 -21
- package/plugins/search_replace.i18n.json +143 -143
- package/plugins/search_replace.ts +6 -6
- package/plugins/templ-lsp.ts +65 -0
- package/plugins/theme_editor.i18n.json +3797 -3745
- package/plugins/theme_editor.ts +6 -5
- package/plugins/vi_mode.ts +2 -2
- package/plugins/zig-lsp.ts +65 -0
- package/themes/dracula.json +26 -5
- package/plugins/csharp-lsp.ts +0 -147
|
@@ -30,37 +30,40 @@
|
|
|
30
30
|
"description": "Editor behavior settings (indentation, line numbers, wrapping, etc.)",
|
|
31
31
|
"$ref": "#/$defs/EditorConfig",
|
|
32
32
|
"default": {
|
|
33
|
-
"tab_size": 4,
|
|
34
|
-
"auto_indent": true,
|
|
35
33
|
"line_numbers": true,
|
|
36
34
|
"relative_line_numbers": false,
|
|
37
|
-
"scroll_offset": 3,
|
|
38
|
-
"syntax_highlighting": true,
|
|
39
35
|
"line_wrap": true,
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
36
|
+
"syntax_highlighting": true,
|
|
37
|
+
"show_menu_bar": true,
|
|
38
|
+
"show_tab_bar": true,
|
|
39
|
+
"use_terminal_bg": false,
|
|
40
|
+
"cursor_style": "default",
|
|
41
|
+
"tab_size": 4,
|
|
42
|
+
"auto_indent": true,
|
|
43
|
+
"scroll_offset": 3,
|
|
44
|
+
"default_line_ending": "lf",
|
|
45
|
+
"quick_suggestions": true,
|
|
46
|
+
"quick_suggestions_delay_ms": 10,
|
|
47
|
+
"suggest_on_trigger_characters": true,
|
|
48
|
+
"accept_suggestion_on_enter": "on",
|
|
44
49
|
"enable_inlay_hints": true,
|
|
45
50
|
"enable_semantic_tokens_full": false,
|
|
46
|
-
"recovery_enabled": true,
|
|
47
|
-
"auto_save_interval_secs": 2,
|
|
48
|
-
"highlight_context_bytes": 10000,
|
|
49
51
|
"mouse_hover_enabled": true,
|
|
50
52
|
"mouse_hover_delay_ms": 500,
|
|
51
53
|
"double_click_time_ms": 500,
|
|
54
|
+
"recovery_enabled": true,
|
|
55
|
+
"auto_save_interval_secs": 2,
|
|
52
56
|
"auto_revert_poll_interval_ms": 2000,
|
|
53
|
-
"file_tree_poll_interval_ms": 3000,
|
|
54
|
-
"default_line_ending": "lf",
|
|
55
|
-
"cursor_style": "default",
|
|
56
57
|
"keyboard_disambiguate_escape_codes": true,
|
|
57
58
|
"keyboard_report_event_types": false,
|
|
58
59
|
"keyboard_report_alternate_keys": true,
|
|
59
60
|
"keyboard_report_all_keys_as_escape_codes": false,
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
61
|
+
"highlight_timeout_ms": 5,
|
|
62
|
+
"snapshot_interval": 100,
|
|
63
|
+
"highlight_context_bytes": 10000,
|
|
64
|
+
"large_file_threshold_bytes": 1048576,
|
|
65
|
+
"estimated_line_length": 80,
|
|
66
|
+
"file_tree_poll_interval_ms": 3000
|
|
64
67
|
}
|
|
65
68
|
},
|
|
66
69
|
"file_explorer": {
|
|
@@ -177,105 +180,124 @@
|
|
|
177
180
|
"description": "Editor behavior configuration",
|
|
178
181
|
"type": "object",
|
|
179
182
|
"properties": {
|
|
180
|
-
"tab_size": {
|
|
181
|
-
"description": "Number of spaces per tab character",
|
|
182
|
-
"type": "integer",
|
|
183
|
-
"format": "uint",
|
|
184
|
-
"minimum": 0,
|
|
185
|
-
"default": 4
|
|
186
|
-
},
|
|
187
|
-
"auto_indent": {
|
|
188
|
-
"description": "Automatically indent new lines based on the previous line",
|
|
189
|
-
"type": "boolean",
|
|
190
|
-
"default": true
|
|
191
|
-
},
|
|
192
183
|
"line_numbers": {
|
|
193
184
|
"description": "Show line numbers in the gutter (default for new buffers)",
|
|
194
185
|
"type": "boolean",
|
|
186
|
+
"x-section": "Display",
|
|
195
187
|
"default": true
|
|
196
188
|
},
|
|
197
189
|
"relative_line_numbers": {
|
|
198
190
|
"description": "Show line numbers relative to cursor position",
|
|
199
191
|
"type": "boolean",
|
|
192
|
+
"x-section": "Display",
|
|
200
193
|
"default": false
|
|
201
194
|
},
|
|
202
|
-
"
|
|
203
|
-
"description": "
|
|
204
|
-
"type": "
|
|
205
|
-
"
|
|
206
|
-
"
|
|
207
|
-
"default": 3
|
|
195
|
+
"line_wrap": {
|
|
196
|
+
"description": "Wrap long lines to fit the window width (default for new views)",
|
|
197
|
+
"type": "boolean",
|
|
198
|
+
"x-section": "Display",
|
|
199
|
+
"default": true
|
|
208
200
|
},
|
|
209
201
|
"syntax_highlighting": {
|
|
210
202
|
"description": "Enable syntax highlighting for code files",
|
|
211
203
|
"type": "boolean",
|
|
204
|
+
"x-section": "Display",
|
|
212
205
|
"default": true
|
|
213
206
|
},
|
|
214
|
-
"
|
|
215
|
-
"description": "
|
|
207
|
+
"show_menu_bar": {
|
|
208
|
+
"description": "Whether the menu bar is visible by default.\nThe menu bar provides access to menus (File, Edit, View, etc.) at the top of the screen.\nCan be toggled at runtime via command palette or keybinding.\nDefault: true",
|
|
216
209
|
"type": "boolean",
|
|
210
|
+
"x-section": "Display",
|
|
217
211
|
"default": true
|
|
218
212
|
},
|
|
219
|
-
"
|
|
220
|
-
"description": "
|
|
213
|
+
"show_tab_bar": {
|
|
214
|
+
"description": "Whether the tab bar is visible by default.\nThe tab bar shows open files in each split pane.\nCan be toggled at runtime via command palette or keybinding.\nDefault: true",
|
|
215
|
+
"type": "boolean",
|
|
216
|
+
"x-section": "Display",
|
|
217
|
+
"default": true
|
|
218
|
+
},
|
|
219
|
+
"use_terminal_bg": {
|
|
220
|
+
"description": "Use the terminal's default background color instead of the theme's editor background.\nWhen enabled, the editor background inherits from the terminal emulator,\nallowing transparency or custom terminal backgrounds to show through.\nDefault: false",
|
|
221
|
+
"type": "boolean",
|
|
222
|
+
"x-section": "Display",
|
|
223
|
+
"default": false
|
|
224
|
+
},
|
|
225
|
+
"cursor_style": {
|
|
226
|
+
"description": "Cursor style for the terminal cursor.\nOptions: blinking_block, steady_block, blinking_bar, steady_bar, blinking_underline, steady_underline\nDefault: blinking_block",
|
|
227
|
+
"$ref": "#/$defs/CursorStyle",
|
|
228
|
+
"x-section": "Display",
|
|
229
|
+
"default": "default"
|
|
230
|
+
},
|
|
231
|
+
"tab_size": {
|
|
232
|
+
"description": "Number of spaces per tab character",
|
|
221
233
|
"type": "integer",
|
|
222
|
-
"format": "
|
|
234
|
+
"format": "uint",
|
|
223
235
|
"minimum": 0,
|
|
224
|
-
"
|
|
236
|
+
"x-section": "Editing",
|
|
237
|
+
"default": 4
|
|
225
238
|
},
|
|
226
|
-
"
|
|
227
|
-
"description": "
|
|
239
|
+
"auto_indent": {
|
|
240
|
+
"description": "Automatically indent new lines based on the previous line",
|
|
241
|
+
"type": "boolean",
|
|
242
|
+
"x-section": "Editing",
|
|
243
|
+
"default": true
|
|
244
|
+
},
|
|
245
|
+
"scroll_offset": {
|
|
246
|
+
"description": "Minimum lines to keep visible above/below cursor when scrolling",
|
|
228
247
|
"type": "integer",
|
|
229
248
|
"format": "uint",
|
|
230
249
|
"minimum": 0,
|
|
231
|
-
"
|
|
250
|
+
"x-section": "Editing",
|
|
251
|
+
"default": 3
|
|
232
252
|
},
|
|
233
|
-
"
|
|
234
|
-
"description": "
|
|
253
|
+
"default_line_ending": {
|
|
254
|
+
"description": "Default line ending format for new files.\nFiles loaded from disk will use their detected line ending format.\nOptions: \"lf\" (Unix/Linux/macOS), \"crlf\" (Windows), \"cr\" (Classic Mac)\nDefault: \"lf\"",
|
|
255
|
+
"$ref": "#/$defs/LineEndingOption",
|
|
256
|
+
"x-section": "Editing",
|
|
257
|
+
"default": "lf"
|
|
258
|
+
},
|
|
259
|
+
"quick_suggestions": {
|
|
260
|
+
"description": "Enable quick suggestions (VS Code-like behavior).\nWhen enabled, completion suggestions appear automatically while typing,\nnot just on trigger characters (like `.` or `::`).\nDefault: true",
|
|
261
|
+
"type": "boolean",
|
|
262
|
+
"x-section": "Completion",
|
|
263
|
+
"default": true
|
|
264
|
+
},
|
|
265
|
+
"quick_suggestions_delay_ms": {
|
|
266
|
+
"description": "Delay in milliseconds before showing completion suggestions.\nLower values (10-50ms) feel more responsive but may be distracting.\nHigher values (100-500ms) reduce noise while typing.\nTrigger characters (like `.`) bypass this delay.\nDefault: 10 (matches VS Code)",
|
|
235
267
|
"type": "integer",
|
|
236
268
|
"format": "uint64",
|
|
237
269
|
"minimum": 0,
|
|
238
|
-
"
|
|
270
|
+
"x-section": "Completion",
|
|
271
|
+
"default": 10
|
|
239
272
|
},
|
|
240
|
-
"
|
|
241
|
-
"description": "
|
|
242
|
-
"type": "
|
|
243
|
-
"
|
|
244
|
-
"
|
|
245
|
-
|
|
273
|
+
"suggest_on_trigger_characters": {
|
|
274
|
+
"description": "Whether trigger characters (like `.`, `::`, `->`) immediately show completions.\nWhen true, typing a trigger character bypasses quick_suggestions_delay_ms.\nDefault: true",
|
|
275
|
+
"type": "boolean",
|
|
276
|
+
"x-section": "Completion",
|
|
277
|
+
"default": true
|
|
278
|
+
},
|
|
279
|
+
"accept_suggestion_on_enter": {
|
|
280
|
+
"description": "Controls whether pressing Enter accepts the selected completion.\n- \"on\": Enter always accepts the completion\n- \"off\": Enter inserts a newline (use Tab to accept)\n- \"smart\": Enter accepts only if the completion text differs from typed text\nDefault: \"on\"",
|
|
281
|
+
"$ref": "#/$defs/AcceptSuggestionOnEnter",
|
|
282
|
+
"x-section": "Completion",
|
|
283
|
+
"default": "on"
|
|
246
284
|
},
|
|
247
285
|
"enable_inlay_hints": {
|
|
248
286
|
"description": "Whether to enable LSP inlay hints (type hints, parameter hints, etc.)",
|
|
249
287
|
"type": "boolean",
|
|
288
|
+
"x-section": "LSP",
|
|
250
289
|
"default": true
|
|
251
290
|
},
|
|
252
291
|
"enable_semantic_tokens_full": {
|
|
253
292
|
"description": "Whether to request full-document LSP semantic tokens.\nRange requests are still used when supported.\nDefault: false (range-only to avoid heavy full refreshes).",
|
|
254
293
|
"type": "boolean",
|
|
294
|
+
"x-section": "LSP",
|
|
255
295
|
"default": false
|
|
256
296
|
},
|
|
257
|
-
"recovery_enabled": {
|
|
258
|
-
"description": "Whether to enable file recovery (Emacs-style auto-save)\nWhen enabled, buffers are periodically saved to recovery files\nso they can be recovered if the editor crashes.",
|
|
259
|
-
"type": "boolean",
|
|
260
|
-
"default": true
|
|
261
|
-
},
|
|
262
|
-
"auto_save_interval_secs": {
|
|
263
|
-
"description": "Auto-save interval in seconds for file recovery\nModified buffers are saved to recovery files at this interval.\nDefault: 2 seconds for fast recovery with minimal data loss.\nSet to 0 to disable periodic auto-save (manual recovery only).",
|
|
264
|
-
"type": "integer",
|
|
265
|
-
"format": "uint32",
|
|
266
|
-
"minimum": 0,
|
|
267
|
-
"default": 2
|
|
268
|
-
},
|
|
269
|
-
"highlight_context_bytes": {
|
|
270
|
-
"description": "Number of bytes to look back/forward from the viewport for syntax highlighting context.\nLarger values improve accuracy for multi-line constructs (strings, comments, nested blocks)\nbut may slow down highlighting for very large files.\nDefault: 10KB (10000 bytes)",
|
|
271
|
-
"type": "integer",
|
|
272
|
-
"format": "uint",
|
|
273
|
-
"minimum": 0,
|
|
274
|
-
"default": 10000
|
|
275
|
-
},
|
|
276
297
|
"mouse_hover_enabled": {
|
|
277
298
|
"description": "Whether mouse hover triggers LSP hover requests.\nWhen enabled, hovering over code with the mouse will show documentation.\nDefault: true",
|
|
278
299
|
"type": "boolean",
|
|
300
|
+
"x-section": "Mouse",
|
|
279
301
|
"default": true
|
|
280
302
|
},
|
|
281
303
|
"mouse_hover_delay_ms": {
|
|
@@ -283,6 +305,7 @@
|
|
|
283
305
|
"type": "integer",
|
|
284
306
|
"format": "uint64",
|
|
285
307
|
"minimum": 0,
|
|
308
|
+
"x-section": "Mouse",
|
|
286
309
|
"default": 500
|
|
287
310
|
},
|
|
288
311
|
"double_click_time_ms": {
|
|
@@ -290,84 +313,105 @@
|
|
|
290
313
|
"type": "integer",
|
|
291
314
|
"format": "uint64",
|
|
292
315
|
"minimum": 0,
|
|
316
|
+
"x-section": "Mouse",
|
|
293
317
|
"default": 500
|
|
294
318
|
},
|
|
295
|
-
"
|
|
296
|
-
"description": "
|
|
319
|
+
"recovery_enabled": {
|
|
320
|
+
"description": "Whether to enable file recovery (Emacs-style auto-save)\nWhen enabled, buffers are periodically saved to recovery files\nso they can be recovered if the editor crashes.",
|
|
321
|
+
"type": "boolean",
|
|
322
|
+
"x-section": "Recovery",
|
|
323
|
+
"default": true
|
|
324
|
+
},
|
|
325
|
+
"auto_save_interval_secs": {
|
|
326
|
+
"description": "Auto-save interval in seconds for file recovery\nModified buffers are saved to recovery files at this interval.\nDefault: 2 seconds for fast recovery with minimal data loss.\nSet to 0 to disable periodic auto-save (manual recovery only).",
|
|
297
327
|
"type": "integer",
|
|
298
|
-
"format": "
|
|
328
|
+
"format": "uint32",
|
|
299
329
|
"minimum": 0,
|
|
300
|
-
"
|
|
330
|
+
"x-section": "Recovery",
|
|
331
|
+
"default": 2
|
|
301
332
|
},
|
|
302
|
-
"
|
|
303
|
-
"description": "Poll interval in milliseconds for
|
|
333
|
+
"auto_revert_poll_interval_ms": {
|
|
334
|
+
"description": "Poll interval in milliseconds for auto-reverting open buffers.\nWhen auto-revert is enabled, file modification times are checked at this interval.\nLower values detect external changes faster but use more CPU.\nDefault: 2000ms (2 seconds)",
|
|
304
335
|
"type": "integer",
|
|
305
336
|
"format": "uint64",
|
|
306
337
|
"minimum": 0,
|
|
307
|
-
"
|
|
308
|
-
|
|
309
|
-
"default_line_ending": {
|
|
310
|
-
"description": "Default line ending format for new files.\nFiles loaded from disk will use their detected line ending format.\nOptions: \"lf\" (Unix/Linux/macOS), \"crlf\" (Windows), \"cr\" (Classic Mac)\nDefault: \"lf\"",
|
|
311
|
-
"$ref": "#/$defs/LineEndingOption",
|
|
312
|
-
"default": "lf"
|
|
313
|
-
},
|
|
314
|
-
"cursor_style": {
|
|
315
|
-
"description": "Cursor style for the terminal cursor.\nOptions: blinking_block, steady_block, blinking_bar, steady_bar, blinking_underline, steady_underline\nDefault: blinking_block",
|
|
316
|
-
"$ref": "#/$defs/CursorStyle",
|
|
317
|
-
"default": "default"
|
|
338
|
+
"x-section": "Recovery",
|
|
339
|
+
"default": 2000
|
|
318
340
|
},
|
|
319
341
|
"keyboard_disambiguate_escape_codes": {
|
|
320
342
|
"description": "Enable keyboard enhancement: disambiguate escape codes using CSI-u sequences.\nThis allows unambiguous reading of Escape and modified keys.\nRequires terminal support (kitty keyboard protocol).\nDefault: true",
|
|
321
343
|
"type": "boolean",
|
|
344
|
+
"x-section": "Keyboard",
|
|
322
345
|
"default": true
|
|
323
346
|
},
|
|
324
347
|
"keyboard_report_event_types": {
|
|
325
348
|
"description": "Enable keyboard enhancement: report key event types (repeat/release).\nAdds extra events when keys are autorepeated or released.\nRequires terminal support (kitty keyboard protocol).\nDefault: false",
|
|
326
349
|
"type": "boolean",
|
|
350
|
+
"x-section": "Keyboard",
|
|
327
351
|
"default": false
|
|
328
352
|
},
|
|
329
353
|
"keyboard_report_alternate_keys": {
|
|
330
354
|
"description": "Enable keyboard enhancement: report alternate keycodes.\nSends alternate keycodes in addition to the base keycode.\nRequires terminal support (kitty keyboard protocol).\nDefault: true",
|
|
331
355
|
"type": "boolean",
|
|
356
|
+
"x-section": "Keyboard",
|
|
332
357
|
"default": true
|
|
333
358
|
},
|
|
334
359
|
"keyboard_report_all_keys_as_escape_codes": {
|
|
335
360
|
"description": "Enable keyboard enhancement: report all keys as escape codes.\nRepresents all keyboard events as CSI-u sequences.\nRequired for repeat/release events on plain-text keys.\nRequires terminal support (kitty keyboard protocol).\nDefault: false",
|
|
336
361
|
"type": "boolean",
|
|
362
|
+
"x-section": "Keyboard",
|
|
337
363
|
"default": false
|
|
338
364
|
},
|
|
339
|
-
"
|
|
340
|
-
"description": "
|
|
341
|
-
"type": "
|
|
342
|
-
"
|
|
365
|
+
"highlight_timeout_ms": {
|
|
366
|
+
"description": "Maximum time in milliseconds for syntax highlighting per frame",
|
|
367
|
+
"type": "integer",
|
|
368
|
+
"format": "uint64",
|
|
369
|
+
"minimum": 0,
|
|
370
|
+
"x-section": "Performance",
|
|
371
|
+
"default": 5
|
|
343
372
|
},
|
|
344
|
-
"
|
|
345
|
-
"description": "
|
|
346
|
-
"type": "
|
|
347
|
-
"
|
|
373
|
+
"snapshot_interval": {
|
|
374
|
+
"description": "Undo history snapshot interval (number of edits between snapshots)",
|
|
375
|
+
"type": "integer",
|
|
376
|
+
"format": "uint",
|
|
377
|
+
"minimum": 0,
|
|
378
|
+
"x-section": "Performance",
|
|
379
|
+
"default": 100
|
|
348
380
|
},
|
|
349
|
-
"
|
|
350
|
-
"description": "
|
|
351
|
-
"type": "
|
|
352
|
-
"
|
|
381
|
+
"highlight_context_bytes": {
|
|
382
|
+
"description": "Number of bytes to look back/forward from the viewport for syntax highlighting context.\nLarger values improve accuracy for multi-line constructs (strings, comments, nested blocks)\nbut may slow down highlighting for very large files.\nDefault: 10KB (10000 bytes)",
|
|
383
|
+
"type": "integer",
|
|
384
|
+
"format": "uint",
|
|
385
|
+
"minimum": 0,
|
|
386
|
+
"x-section": "Performance",
|
|
387
|
+
"default": 10000
|
|
353
388
|
},
|
|
354
|
-
"
|
|
355
|
-
"description": "
|
|
356
|
-
"type": "
|
|
357
|
-
"
|
|
389
|
+
"large_file_threshold_bytes": {
|
|
390
|
+
"description": "File size threshold in bytes for \"large file\" behavior\nFiles larger than this will:\n- Skip LSP features\n- Use constant-size scrollbar thumb (1 char)\n\nFiles smaller will count actual lines for accurate scrollbar rendering",
|
|
391
|
+
"type": "integer",
|
|
392
|
+
"format": "uint64",
|
|
393
|
+
"minimum": 0,
|
|
394
|
+
"x-section": "Performance",
|
|
395
|
+
"default": 1048576
|
|
396
|
+
},
|
|
397
|
+
"estimated_line_length": {
|
|
398
|
+
"description": "Estimated average line length in bytes (used for large file line estimation)\nThis is used by LineIterator to estimate line positions in large files\nwithout line metadata. Typical values: 80-120 bytes.",
|
|
399
|
+
"type": "integer",
|
|
400
|
+
"format": "uint",
|
|
401
|
+
"minimum": 0,
|
|
402
|
+
"x-section": "Performance",
|
|
403
|
+
"default": 80
|
|
404
|
+
},
|
|
405
|
+
"file_tree_poll_interval_ms": {
|
|
406
|
+
"description": "Poll interval in milliseconds for refreshing expanded directories in the file explorer.\nDirectory modification times are checked at this interval to detect new/deleted files.\nLower values detect changes faster but use more CPU.\nDefault: 3000ms (3 seconds)",
|
|
407
|
+
"type": "integer",
|
|
408
|
+
"format": "uint64",
|
|
409
|
+
"minimum": 0,
|
|
410
|
+
"x-section": "Performance",
|
|
411
|
+
"default": 3000
|
|
358
412
|
}
|
|
359
413
|
}
|
|
360
414
|
},
|
|
361
|
-
"LineEndingOption": {
|
|
362
|
-
"description": "Default line ending format for new files",
|
|
363
|
-
"type": "string",
|
|
364
|
-
"enum": [
|
|
365
|
-
"lf",
|
|
366
|
-
"crlf",
|
|
367
|
-
"cr"
|
|
368
|
-
],
|
|
369
|
-
"default": "lf"
|
|
370
|
-
},
|
|
371
415
|
"CursorStyle": {
|
|
372
416
|
"description": "Terminal cursor style",
|
|
373
417
|
"type": "string",
|
|
@@ -381,6 +425,26 @@
|
|
|
381
425
|
"steady_underline"
|
|
382
426
|
]
|
|
383
427
|
},
|
|
428
|
+
"LineEndingOption": {
|
|
429
|
+
"description": "Default line ending format for new files",
|
|
430
|
+
"type": "string",
|
|
431
|
+
"enum": [
|
|
432
|
+
"lf",
|
|
433
|
+
"crlf",
|
|
434
|
+
"cr"
|
|
435
|
+
],
|
|
436
|
+
"default": "lf"
|
|
437
|
+
},
|
|
438
|
+
"AcceptSuggestionOnEnter": {
|
|
439
|
+
"description": "Controls whether Enter accepts a completion suggestion",
|
|
440
|
+
"type": "string",
|
|
441
|
+
"enum": [
|
|
442
|
+
"on",
|
|
443
|
+
"off",
|
|
444
|
+
"smart"
|
|
445
|
+
],
|
|
446
|
+
"default": "on"
|
|
447
|
+
},
|
|
384
448
|
"FileExplorerConfig": {
|
|
385
449
|
"description": "File explorer configuration",
|
|
386
450
|
"type": "object",
|
|
@@ -1,80 +1,80 @@
|
|
|
1
1
|
{
|
|
2
2
|
"cs": {
|
|
3
|
-
"status.restoring_packages": "Obnovuji balicky NuGet pro {project}...",
|
|
4
|
-
"status.restore_completed": "Obnoveni NuGet dokonceno pro {project}",
|
|
5
|
-
"status.restore_failed": "Obnoveni NuGet selhalo: {error}",
|
|
6
|
-
"status.restore_error": "Chyba obnoveni NuGet: {error}"
|
|
3
|
+
"status.restoring_packages": "Obnovuji balicky NuGet pro %{project}...",
|
|
4
|
+
"status.restore_completed": "Obnoveni NuGet dokonceno pro %{project}",
|
|
5
|
+
"status.restore_failed": "Obnoveni NuGet selhalo: %{error}",
|
|
6
|
+
"status.restore_error": "Chyba obnoveni NuGet: %{error}"
|
|
7
7
|
},
|
|
8
8
|
"de": {
|
|
9
|
-
"status.restoring_packages": "NuGet-Pakete werden fur {project} wiederhergestellt...",
|
|
10
|
-
"status.restore_completed": "NuGet-Wiederherstellung fur {project} abgeschlossen",
|
|
11
|
-
"status.restore_failed": "NuGet-Wiederherstellung fehlgeschlagen: {error}",
|
|
12
|
-
"status.restore_error": "NuGet-Wiederherstellungsfehler: {error}"
|
|
9
|
+
"status.restoring_packages": "NuGet-Pakete werden fur %{project} wiederhergestellt...",
|
|
10
|
+
"status.restore_completed": "NuGet-Wiederherstellung fur %{project} abgeschlossen",
|
|
11
|
+
"status.restore_failed": "NuGet-Wiederherstellung fehlgeschlagen: %{error}",
|
|
12
|
+
"status.restore_error": "NuGet-Wiederherstellungsfehler: %{error}"
|
|
13
13
|
},
|
|
14
14
|
"en": {
|
|
15
|
-
"status.restoring_packages": "Restoring NuGet packages for {project}...",
|
|
16
|
-
"status.restore_completed": "NuGet restore completed for {project}",
|
|
17
|
-
"status.restore_failed": "NuGet restore failed: {error}",
|
|
18
|
-
"status.restore_error": "NuGet restore error: {error}"
|
|
15
|
+
"status.restoring_packages": "Restoring NuGet packages for %{project}...",
|
|
16
|
+
"status.restore_completed": "NuGet restore completed for %{project}",
|
|
17
|
+
"status.restore_failed": "NuGet restore failed: %{error}",
|
|
18
|
+
"status.restore_error": "NuGet restore error: %{error}"
|
|
19
19
|
},
|
|
20
20
|
"es": {
|
|
21
|
-
"status.restoring_packages": "Restaurando paquetes NuGet para {project}...",
|
|
22
|
-
"status.restore_completed": "Restauracion de NuGet completada para {project}",
|
|
23
|
-
"status.restore_failed": "Restauracion de NuGet fallida: {error}",
|
|
24
|
-
"status.restore_error": "Error de restauracion de NuGet: {error}"
|
|
21
|
+
"status.restoring_packages": "Restaurando paquetes NuGet para %{project}...",
|
|
22
|
+
"status.restore_completed": "Restauracion de NuGet completada para %{project}",
|
|
23
|
+
"status.restore_failed": "Restauracion de NuGet fallida: %{error}",
|
|
24
|
+
"status.restore_error": "Error de restauracion de NuGet: %{error}"
|
|
25
25
|
},
|
|
26
26
|
"fr": {
|
|
27
|
-
"status.restoring_packages": "Restauration des paquets NuGet pour {project}...",
|
|
28
|
-
"status.restore_completed": "Restauration NuGet terminee pour {project}",
|
|
29
|
-
"status.restore_failed": "Echec de la restauration NuGet: {error}",
|
|
30
|
-
"status.restore_error": "Erreur de restauration NuGet: {error}"
|
|
27
|
+
"status.restoring_packages": "Restauration des paquets NuGet pour %{project}...",
|
|
28
|
+
"status.restore_completed": "Restauration NuGet terminee pour %{project}",
|
|
29
|
+
"status.restore_failed": "Echec de la restauration NuGet: %{error}",
|
|
30
|
+
"status.restore_error": "Erreur de restauration NuGet: %{error}"
|
|
31
31
|
},
|
|
32
32
|
"it": {
|
|
33
|
-
"status.restoring_packages": "Ripristino pacchetti NuGet per {project}...",
|
|
34
|
-
"status.restore_completed": "Ripristino NuGet completato per {project}",
|
|
35
|
-
"status.restore_failed": "Ripristino NuGet fallito: {error}",
|
|
36
|
-
"status.restore_error": "Errore ripristino NuGet: {error}"
|
|
33
|
+
"status.restoring_packages": "Ripristino pacchetti NuGet per %{project}...",
|
|
34
|
+
"status.restore_completed": "Ripristino NuGet completato per %{project}",
|
|
35
|
+
"status.restore_failed": "Ripristino NuGet fallito: %{error}",
|
|
36
|
+
"status.restore_error": "Errore ripristino NuGet: %{error}"
|
|
37
37
|
},
|
|
38
38
|
"ja": {
|
|
39
|
-
"status.restoring_packages": "{project}のNuGetパッケージを復元中...",
|
|
40
|
-
"status.restore_completed": "{project}のNuGet復元が完了しました",
|
|
41
|
-
"status.restore_failed": "NuGet復元に失敗しました: {error}",
|
|
42
|
-
"status.restore_error": "NuGet復元エラー: {error}"
|
|
39
|
+
"status.restoring_packages": "%{project}のNuGetパッケージを復元中...",
|
|
40
|
+
"status.restore_completed": "%{project}のNuGet復元が完了しました",
|
|
41
|
+
"status.restore_failed": "NuGet復元に失敗しました: %{error}",
|
|
42
|
+
"status.restore_error": "NuGet復元エラー: %{error}"
|
|
43
43
|
},
|
|
44
44
|
"ko": {
|
|
45
|
-
"status.restoring_packages": "{project}의 NuGet 패키지 복원 중...",
|
|
46
|
-
"status.restore_completed": "{project}의 NuGet 복원이 완료되었습니다",
|
|
47
|
-
"status.restore_failed": "NuGet 복원 실패: {error}",
|
|
48
|
-
"status.restore_error": "NuGet 복원 오류: {error}"
|
|
45
|
+
"status.restoring_packages": "%{project}의 NuGet 패키지 복원 중...",
|
|
46
|
+
"status.restore_completed": "%{project}의 NuGet 복원이 완료되었습니다",
|
|
47
|
+
"status.restore_failed": "NuGet 복원 실패: %{error}",
|
|
48
|
+
"status.restore_error": "NuGet 복원 오류: %{error}"
|
|
49
49
|
},
|
|
50
50
|
"pt-BR": {
|
|
51
|
-
"status.restoring_packages": "Restaurando pacotes NuGet para {project}...",
|
|
52
|
-
"status.restore_completed": "Restauracao do NuGet concluida para {project}",
|
|
53
|
-
"status.restore_failed": "Restauracao do NuGet falhou: {error}",
|
|
54
|
-
"status.restore_error": "Erro na restauracao do NuGet: {error}"
|
|
51
|
+
"status.restoring_packages": "Restaurando pacotes NuGet para %{project}...",
|
|
52
|
+
"status.restore_completed": "Restauracao do NuGet concluida para %{project}",
|
|
53
|
+
"status.restore_failed": "Restauracao do NuGet falhou: %{error}",
|
|
54
|
+
"status.restore_error": "Erro na restauracao do NuGet: %{error}"
|
|
55
55
|
},
|
|
56
56
|
"ru": {
|
|
57
|
-
"status.restoring_packages": "Восстановление пакетов NuGet для {project}...",
|
|
58
|
-
"status.restore_completed": "Восстановление NuGet завершено для {project}",
|
|
59
|
-
"status.restore_failed": "Ошибка восстановления NuGet: {error}",
|
|
60
|
-
"status.restore_error": "Ошибка восстановления NuGet: {error}"
|
|
57
|
+
"status.restoring_packages": "Восстановление пакетов NuGet для %{project}...",
|
|
58
|
+
"status.restore_completed": "Восстановление NuGet завершено для %{project}",
|
|
59
|
+
"status.restore_failed": "Ошибка восстановления NuGet: %{error}",
|
|
60
|
+
"status.restore_error": "Ошибка восстановления NuGet: %{error}"
|
|
61
61
|
},
|
|
62
62
|
"th": {
|
|
63
|
-
"status.restoring_packages": "กำลังกู้คืนแพ็คเกจ NuGet สำหรับ {project}...",
|
|
64
|
-
"status.restore_completed": "การกู้คืน NuGet สำหรับ {project} เสร็จสมบูรณ์",
|
|
65
|
-
"status.restore_failed": "การกู้คืน NuGet ล้มเหลว: {error}",
|
|
66
|
-
"status.restore_error": "ข้อผิดพลาดการกู้คืน NuGet: {error}"
|
|
63
|
+
"status.restoring_packages": "กำลังกู้คืนแพ็คเกจ NuGet สำหรับ %{project}...",
|
|
64
|
+
"status.restore_completed": "การกู้คืน NuGet สำหรับ %{project} เสร็จสมบูรณ์",
|
|
65
|
+
"status.restore_failed": "การกู้คืน NuGet ล้มเหลว: %{error}",
|
|
66
|
+
"status.restore_error": "ข้อผิดพลาดการกู้คืน NuGet: %{error}"
|
|
67
67
|
},
|
|
68
68
|
"uk": {
|
|
69
|
-
"status.restoring_packages": "Відновлення пакетів NuGet для {project}...",
|
|
70
|
-
"status.restore_completed": "Відновлення NuGet завершено для {project}",
|
|
71
|
-
"status.restore_failed": "Помилка відновлення NuGet: {error}",
|
|
72
|
-
"status.restore_error": "Помилка відновлення NuGet: {error}"
|
|
69
|
+
"status.restoring_packages": "Відновлення пакетів NuGet для %{project}...",
|
|
70
|
+
"status.restore_completed": "Відновлення NuGet завершено для %{project}",
|
|
71
|
+
"status.restore_failed": "Помилка відновлення NuGet: %{error}",
|
|
72
|
+
"status.restore_error": "Помилка відновлення NuGet: %{error}"
|
|
73
73
|
},
|
|
74
74
|
"zh-CN": {
|
|
75
|
-
"status.restoring_packages": "
|
|
76
|
-
"status.restore_completed": "{project}的NuGet恢复已完成",
|
|
77
|
-
"status.restore_failed": "NuGet恢复失败: {error}",
|
|
78
|
-
"status.restore_error": "NuGet恢复错误: {error}"
|
|
75
|
+
"status.restoring_packages": "正在为%{project}恢复NuGet包...",
|
|
76
|
+
"status.restore_completed": "%{project}的NuGet恢复已完成",
|
|
77
|
+
"status.restore_failed": "NuGet恢复失败: %{error}",
|
|
78
|
+
"status.restore_error": "NuGet恢复错误: %{error}"
|
|
79
79
|
}
|
|
80
80
|
}
|