Bump to 0723b7e. 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.

https://git.suckless.org/st/commit/0723b7e39e73b2bcfce047b047f6e795d6184028.html
This commit is contained in:
Bakkeby 2026-02-18 11:19:39 +01:00
parent cc852e9a86
commit 721a690877

1
st.c
View file

@ -3332,6 +3332,7 @@ eschandle(uchar ascii)
resettitle(); resettitle();
xloadcols(); xloadcols();
xsetmode(0, MODE_HIDE); xsetmode(0, MODE_HIDE);
xsetmode(0, MODE_BRCKTPASTE);
#if SCROLLBACK_PATCH && !REFLOW_PATCH #if SCROLLBACK_PATCH && !REFLOW_PATCH
if (!IS_SET(MODE_ALTSCREEN)) { if (!IS_SET(MODE_ALTSCREEN)) {
term.scr = 0; term.scr = 0;