mirror of
git://git.suckless.org/st
synced 2025-04-27 11:00:57 +01:00
Fix selection: ignore ATTR_WRAP when rectangular selection in getsel
This commit is contained in:
parent
8304d4f059
commit
9c30066e73
3
st.c
3
st.c
@ -634,7 +634,8 @@ getsel(void)
|
||||
* st.
|
||||
* FIXME: Fix the computer world.
|
||||
*/
|
||||
if ((y < sel.ne.y || lastx >= linelen) && !(last->mode & ATTR_WRAP))
|
||||
if ((y < sel.ne.y || lastx >= linelen) &&
|
||||
(!(last->mode & ATTR_WRAP) || sel.type == SEL_RECTANGULAR))
|
||||
*ptr++ = '\n';
|
||||
}
|
||||
*ptr = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user