1
0
mirror of git://git.suckless.org/st synced 2025-12-18 13:13:08 +01:00

1 Commits

Author SHA1 Message Date
Roberto E. Vargas Caballero
0723b7e39e 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.
2025-12-02 20:09:47 +01:00

1
st.c
View File

@@ -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);