Compare commits

..

No commits in common. "6b7c84b67387d33175ca266e9100e77a460ecb2a" and "4615777cae3baa37bd92ab78e87dd6336b39f5ad" have entirely different histories.

View file

@ -55,7 +55,7 @@ pub fn attach(pargs: &mut Arguments) {
// build dispatch // build dispatch
let mut tmux = Tmux::new().add_command(attach); let mut tmux = Tmux::new().add_command(attach);
if let Some(select_window) = select_window { tmux = tmux.add_command(select_window); } if let Some(select_window) = select_window { tmux = tmux.add_command(select_window); }
tmux.output().ok(); tmux.disable_echo().output().ok();
} }
pub fn detach(pargs: &mut Arguments) { pub fn detach(pargs: &mut Arguments) {
@ -168,6 +168,6 @@ pub fn new(pargs: &mut Arguments) {
Tmux::new() Tmux::new()
.add_command(new) .add_command(new)
.output().ok(); .disable_echo().output().ok();
} }