From e4a348e401963e45cd5ffc5a95a0ce0043b6689f Mon Sep 17 00:00:00 2001 From: Valerie Date: Sat, 10 Jun 2023 16:16:28 -0400 Subject: [PATCH] list: fixed link character --- src/command.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/command.rs b/src/command.rs index d2be708..a5b6026 100644 --- a/src/command.rs +++ b/src/command.rs @@ -118,7 +118,6 @@ pub fn attach(pargs: &mut Arguments) { .select_window() .target_window(target) .output().ok(); - return; } let tmux = TmuxCommand::new(); @@ -192,7 +191,7 @@ pub fn list() { println!( " {group} ({bold}{blue}{id}{reset}) {bold}{green}{attach_sym}{reset}", // values - attach_sym = if attached { "" } else {""}, + attach_sym = if attached { "󰌹" } else {""}, // formatting bold = style::Bold, blue = color::Fg(color::Blue),