From 6e751d2d7e3bd21945b9a7f77701026848aa01af Mon Sep 17 00:00:00 2001 From: Tim Culverhouse Date: Sun, 2 Mar 2025 08:03:09 -0600 Subject: [PATCH] config: default mouse-scroll-multiplier to 3.0 Make Ghostty behave like other terminals by multiplying scrolls by 3.0. This only affects when we are reporting arrow keys (alternate scroll mode) or when we are scrolling the scrollback. --- src/config/Config.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index d2c033cdc..589460a18 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -612,7 +612,7 @@ palette: Palette = .{}, /// A value of "1" (default) scrolls the default amount. A value of "2" scrolls /// double the default amount. A value of "0.5" scrolls half the default amount. /// Et cetera. -@"mouse-scroll-multiplier": f64 = 1.0, +@"mouse-scroll-multiplier": f64 = 3.0, /// The opacity level (opposite of transparency) of the background. A value of /// 1 is fully opaque and a value of 0 is fully transparent. A value less than 0