From 7f5ad2fd1bd09f395a3972862e03f13047274512 Mon Sep 17 00:00:00 2001 From: Valerie Date: Thu, 14 Mar 2024 16:37:00 -0400 Subject: [PATCH] fixed 'new' command setting group name instead of session name --- src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.rs b/src/command.rs index 984f857..dacf4ab 100644 --- a/src/command.rs +++ b/src/command.rs @@ -162,7 +162,7 @@ pub fn new(pargs: &mut Arguments) { // run command new - .group_name(title) + .session_name(title) .attach() .start_directory(target_dir.unwrap_or(current_dir().unwrap().to_string_lossy().to_string())) .output().ok();