diff options
author | asparagii <michele.lambertucci1@gmail.com> | 2022-01-27 15:44:02 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-02-03 16:08:49 +0300 |
commit | e4912814c02fdf4fae9fe9b655ee147f714ceb0d (patch) | |
tree | c15a54acd4f2f467906614de64bf197bb1b2c255 | |
parent | d1443515a862307ef46f3d902f632655bc54997e (diff) | |
download | st-fork-e4912814c02fdf4fae9fe9b655ee147f714ceb0d.tar.gz |
st-scrollback-mouse
Source: https://st.suckless.org/patches/scrollback/
-rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index e3b469b..c217315 100644 --- a/config.def.h +++ b/config.def.h @@ -176,6 +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, Button2, selpaste, {.i = 0}, 1 }, { ShiftMask, Button4, ttysend, {.s = "\033[5;2~"} }, { XK_ANY_MOD, Button4, ttysend, {.s = "\031"} }, |