diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2023-07-13 11:46:25 +0400 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2023-09-04 03:01:12 +0400 |
commit | bfcebbcd38d7bbf2aa4cce2e446fdb781bc0c4f0 (patch) | |
tree | aba4a49e65c0f10fe871f1e5ca2a1ad7746a6810 /alacritty/src/cli.rs | |
parent | a189861880aafcce760e3a142bc2d391f2801f64 (diff) | |
download | r-alacritty-bfcebbcd38d7bbf2aa4cce2e446fdb781bc0c4f0.tar.gz r-alacritty-bfcebbcd38d7bbf2aa4cce2e446fdb781bc0c4f0.tar.bz2 r-alacritty-bfcebbcd38d7bbf2aa4cce2e446fdb781bc0c4f0.zip |
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.
Diffstat (limited to 'alacritty/src/cli.rs')
-rw-r--r-- | alacritty/src/cli.rs | 5 |
1 files changed, 5 insertions, 0 deletions
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<String>, } /// Parameters to the `config` IPC subcommand. |