Skip to content

Commit a44ee2f

Browse files
authored
Merge pull request microsoft#199712 from microsoft/tyriar/197734_2
Remove application scope
2 parents 92772dc + 05e5949 commit a44ee2f

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -628,16 +628,14 @@ const terminalConfiguration: IConfigurationNode = {
628628
[TerminalSettingId.StickyScrollEnabled]: {
629629
markdownDescription: localize('terminal.integrated.stickyScroll.enabled', "Experimental: Shows the current command at the top of the terminal."),
630630
type: 'boolean',
631-
default: false,
632-
scope: ConfigurationScope.APPLICATION
631+
default: false
633632
},
634633
[TerminalSettingId.StickyScrollMaxLineCount]: {
635634
markdownDescription: localize('terminal.integrated.stickyScroll.maxLineCount', "Defines the maximum number of sticky lines to show. Sticky scroll lines will never exceed 40% of the viewport regardless of this setting."),
636635
type: 'number',
637636
default: 5,
638637
minimum: 1,
639-
maximum: 10,
640-
scope: ConfigurationScope.APPLICATION
638+
maximum: 10
641639
}
642640
}
643641
};

0 commit comments

Comments
 (0)