From e00233bebfe006fe8edd9cb1a7567e68314d2111 Mon Sep 17 00:00:00 2001 From: Matt Mirus Date: Sat, 28 Dec 2024 15:33:59 -0500 Subject: [PATCH 1/2] docs: correct default value of `gtk-single-instance` `desktop` is the default value of `gtk-single-instance`; `detect` is not a valid value. --- src/config/Config.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 36b710658..60b1ead38 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -1191,7 +1191,7 @@ keybind: Keybinds = .{}, /// If true, when there are multiple split panes, the mouse selects the pane /// that is focused. This only applies to the currently focused window; i.e. -/// mousing over a split in an unfocused window will not focus that split +/// mousing over a split in an unfocused window will now focus that split /// and bring the window to front. /// /// Default is false. @@ -1812,7 +1812,7 @@ keybind: Keybinds = .{}, /// /// If `false`, each new ghostty process will launch a separate application. /// -/// The default value is `detect` which will default to `true` if Ghostty +/// The default value is `desktop` which will default to `true` if Ghostty /// detects that it was launched from the `.desktop` file such as an app /// launcher (like Gnome Shell) or by D-Bus activation. If Ghostty is launched /// from the command line, it will default to `false`. From a8261ec9f637b59407df2426e9387377de63f509 Mon Sep 17 00:00:00 2001 From: Matt Mirus Date: Sat, 28 Dec 2024 15:40:25 -0500 Subject: [PATCH 2/2] chore: undo unintentional change I think this must have snuck in due to my fork falling behind the upstream. --- 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 60b1ead38..5236e77d9 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -1191,7 +1191,7 @@ keybind: Keybinds = .{}, /// If true, when there are multiple split panes, the mouse selects the pane /// that is focused. This only applies to the currently focused window; i.e. -/// mousing over a split in an unfocused window will now focus that split +/// mousing over a split in an unfocused window will not focus that split /// and bring the window to front. /// /// Default is false.