Remove special handling of line ending characters in selection replacement (#10786)

* Remove special-casing of line ending characters in selection replacement

* Refactor line ending handling and integration test to address code review comments
This commit is contained in:
Chris Pyles 2024-06-10 08:07:43 -07:00 committed by GitHub
parent aa1630a41a
commit 03813bbc2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 18 additions and 12 deletions

View file

@ -722,5 +722,19 @@ fn foo() {
))
.await?;
test((
indoc! {"\
#[a
b
c
d
e|]#
f
"},
"s\\n<ret>r,",
"a#[,|]#b#(,|)#c#(,|)#d#(,|)#e\nf\n",
))
.await?;
Ok(())
}