blank cd --interactive

This commit is contained in:
Nguyen Duc Toan 2023-12-15 02:35:15 +07:00
parent ec6f9ef165
commit ad0b0e0ae6

View file

@ -72,7 +72,7 @@ impl Tab {
let opt = opt.into() as Opt; let opt = opt.into() as Opt;
tokio::spawn(async move { tokio::spawn(async move {
let rx = Input::_show(InputCfg::cd().with_value(opt.target.to_string_lossy())); let rx = Input::_show(InputCfg::cd().with_value(""));
let rx = Debounce::new(UnboundedReceiverStream::new(rx), Duration::from_millis(50)); let rx = Debounce::new(UnboundedReceiverStream::new(rx), Duration::from_millis(50));
pin!(rx); pin!(rx);