list: fixed link character

This commit is contained in:
Valerie Wolfe 2023-06-10 16:16:28 -04:00
parent e49b46591c
commit e4a348e401

View file

@ -118,7 +118,6 @@ pub fn attach(pargs: &mut Arguments) {
.select_window() .select_window()
.target_window(target) .target_window(target)
.output().ok(); .output().ok();
return;
} }
let tmux = TmuxCommand::new(); let tmux = TmuxCommand::new();
@ -192,7 +191,7 @@ pub fn list() {
println!( println!(
" {group} ({bold}{blue}{id}{reset}) {bold}{green}{attach_sym}{reset}", " {group} ({bold}{blue}{id}{reset}) {bold}{green}{attach_sym}{reset}",
// values // values
attach_sym = if attached { "" } else {""}, attach_sym = if attached { "󰌹" } else {""},
// formatting // formatting
bold = style::Bold, bold = style::Bold,
blue = color::Fg(color::Blue), blue = color::Fg(color::Blue),