Unnamed repository; edit this file 'description' to name the repository.
perf(term): avoid buffering URL opener output (#15542)
| -rw-r--r-- | helix-term/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/lib.rs b/helix-term/src/lib.rs index 0ce8da4c..6ddf41f1 100644 --- a/helix-term/src/lib.rs +++ b/helix-term/src/lib.rs @@ -79,7 +79,7 @@ fn open_external_url_callback( async { for cmd in commands { let mut command: tokio::process::Command = cmd.into(); - if command.output().await.is_ok() { + if command.status().await.is_ok() { return Ok(job::Callback::Editor(Box::new(|_| {}))); } } |