mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-12 01:28:01 +01:00
Merge pull request #199712 from microsoft/tyriar/197734_2
Remove application scope
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user