1
1
mirror of https://github.com/wez/wezterm.git synced 2024-08-16 17:50:28 +03:00

mux: use --prefer-mux when spawning cli proxy for domain attach

It doesn't make sense to try to connect to a possibly stale gui instance
that might have been running on the same host.
This commit is contained in:
Wez Furlong 2022-04-17 18:15:17 -07:00
parent 03d8f10d11
commit 7afc9e4d56

View File

@ -568,9 +568,9 @@ impl Reconnectable {
let proxy_bin = Self::wezterm_bin_path(&ssh_dom.remote_wezterm_path);
let cmd = if initial {
format!("{} cli proxy", proxy_bin)
format!("{} cli --prefer-mux proxy", proxy_bin)
} else {
format!("{} cli --no-auto-start proxy", proxy_bin)
format!("{} cli --prefer-mux --no-auto-start proxy", proxy_bin)
};
ui.output_str(&format!("Running: {}\n", cmd));
log::error!("going to run {}", cmd);