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
Then pressing alt+down to scroll down one line in the file produces the following
screen update sequence from the TTY:
[39m[49m[2;23r[2;1H[1M[1;24r[1;35H[30m[46m2[6C2[9C4[14C32[5C0[23;1H[37m[44mimport { Buffer } from './Buffer'; [2;1H
which translates to:
// only use row 2-23 for scroll (`[2;23r`)
InputHandler.setScrollRegion(2,23)
// use full screen for scroll (`[1;24r`)
InputHandler.setScrollRegion(1,24)
Editing a file in
mc
and scrolling (either with scroll wheel or using the arrow keys) renders the first row of the screen incorrectly:This bug was likely introduced by #855 and tried to fix by #923 without success. Note It does only happen on the
v3
branch, not master.To reproduce, install mc
brew install mc
, then in the demomcedit lib/Terminal.js
and scroll using the wheel oralt+down
andalt+up
The text was updated successfully, but these errors were encountered: