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
Both Unix (VT-like terminal) and Windows support scrolling sub-regions of the terminal's buffer contents. Add a method to Screen such as Screen.scroll_buffer() which accepts a rectangle and a scroll vector. This will:
scroll the contents of the Screen's buffer, marking each cell as not dirty
force an update
set the backend's scroll region and ask the backend to perform the scroll
If the backend does not support scrolling, the Screen will instead mark the scrolled cells as dirty and not perform steps 2 or 3.
The text was updated successfully, but these errors were encountered:
Both Unix (VT-like terminal) and Windows support scrolling sub-regions of the terminal's buffer contents. Add a method to
Screen
such asScreen.scroll_buffer()
which accepts a rectangle and a scroll vector. This will:Screen
's buffer, marking each cell as not dirtyIf the backend does not support scrolling, the
Screen
will instead mark the scrolled cells as dirty and not perform steps 2 or 3.The text was updated successfully, but these errors were encountered: