summaryrefslogtreecommitdiffstats
path: root/config.def.h
diff options
context:
space:
mode:
authorMalfurious <m@lfurio.us>2021-10-03 01:42:26 -0400
committerMalfurious <m@lfurio.us>2024-08-12 13:16:51 -0400
commitd22e02652bc086ceaec56c8b5b382240ec105899 (patch)
tree580304fb5583e22ea18e35f07a387aabf3107bcc /config.def.h
parenta093db04b4650e3286f0eff01a4dda04d7c1ff5a (diff)
downloadst-d22e02652bc086ceaec56c8b5b382240ec105899.tar.gz
st-d22e02652bc086ceaec56c8b5b382240ec105899.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.
Diffstat (limited to 'config.def.h')
-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"} },
};