summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2021-10-03 01:42:26 -0400
committerMatt Hunter <m@lfurio.us>2026-02-06 00:31:41 -0500
commit661c14cbc1cccc11505d66d8fb24099255817f77 (patch)
tree022d38f2c08bc5b5d26525c4abc388c2a54bd775
parentdbe81cd2ebd1aad08473f8ec260cbbc400cc464a (diff)
downloadst-661c14cbc1cccc11505d66d8fb24099255817f77.tar.gz
st-661c14cbc1cccc11505d66d8fb24099255817f77.zip
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.
-rw-r--r--config.def.h9
1 files 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"} },
};