From 21f7b72298ffdd8a94f4fd228b1b4d4c0058a659 Mon Sep 17 00:00:00 2001 From: Valerie Date: Mon, 10 Jun 2024 12:01:15 -0400 Subject: [PATCH] removed incompatible disable_echo from session exist check --- src/util.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/util.rs b/src/util.rs index 2042764..d37dd74 100644 --- a/src/util.rs +++ b/src/util.rs @@ -44,7 +44,6 @@ pub fn session_exists>(target: S) -> bool { let has_session = commands::HasSession::new() .target_session(target.into()); Tmux::new().add_command(has_session) - .disable_echo() .status() .unwrap() .success()