Merge pull request #182874 from microsoft/tyriar/181081

Elaborate on how the scrollback setting is used
This commit is contained in:
Daniel Imms 2023-05-18 09:05:53 -07:00 committed by GitHub
commit c2b15febd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -269,7 +269,7 @@ const terminalConfiguration: IConfigurationNode = {
default: 1
},
[TerminalSettingId.Scrollback]: {
description: localize('terminal.integrated.scrollback', "Controls the maximum number of lines the terminal keeps in its buffer."),
description: localize('terminal.integrated.scrollback', "Controls the maximum number of lines the terminal keeps in its buffer. We pre-allocate memory based on this value in order to ensure a smooth experience. As such, as the value increases, so will the amount of memory."),
type: 'number',
default: 1000
},