diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2025-01-04 09:34:44 +0300 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2025-01-04 12:16:42 +0300 |
commit | e79f4b22d809d12b5f09543872443d0fa818fee2 (patch) | |
tree | ce41efeedf0fdef4e224582f2c383775f6024a39 /alacritty/src/cli.rs | |
parent | 8cb359ad024736bba5456999a67f2a426529dcc7 (diff) | |
download | r-alacritty-e79f4b22d809d12b5f09543872443d0fa818fee2.tar.gz r-alacritty-e79f4b22d809d12b5f09543872443d0fa818fee2.tar.bz2 r-alacritty-e79f4b22d809d12b5f09543872443d0fa818fee2.zip |
Pass activation token in alacritty msg create-window
Fixes #8337.
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 bb0a24f4..5010ffc8 100644 --- a/alacritty/src/cli.rs +++ b/alacritty/src/cli.rs @@ -300,6 +300,11 @@ pub struct WindowOptions { /// The window tabbing identifier to use when building a window. pub window_tabbing_id: Option<String>, + #[clap(skip)] + #[cfg(not(any(target_os = "macos", windows)))] + /// `ActivationToken` that we pass to winit. + pub activation_token: Option<String>, + /// Override configuration file options [example: 'cursor.style="Beam"']. #[clap(short = 'o', long, num_args = 1..)] option: Vec<String>, |