st

simple terminal

git clone https://9o.is/git/st.git

commit 6e32bcfed2f689814bfc2723afb8a528da77a5d7
parent 4a0d6ec5bcb6c478a29673cb643e017413b429e8
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Wed, 12 Jan 2022 09:44:27 +0100

X10/SGR mouse: use alt as meta key instead of super/windows key

Diffstat:
Mx.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x.c b/x.c @@ -415,7 +415,7 @@ mousereport(XEvent *e) if (!IS_SET(MODE_MOUSEX10)) { code += ((state & ShiftMask ) ? 4 : 0) - + ((state & Mod4Mask ) ? 8 : 0) + + ((state & Mod1Mask ) ? 8 : 0) /* meta key: alt */ + ((state & ControlMask) ? 16 : 0); }