mirror of
https://github.com/denisidoro/navi
synced 2025-02-16 20:48:28 +00:00
Merge pull request #298 from DenSA-Inc/tty-fix
fixed issue of terminal programs like fzf not recognizing stdin as terminal (#267)
This commit is contained in:
commit
a0636b1261
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…
Add table
Reference in a new issue