]> Sergey Matveev's repositories - st.git/commit
Don't scroll selection on the other screen
authorPeter Hofmann <scm@uninformativ.de>
Sat, 7 Oct 2023 05:40:07 +0000 (07:40 +0200)
committerHiltjo Posthuma <hiltjo@codemadness.org>
Sat, 7 Oct 2023 10:16:59 +0000 (12:16 +0200)
commit2fc7e532b23e2f820c6b73d352ec7c41fefa45b5
tree33e02e000a5cabdca94add480200daf6a10ce0b3
parenta6bbc0c96b0a1db804061b0db79101c6b26aec57
Don't scroll selection on the other screen

Fixes garbage selections when switching to/from the alternate screen.

How to reproduce:

-   Be in primary screen.
-   Select something.
-   Run this (switches to alternate screen, positions the cursor at the
    bottom, triggers selscroll(), and then goes back to primary screen):

        tput smcup; tput cup $(tput lines) 0; echo foo; tput rmcup

-   Notice how the (visual) selection now covers a different line.

The reason is that selscroll() calls selnormalize() and that cannot find
the original range anymore. It's all empty lines now, so it snaps to
"select the whole line".
st.c