From bfcebbcd38d7bbf2aa4cce2e446fdb781bc0c4f0 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Thu, 13 Jul 2023 11:46:25 +0400 Subject: Add bindings for macOS tabs This doesn't represnet the movement to add tabs on any other platform, unless winit could add a similar API for them. --- alacritty/src/cli.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'alacritty/src/cli.rs') diff --git a/alacritty/src/cli.rs b/alacritty/src/cli.rs index 7eb281d9..d2982bde 100644 --- a/alacritty/src/cli.rs +++ b/alacritty/src/cli.rs @@ -297,6 +297,11 @@ pub struct WindowOptions { #[clap(flatten)] /// Window options which could be passed via IPC. pub window_identity: WindowIdentity, + + #[clap(skip)] + #[cfg(target_os = "macos")] + /// The window tabbing identifier to use when building a window. + pub window_tabbing_id: Option, } /// Parameters to the `config` IPC subcommand. -- cgit