From: Jakub Leszczak <szatan@gecc.xyz>
Date: Wed, 6 May 2020 11:35:53 +0000 (+0200)
Subject: Fix selection: ignore ATTR_WRAP when rectangular selection in getsel
X-Git-Url: https://git.owens.tech///git?a=commitdiff_plain;h=9c30066e73f0105c3fccb7582c8172d5117857b3;p=st.git

Fix selection: ignore ATTR_WRAP when rectangular selection in getsel
---

diff --git a/st.c b/st.c
index 8c42a9c..7c15d5f 100644
--- a/st.c
+++ b/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;