st
simple terminal
git clone https://9o.is/git/st.git
commit 4c4b1a1ce96e5d4b2db89d760cdfd9f46f57d30a parent cbcc5351de9f27d94c0f14f37152e15242117437 Author: Roberto E. Vargas Caballero <k0ga@shike2.net> Date: Fri, 28 Nov 2025 16:31:59 +0100 Disable bracked paste in reset Sadly, there are too many programs today that enable this mode and it is becoming very common to find the terminal adding characters before and after in every of your pastes. A reset should disable this mode. Diffstat:
| M | st.c | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/st.c b/st.c @@ -2358,6 +2358,7 @@ eschandle(uchar ascii) resettitle(); xloadcols(); xsetmode(0, MODE_HIDE); + xsetmode(0, MODE_BRCKTPASTE); break; case '=': /* DECPAM -- Application keypad */ xsetmode(1, MODE_APPKEYPAD);