mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 11:33:10 +00:00
fixed issue of terminal programs like fzf not recognizing stdin as terminal (#267)
This commit is contained in:
parent
790e24ea49
commit
c12c2abc69
1 changed files with 2 additions and 1 deletions
|
@ -187,7 +187,8 @@ pub fn main(variant: Variant, config: Config, contains_key: bool) -> Result<(),
|
|||
Command::new("bash")
|
||||
.arg("-c")
|
||||
.arg(&interpolated_snippet[..])
|
||||
.spawn()?;
|
||||
.spawn()?
|
||||
.wait()?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in a new issue