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
description: localize('terminal.integrated.fontWeight',"The font weight to use within the terminal for non-bold text."),
139
+
'anyOf': [
140
+
{
141
+
type: 'number',
142
+
minimum: MINIMUM_FONT_WEIGHT,
143
+
maximum: MAXIMUM_FONT_WEIGHT,
144
+
errorMessage: localize('terminal.integrated.fontWeightError',"Only \"normal\" and \"bold\" keywords or numbers between 1 and 1000 are allowed.")
145
+
},
146
+
{
147
+
type: 'string',
148
+
pattern: '^(normal|bold|1000|[1-9][0-9]{0,2})$'
149
+
},
150
+
{
151
+
enum: SUGGESTIONS_FONT_WEIGHT,
152
+
}
153
+
],
154
+
description: localize('terminal.integrated.fontWeight',"The font weight to use within the terminal for non-bold text. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."),
description: localize('terminal.integrated.fontWeightBold',"The font weight to use within the terminal for bold text."),
158
+
'anyOf': [
159
+
{
160
+
type: 'number',
161
+
minimum: MINIMUM_FONT_WEIGHT,
162
+
maximum: MAXIMUM_FONT_WEIGHT,
163
+
errorMessage: localize('terminal.integrated.fontWeightError',"Only \"normal\" and \"bold\" keywords or numbers between 1 and 1000 are allowed.")
164
+
},
165
+
{
166
+
type: 'string',
167
+
pattern: '^(normal|bold|1000|[1-9][0-9]{0,2})$'
168
+
},
169
+
{
170
+
enum: SUGGESTIONS_FONT_WEIGHT,
171
+
}
172
+
],
173
+
description: localize('terminal.integrated.fontWeightBold',"The font weight to use within the terminal for bold text. Accepts \"normal\" and \"bold\" keywords or numbers between 1 and 1000."),
0 commit comments