diff options
author | tsxv478 <vt0451@yandex.ru> | 2022-07-17 04:23:50 +0300 |
---|---|---|
committer | tsxv478 <vt0451@yandex.ru> | 2022-07-17 04:23:50 +0300 |
commit | 02760c4ad088e94d69976b5d5367b918fccd69bf (patch) | |
tree | 7bcaa8560049cb923862b2fabf7899d01058a5d1 /config.def.h | |
parent | 1249b14c3c2f976e3253ba7339d67ccd03ee6868 (diff) |
scrollback mouse altscreen patch
Diffstat (limited to 'config.def.h')
-rw-r--r-- | config.def.h | 4 |
1 files changed, 2 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"} }, |