From 28a7fc44f9911196823ffff840b9e4ed118aea17 Mon Sep 17 00:00:00 2001 From: Valerie Date: Mon, 10 Jun 2024 12:02:57 -0400 Subject: [PATCH] switched session enforce to new tmux detection helper --- src/util.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/util.rs b/src/util.rs index fd6e953..c3ca71f 100644 --- a/src/util.rs +++ b/src/util.rs @@ -35,10 +35,7 @@ pub fn prevent_nest() { /// enforce a command is being used in-session pub fn session_enforce(cmd: &'static str) { - let tmux = var("TMUX").unwrap_or("".to_string()); - if tmux.is_empty() { - error::not_in_session(cmd); - } + if !env::tmux() { error::not_in_session(cmd); } } /// check whether a target session exists