You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vs/editor/common/config/editorOptions.ts
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -2562,12 +2562,12 @@ class EditorInlayHints extends BaseEditorOption<EditorOption.inlayHints, IEditor
2562
2562
'editor.inlayHints.fontSize': {
2563
2563
type: 'number',
2564
2564
default: defaults.fontSize,
2565
-
markdownDescription: nls.localize('inlayHints.fontSize',"Controls font size of inlay hints in the editor. As default the `#editor.fontSize#` is used when the configured value is less than `5` or greater than the editor font size.")
2565
+
markdownDescription: nls.localize('inlayHints.fontSize',"Controls font size of inlay hints in the editor. As default the {0} is used when the configured value is less than {1} or greater than the editor font size.",'`#editor.fontSize#`','`5`')
2566
2566
},
2567
2567
'editor.inlayHints.fontFamily': {
2568
2568
type: 'string',
2569
2569
default: defaults.fontFamily,
2570
-
markdownDescription: nls.localize('inlayHints.fontFamily',"Controls font family of inlay hints in the editor. When set to empty, the `#editor.fontFamily#` is used.")
2570
+
markdownDescription: nls.localize('inlayHints.fontFamily',"Controls font family of inlay hints in the editor. When set to empty, the {0} is used.",'`#editor.fontFamily#`')
2571
2571
},
2572
2572
'editor.inlayHints.padding': {
2573
2573
type: 'boolean',
@@ -3643,7 +3643,7 @@ class BracketPairColorization extends BaseEditorOption<EditorOption.bracketPairC
3643
3643
'editor.bracketPairColorization.enabled': {
3644
3644
type: 'boolean',
3645
3645
default: defaults.enabled,
3646
-
markdownDescription: nls.localize('bracketPairColorization.enabled',"Controls whether bracket pair colorization is enabled or not. Use `#workbench.colorCustomizations#` to override the bracket highlight colors.")
3646
+
markdownDescription: nls.localize('bracketPairColorization.enabled',"Controls whether bracket pair colorization is enabled or not. Use {0} to override the bracket highlight colors.",'`#workbench.colorCustomizations#`')
'- `ctrlCmd` refers to a value the setting can take and should not be localized.',
4898
4898
'- `Control` and `Command` refer to the modifier keys Ctrl or Cmd on the keyboard and can be localized.'
4899
4899
]
4900
-
},"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).")
4900
+
},"The modifier to be used to add multiple cursors with the mouse. The Go to Definition and Open Link mouse gestures will adapt such that they do not conflict with the [multicursor modifier](https://code.visualstudio.com/docs/editor/codebasics#_multicursor-modifier).")
{markdownDescription: nls.localize('suggestFontSize',"Font size for the suggest widget. When set to `0`, the value of `#editor.fontSize#` is used.")}
5091
+
{markdownDescription: nls.localize('suggestFontSize',"Font size for the suggest widget. When set to {0}, the value of {1} is used.",'`0`','`#editor.fontSize#`')}
{markdownDescription: nls.localize('suggestLineHeight',"Line height for the suggest widget. When set to `0`, the value of `#editor.lineHeight#` is used. The minimum value is 8.")}
5096
+
{markdownDescription: nls.localize('suggestLineHeight',"Line height for the suggest widget. When set to {0}, the value of {1} is used. The minimum value is 8.",'`0`','`#editor.lineHeight#`')}
'markdownDescription': localize('restoreViewState',"Restores the last editor view state (e.g. scroll position) when re-opening editors after they have been closed. Editor view state is stored per editor group and discarded when a group closes. Use the `#workbench.editor.sharedViewState#` setting to use the last known view state across all editor groups in case no previous view state was found for a editor group."),
248
+
'markdownDescription': localize('restoreViewState',"Restores the last editor view state (e.g. scroll position) when re-opening editors after they have been closed. Editor view state is stored per editor group and discarded when a group closes. Use the {0} setting to use the last known view state across all editor groups in case no previous view state was found for a editor group.",'`#workbench.editor.sharedViewState#`'),
'markdownDescription': localize('limitEditorsMaximum',"Controls the maximum number of opened editors. Use the `#workbench.editor.limit.perEditorGroup#` setting to control this limit per editor group or across all groups.")
281
+
'markdownDescription': localize('limitEditorsMaximum',"Controls the maximum number of opened editors. Use the {0} setting to control this limit per editor group or across all groups.",'`#workbench.editor.limit.perEditorGroup#`')
'markdownDescription': localize("window.titleSeparator","Separator used by `window.title`.")
543
+
'markdownDescription': localize("window.titleSeparator","Separator used by {0}.",'`#window.title#`')
544
544
},
545
545
'window.commandCenter': {
546
546
type: 'boolean',
547
547
default: false,
548
-
markdownDescription: localize('window.commandCenter',"Show command launcher together with the window title. This setting only has an effect when `#window.titleBarStyle#` is set to `custom`.")
548
+
markdownDescription: localize('window.commandCenter',"Show command launcher together with the window title. This setting only has an effect when {0} is set to {1}.",'`#window.titleBarStyle#`','`custom`')
localize('window.menuBarVisibility.toggle.mac',"Menu is hidden but can be displayed at the top of the window by executing the `Focus Application Menu` command.") :
558
558
localize('window.menuBarVisibility.toggle',"Menu is hidden but can be displayed at the top of the window via the Alt key."),
559
559
localize('window.menuBarVisibility.hidden',"Menu is always hidden."),
560
-
localize('window.menuBarVisibility.compact',"Menu is displayed as a compact button in the side bar. This value is ignored when `#window.titleBarStyle#` is `native`.")
560
+
localize('window.menuBarVisibility.compact',"Menu is displayed as a compact button in the side bar. This value is ignored when {0} is {1}.",'`#window.titleBarStyle#`','`native`')
'markdownDescription': nls.localize('autoGuessEncoding',"When enabled, the editor will attempt to guess the character set encoding when opening files. This setting can also be configured per language. Note, this setting is not respected by text search. Only `#files.encoding#` is respected."),
188
+
'markdownDescription': nls.localize('autoGuessEncoding',"When enabled, the editor will attempt to guess the character set encoding when opening files. This setting can also be configured per language. Note, this setting is not respected by text search. Only {0} is respected.",'`#files.encoding#`'),
markdownDescription: nls.localize('excludeGitignore',"Controls whether entries in .gitignore should be parsed and excluded from the explorer. Similar to `#files.exclude#`."),
478
+
markdownDescription: nls.localize('excludeGitignore',"Controls whether entries in .gitignore should be parsed and excluded from the explorer. Similar to {0}.",'`#files.exclude#`'),
'markdownDescription': nls.localize('fileNestingExpand',"Controls whether file nests are automatically expanded. `#explorer.fileNesting.enabled#` must be set for this to take effect."),
490
+
'markdownDescription': nls.localize('fileNestingExpand',"Controls whether file nests are automatically expanded. {0} must be set for this to take effect.",'`#explorer.fileNesting.enabled#`'),
markdownDescription: nls.localize('notebook.markup.fontSize',"Controls the font size in pixels of rendered markup in notebooks. When set to `0`, 120% of `#editor.fontSize#` is used."),
884
+
markdownDescription: nls.localize('notebook.markup.fontSize',"Controls the font size in pixels of rendered markup in notebooks. When set to {0}, 120% of {1} is used.",'`0`','`#editor.fontSize#`'),
markdownDescription: nls.localize('notebook.outputFontSize',"Font size for the output text for notebook cells. When set to 0 `#editor.fontSize#` is used."),
903
+
markdownDescription: nls.localize('notebook.outputFontSize',"Font size for the output text for notebook cells. When set to {0}, {1} is used.",'`0`','`#editor.fontSize#`'),
904
904
type: 'number',
905
905
default: 0,
906
906
tags: ['notebookLayout']
907
907
},
908
908
[NotebookSetting.outputFontFamily]: {
909
-
markdownDescription: nls.localize('notebook.outputFontFamily',"The font family for the output text for notebook cells. When set to empty, the `#editor.fontFamily#` is used."),
909
+
markdownDescription: nls.localize('notebook.outputFontFamily',"The font family for the output text for notebook cells. When set to empty, the {0} is used.",'`#editor.fontFamily#`'),
markdownDescription: localize('remote.autoForwardPortsSource',"Sets the source from which ports are automatically forwarded when `remote.autoForwardPorts` is true. On Windows and Mac remotes, the `process` option has no effect and `output` will be used. Requires a reload to take effect."),
356
+
markdownDescription: localize('remote.autoForwardPortsSource',"Sets the source from which ports are automatically forwarded when {0} is true. On Windows and Mac remotes, the `process` option has no effect and `output` will be used. Requires a reload to take effect.",'`#remote.autoForwardPorts#`'),
357
357
enum: ['process','output'],
358
358
enumDescriptions: [
359
359
localize('remote.autoForwardPortsSource.process',"Ports will be automatically forwarded when discovered by watching for processes that are started and include a port."),
markdownDescription: localize('remote.portsAttributes.defaults',"Set default properties that are applied to all ports that don't get properties from the setting `remote.portsAttributes`. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```"),
466
+
markdownDescription: localize('remote.portsAttributes.defaults',"Set default properties that are applied to all ports that don't get properties from the setting {0}. For example:\n\n```\n{\n \"onAutoForward\": \"ignore\"\n}\n```",'`#remote.portsAttributes#`'),
markdownDescription: nls.localize('search.searchOnTypeDebouncePeriod',"When `#search.searchOnType#` is enabled, controls the timeout in milliseconds between a character being typed and the search starting. Has no effect when `search.searchOnType` is disabled.")
999
+
markdownDescription: nls.localize('search.searchOnTypeDebouncePeriod',"When {0} is enabled, controls the timeout in milliseconds between a character being typed and the search starting. Has no effect when {0} is disabled.",'`#search.searchOnType#`')
0 commit comments