all repos — st @ 80fe97f8a66d31945bdddbb9381b2cc54359f48e

st (suckless terminal) config

Fix the cursor color when over selection.

If we want to show a custom selected cursor color, we must not set the
revert attribute to the drawn glyph.

Signed-off-by: Christoph Lohmann <20h@r-36.net>
Quentin Rameau quinq@fifth.space
commit

80fe97f8a66d31945bdddbb9381b2cc54359f48e

parent

a2a60f0a2ce33dbd4ef07aaa4a914391481fa1de

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

jump to
M st.cst.c

@@ -3852,7 +3852,8 @@

g.u = term.line[term.c.y][term.c.x].u; if (ena_sel && selected(term.c.x, term.c.y)) { drawcol = dc.col[defaultrcs]; - g.mode ^= ATTR_REVERSE; + g.fg = defaultfg; + g.bg = defaultrcs; } else { drawcol = dc.col[defaultcs]; }