mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +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
|
@ -209,13 +209,10 @@ async fn test_multi_selection_shell_commands() -> anyhow::Result<()> {
|
|||
"},
|
||||
"|echo foo<ret>",
|
||||
indoc! {"\
|
||||
#[|foo\n]#
|
||||
|
||||
#(|foo\n)#
|
||||
|
||||
#(|foo\n)#
|
||||
|
||||
"},
|
||||
#[|foo]#
|
||||
#(|foo)#
|
||||
#(|foo)#"
|
||||
},
|
||||
))
|
||||
.await?;
|
||||
|
||||
|
@ -228,12 +225,9 @@ async fn test_multi_selection_shell_commands() -> anyhow::Result<()> {
|
|||
"},
|
||||
"!echo foo<ret>",
|
||||
indoc! {"\
|
||||
#[|foo\n]#
|
||||
lorem
|
||||
#(|foo\n)#
|
||||
ipsum
|
||||
#(|foo\n)#
|
||||
dolor
|
||||
#[|foo]#lorem
|
||||
#(|foo)#ipsum
|
||||
#(|foo)#dolor
|
||||
"},
|
||||
))
|
||||
.await?;
|
||||
|
@ -247,12 +241,9 @@ async fn test_multi_selection_shell_commands() -> anyhow::Result<()> {
|
|||
"},
|
||||
"<A-!>echo foo<ret>",
|
||||
indoc! {"\
|
||||
lorem#[|foo\n]#
|
||||
|
||||
ipsum#(|foo\n)#
|
||||
|
||||
dolor#(|foo\n)#
|
||||
|
||||
lorem#[|foo]#
|
||||
ipsum#(|foo)#
|
||||
dolor#(|foo)#
|
||||
"},
|
||||
))
|
||||
.await?;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue