all repos — st @ 9df9a4723dedf4f5e12c954376c4931a6976b918

st (suckless terminal) config

Fix truecolor escapes, when both bg and fg are set

for example
echo -e "\e[48;2;255;0;0m\e[38;2;0;0;255m test "
should render on red bg with blue fg

also now elinks works correctly when using 'truecolor' option
in preferences

Signed-off-by: Amadeusz Sławiński <amade@asmblr.net>
Amadeusz Sławiński amade@asmblr.net
commit

9df9a4723dedf4f5e12c954376c4931a6976b918

parent

e8dba89164fe70647a413b8568b545ff2d887a78

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M st.cst.c

@@ -3083,6 +3083,7 @@ if(base.fg == defaultfg)

base.fg = defaultunderline; } if(IS_TRUECOL(base.fg)) { + colfg.alpha = 0xffff; colfg.red = TRUERED(base.fg); colfg.green = TRUEGREEN(base.fg); colfg.blue = TRUEBLUE(base.fg);

@@ -3093,6 +3094,7 @@ fg = &dc.col[base.fg];

} if(IS_TRUECOL(base.bg)) { + colbg.alpha = 0xffff; colbg.green = TRUEGREEN(base.bg); colbg.red = TRUERED(base.bg); colbg.blue = TRUEBLUE(base.bg);