From 0d6023f059fcacaf9cd976f017e9189f3f2c7c9e Mon Sep 17 00:00:00 2001 From: Anton Kastritskii Date: Fri, 5 Jul 2024 23:46:27 +0100 Subject: [PATCH 1/3] docs: warn about `window-decoration` disables tabs functionality --- src/config/Config.zig | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/config/Config.zig b/src/config/Config.zig index 1d6b08aba..116dddb73 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -664,8 +664,12 @@ keybind: Keybinds = .{}, /// configuration `font-size` will be used. @"window-inherit-font-size": bool = true, -/// If false, windows won't have native decorations, i.e. titlebar and -/// borders. +/// Valid values: +/// +/// * `true` +/// * `false` - windows won't have native decorations, i.e. titlebar and +/// borders. Tabs and tab overview will be disabled. + @"window-decoration": bool = true, /// The font that will be used for the application's window and tab titles. From 3f85ad68925bfca4fd444d39841de516facdb935 Mon Sep 17 00:00:00 2001 From: Anton Kastritskii Date: Sat, 6 Jul 2024 13:42:24 +0100 Subject: [PATCH 2/3] docs: specify that window-decoration disables tabs on macos only --- 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 116dddb73..c56dd3cb5 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -668,7 +668,7 @@ keybind: Keybinds = .{}, /// /// * `true` /// * `false` - windows won't have native decorations, i.e. titlebar and -/// borders. Tabs and tab overview will be disabled. +/// borders. On MacOS this also disabled tabs and tab overview. @"window-decoration": bool = true, From d97910a4e89151efd169503996162e4a9ada0183 Mon Sep 17 00:00:00 2001 From: Anton Kastritskii Date: Tue, 9 Jul 2024 10:51:51 +0100 Subject: [PATCH 3/3] docs: fix typo --- 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 c56dd3cb5..422bf4035 100644 --- a/src/config/Config.zig +++ b/src/config/Config.zig @@ -668,7 +668,7 @@ keybind: Keybinds = .{}, /// /// * `true` /// * `false` - windows won't have native decorations, i.e. titlebar and -/// borders. On MacOS this also disabled tabs and tab overview. +/// borders. On MacOS this also disables tabs and tab overview. @"window-decoration": bool = true,