Run shell commands asynchronously (#6373)
This commit is contained in:
parent
9eb11214b1
commit
28632c6cee
1 changed files with 18 additions and 18 deletions
|
@ -2060,18 +2060,14 @@ fn run_shell_command(
|
|||
return Ok(());
|
||||
}
|
||||
|
||||
let shell = &cx.editor.config().shell;
|
||||
let (output, success) = shell_impl(shell, &args.join(" "), None)?;
|
||||
if success {
|
||||
cx.editor.set_status("Command succeeded");
|
||||
} else {
|
||||
cx.editor.set_error("Command failed");
|
||||
}
|
||||
let shell = cx.editor.config().shell.clone();
|
||||
let args = args.join(" ");
|
||||
|
||||
if !output.is_empty() {
|
||||
let callback = async move {
|
||||
let call: job::Callback = Callback::EditorCompositor(Box::new(
|
||||
move |editor: &mut Editor, compositor: &mut Compositor| {
|
||||
let callback = async move {
|
||||
let (output, success) = shell_impl_async(&shell, &args, None).await?;
|
||||
let call: job::Callback = Callback::EditorCompositor(Box::new(
|
||||
move |editor: &mut Editor, compositor: &mut Compositor| {
|
||||
if !output.is_empty() {
|
||||
let contents = ui::Markdown::new(
|
||||
format!("```sh\n{}\n```", output),
|
||||
editor.syn_loader.clone(),
|
||||
|
@ -2080,13 +2076,17 @@ fn run_shell_command(
|
|||
helix_core::Position::new(editor.cursor().0.unwrap_or_default().row, 2),
|
||||
));
|
||||
compositor.replace_or_push("shell", popup);
|
||||
},
|
||||
));
|
||||
Ok(call)
|
||||
};
|
||||
|
||||
cx.jobs.callback(callback);
|
||||
}
|
||||
}
|
||||
if success {
|
||||
editor.set_status("Command succeeded");
|
||||
} else {
|
||||
editor.set_error("Command failed");
|
||||
}
|
||||
},
|
||||
));
|
||||
Ok(call)
|
||||
};
|
||||
cx.jobs.callback(callback);
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue