Add setting of scroll back buffer size for debug console, like integrated terminal #129493
Labels
debug
Debug viewlet, configurations, breakpoints, adapter issues
feature-request
Request for new features or functionality
*out-of-scope
Posted issue is not in scope of VS Code
Milestone
Hi,
I'm aware of this ticket: #68100
But not sure why it's just closed. I believe this is a valid feature request, like this: Dart-Code/Dart-Code#1613
My scenario is: on Windows we use "
OutputDebugStringW
" to do logging, which will cause all messages to go to the debug console, and I think it's very handy to keep logs in separate window to have a clean terminal for interaction with user etc.It seems that there were some performance issues reported on debug console scrolling, then the result is this buffer size is just hard limited to 10,000 lines, like this: #71737
So can we have a setting like
terminal.integrated.scrollback
to control the size of scroll back buffer for the debug console, instead of hard limiting it to 10,000 lines?Not sure if the "filtering window" can cause performance issue with the bigger scroll back buffer, but to me it's OK to just disable this filtering window. I'd rather have the full buffer, and I can copy it all to an editor to check. But for now I can only copy 10,000 lines and all those before it are just lost.
Thanks.
The text was updated successfully, but these errors were encountered: