Skip to content

Commit 101b288

Browse files
authored
Merge pull request microsoft#185421 from weartist/terminal_localEchoStyle_adjust
Fix microsoft#185343
2 parents 34116a4 + c39c543 commit 101b288

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/vs/workbench/contrib/terminal/common/terminalConfiguration.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -503,16 +503,13 @@ const terminalConfiguration: IConfigurationNode = {
503503
[TerminalSettingId.LocalEchoStyle]: {
504504
description: localize('terminal.integrated.localEchoStyle', "Terminal style of locally echoed text; either a font style or an RGB color."),
505505
default: 'dim',
506-
oneOf: [
506+
anyOf: [
507507
{
508-
type: 'string',
509-
default: 'dim',
510-
enum: ['bold', 'dim', 'italic', 'underlined', 'inverted'],
508+
enum: ['bold', 'dim', 'italic', 'underlined', 'inverted', '#ff0000'],
511509
},
512510
{
513511
type: 'string',
514512
format: 'color-hex',
515-
default: '#ff0000',
516513
}
517514
]
518515
},

0 commit comments

Comments
 (0)