aboutsummaryrefslogtreecommitdiff
path: root/config.def.h
diff options
context:
space:
mode:
authorMateja <mail@matejamaric.com>2021-04-09 22:46:44 +0200
committerMateja <mail@matejamaric.com>2021-04-09 22:46:44 +0200
commitc2131a689c5b83d2f5015f5afdce5ab3bc58e734 (patch)
tree0254a67ee8978af7663be9eca0d3459a58adb8c8 /config.def.h
parent09f652d8aff93ba8b7e96d07a58c1aa520f44a2f (diff)
downloadst-c2131a689c5b83d2f5015f5afdce5ab3bc58e734.tar.gz
st-c2131a689c5b83d2f5015f5afdce5ab3bc58e734.zip
Applied third `scrollback` patch.
Allow scrollback using mouse wheel only when not in MODE_ALTSCREEN.
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.def.h b/config.def.h
index bdeeca4..3eaba27 100644
--- a/config.def.h
+++ b/config.def.h
@@ -189,8 +189,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"} },