You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now buffersize = scrollback when really it should be buffersize = rows + scrollback. This is how other terminals seems to act, it will also make supporting #802 easier and allow scrollback to equal 0 without needing to warn like we currently do.
Because of the way that the circular list is structured, resizing rows should resize the buffer to rows + scrollback.
The text was updated successfully, but these errors were encountered:
Right now
buffersize = scrollback
when really it should bebuffersize = rows + scrollback
. This is how other terminals seems to act, it will also make supporting #802 easier and allow scrollback to equal 0 without needing to warn like we currently do.Because of the way that the circular list is structured, resizing rows should resize the buffer to
rows + scrollback
.The text was updated successfully, but these errors were encountered: