mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
fix(commands): change pipe
-like output trimming (#11183)
This commit is contained in:
parent
850c9f691e
commit
535351067c
@ -5745,14 +5745,20 @@ fn shell(cx: &mut compositor::Context, cmd: &str, behavior: &ShellBehavior) {
|
||||
let output = if let Some(output) = shell_output.as_ref() {
|
||||
output.clone()
|
||||
} else {
|
||||
let fragment = range.slice(text);
|
||||
match shell_impl(shell, cmd, pipe.then(|| fragment.into())) {
|
||||
Ok(result) => {
|
||||
let result = Tendril::from(result.trim_end());
|
||||
if !pipe {
|
||||
shell_output = Some(result.clone());
|
||||
let input = range.slice(text);
|
||||
match shell_impl(shell, cmd, pipe.then(|| input.into())) {
|
||||
Ok(mut output) => {
|
||||
if !input.ends_with("\n") && !output.is_empty() && output.ends_with('\n') {
|
||||
output.pop();
|
||||
if output.ends_with('\r') {
|
||||
output.pop();
|
||||
}
|
||||
}
|
||||
result
|
||||
|
||||
if !pipe {
|
||||
shell_output = Some(output.clone());
|
||||
}
|
||||
output
|
||||
}
|
||||
Err(err) => {
|
||||
cx.editor.set_error(err.to_string());
|
||||
|
Loading…
Reference in New Issue
Block a user