mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
refactor(commands): trim end of pipe
-like output (#10952)
This commit is contained in:
parent
a75b1cf51e
commit
fd7b1a3e37
2 changed files with 11 additions and 19 deletions
|
@ -5757,6 +5757,7 @@ fn shell(cx: &mut compositor::Context, cmd: &str, behavior: &ShellBehavior) {
|
|||
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());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue