From 93f33bc0d65222f8ecdd3c470c8281b35c17c43d Mon Sep 17 00:00:00 2001 From: Peter Guy Date: Sun, 28 Dec 2025 14:45:15 -0800 Subject: [PATCH] clarify config documentation around previously focused windows/tabs/splits --- 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 f4ec21684..eef23cccb 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -1851,12 +1851,12 @@ keybind: Keybinds = .{}, @"window-inherit-working-directory": bool = true, /// If true, new tabs will inherit the working directory of the -/// previously focused window. If no window was previously focused, the default +/// previously focused tab. If no tab was previously focused, the default /// working directory will be used (the `working-directory` option). @"tab-inherit-working-directory": bool = true, /// If true, new split panes will inherit the working directory of the -/// previously focused window. If no window was previously focused, the default +/// previously focused split. If no split was previously focused, the default /// working directory will be used (the `working-directory` option). @"split-inherit-working-directory": bool = true,