From d22e02652bc086ceaec56c8b5b382240ec105899 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Sun, 3 Oct 2021 01:42:26 -0400 Subject: patch: scrollback-mouse-increment (custom rewrite) Apply the following patch on top of the first two to allow changing how fast the mouse scrolls. I had to manually reimplement this patch myself, since the version from suckless.org doesn't apply cleanly on top of the first three when starting from commit bda9c9ffa645. In addition to fixing-up this patch so it applies to the previous HEAD, a comment is added stating that the codes sent while scrolling in alt-screen mode (the btn 4/5 fallbacks) need to be maintained along with the preferred mousescrollincrement setting so the two modes scroll the same, which they currently do. --- config.def.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/config.def.h b/config.def.h index 0c8447c..1c11c24 100644 --- a/config.def.h +++ b/config.def.h @@ -177,14 +177,15 @@ static uint forcemousemod = ShiftMask; * Internal mouse shortcuts. * Beware that overloading Button1 will disable the selection. */ +const unsigned int mousescrollincrement = 1; static MouseShortcut mshortcuts[] = { /* mask button function argument release */ - { XK_ANY_MOD, Button4, kscrollup, {.i = 1}, 0, /* !alt */ -1 }, - { XK_ANY_MOD, Button5, kscrolldown, {.i = 1}, 0, /* !alt */ -1 }, + { XK_ANY_MOD, Button4, kscrollup, {.i = mousescrollincrement}, 0, /* !alt */ -1 }, + { XK_ANY_MOD, Button5, kscrolldown, {.i = mousescrollincrement}, 0, /* !alt */ -1 }, { XK_ANY_MOD, Button2, selpaste, {.i = 0}, 1 }, - { ShiftMask, Button4, ttysend, {.s = "\033[5;2~"} }, + + /* Be sure to modify Button4/5 codes whenever mousescrollincrement is updated! */ { XK_ANY_MOD, Button4, ttysend, {.s = "\031"} }, - { ShiftMask, Button5, ttysend, {.s = "\033[6;2~"} }, { XK_ANY_MOD, Button5, ttysend, {.s = "\005"} }, }; -- cgit v1.2.3