From 6afabf1f55578295e3ff57553114757c2d308257 Mon Sep 17 00:00:00 2001 From: davidpkj Date: Wed, 15 Feb 2023 10:32:14 +0100 Subject: Patch: scrollback-mouse-altscreen-20220127 --- config.def.h | 4 ++-- st.c | 5 +++++ st.h | 1 + x.c | 2 ++ 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/config.def.h b/config.def.h index c217315..c223706 100644 --- a/config.def.h +++ b/config.def.h @@ -176,8 +176,8 @@ static uint forcemousemod = ShiftMask; */ static MouseShortcut mshortcuts[] = { /* mask button function argument release */ - { ShiftMask, Button4, kscrollup, {.i = 1} }, - { ShiftMask, Button5, kscrolldown, {.i = 1} }, + { XK_ANY_MOD, Button4, kscrollup, {.i = 1}, 0, /* !alt */ -1 }, + { XK_ANY_MOD, Button5, kscrolldown, {.i = 1}, 0, /* !alt */ -1 }, { XK_ANY_MOD, Button2, selpaste, {.i = 0}, 1 }, { ShiftMask, Button4, ttysend, {.s = "\033[5;2~"} }, { XK_ANY_MOD, Button4, ttysend, {.s = "\031"} }, diff --git a/st.c b/st.c index 46ba498..a5bb20d 100644 --- a/st.c +++ b/st.c @@ -1063,6 +1063,11 @@ tsetdirtattr(int attr) } } +int tisaltscr(void) +{ + return IS_SET(MODE_ALTSCREEN); +} + void tfulldirt(void) { diff --git a/st.h b/st.h index 514ec08..eda7eeb 100644 --- a/st.h +++ b/st.h @@ -91,6 +91,7 @@ void sendbreak(const Arg *); void toggleprinter(const Arg *); int tattrset(int); +int tisaltscr(void); void tnew(int, int); int tisaltscreen(void); void tresize(int, int); diff --git a/x.c b/x.c index aa09997..fba89f3 100644 --- a/x.c +++ b/x.c @@ -34,6 +34,7 @@ typedef struct { void (*func)(const Arg *); const Arg arg; uint release; + int altscrn; /* 0: don't care, -1: not alt screen, 1: alt screen */ } MouseShortcut; typedef struct { @@ -455,6 +456,7 @@ mouseaction(XEvent *e, uint release) for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) { if (ms->release == release && ms->button == e->xbutton.button && + (!ms->altscrn || (ms->altscrn == (tisaltscr() ? 1 : -1))) && (match(ms->mod, state) || /* exact or forced */ match(ms->mod, state & ~forcemousemod))) { ms->func(&(ms->arg)); -- cgit v1.2.3