mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Join empty lines with only one space in join_selections
(#8989)
* fix: #8977 fixes the issue that lines with only spaces are getting joined as well * reverting some renamings * improve empty line check * adding integration test * reverting code block * fix conditon check for line end * applying suggested style
This commit is contained in:
parent
c3cb1795bf
commit
b81aacc5e1
2 changed files with 56 additions and 10 deletions
|
@ -480,3 +480,49 @@ fn bar() {#(\n|)#\
|
|||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn test_join_selections() -> anyhow::Result<()> {
|
||||
// normal join
|
||||
test((
|
||||
platform_line(indoc! {"\
|
||||
#[a|]#bc
|
||||
def
|
||||
"}),
|
||||
"J",
|
||||
platform_line(indoc! {"\
|
||||
#[a|]#bc def
|
||||
"}),
|
||||
))
|
||||
.await?;
|
||||
|
||||
// join with empty line
|
||||
test((
|
||||
platform_line(indoc! {"\
|
||||
#[a|]#bc
|
||||
|
||||
def
|
||||
"}),
|
||||
"JJ",
|
||||
platform_line(indoc! {"\
|
||||
#[a|]#bc def
|
||||
"}),
|
||||
))
|
||||
.await?;
|
||||
|
||||
// join with additional space in non-empty line
|
||||
test((
|
||||
platform_line(indoc! {"\
|
||||
#[a|]#bc
|
||||
|
||||
def
|
||||
"}),
|
||||
"JJ",
|
||||
platform_line(indoc! {"\
|
||||
#[a|]#bc def
|
||||
"}),
|
||||
))
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue