Merge pull request #199712 from microsoft/tyriar/197734_2

Remove application scope
This commit is contained in:
Daniel Imms
2023-11-30 14:46:37 -08:00
committed by GitHub
@@ -628,16 +628,14 @@ const terminalConfiguration: IConfigurationNode = {
[TerminalSettingId.StickyScrollEnabled]: {
markdownDescription: localize('terminal.integrated.stickyScroll.enabled', "Experimental: Shows the current command at the top of the terminal."),
type: 'boolean',
default: false,
scope: ConfigurationScope.APPLICATION
default: false
},
[TerminalSettingId.StickyScrollMaxLineCount]: {
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."),
type: 'number',
default: 5,
minimum: 1,
maximum: 10,
scope: ConfigurationScope.APPLICATION
maximum: 10
}
}
};