From fd786219d14851d733f6b9608b51349d86761c0e Mon Sep 17 00:00:00 2001 From: Cameron Dart <8763518+SkamDart@users.noreply.github.com> Date: Mon, 10 Jun 2024 13:11:53 -0700 Subject: [PATCH] feat: focus-follows-mouse --- src/config/Config.zig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/config/Config.zig b/src/config/Config.zig index 42e6cd584..0f6e73117 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -421,6 +421,12 @@ command: ?[]const u8 = null, /// This is primarily useful for scripts or debugging. @"wait-after-command": bool = false, +// If true, when there are multiple split panes, the mouse selects the pane +// that is focused. +// +// Default is false. +@"focus-follows-mouse": bool = false, + /// The number of milliseconds of runtime below which we consider a process exit /// to be abnormal. This is used to show an error message when the process exits /// too quickly.