mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Fix find commands for buffers with non-LF line-endings (#8111)
This commit is contained in:
parent
a38ec6d6ca
commit
bb3e6998e6
2 changed files with 101 additions and 7 deletions
|
@ -513,3 +513,42 @@ async fn select_mode_tree_sitter_prev_function_goes_backwards_to_object() -> any
|
|||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn find_char_line_ending() -> anyhow::Result<()> {
|
||||
test((
|
||||
helpers::platform_line(indoc! {
|
||||
"\
|
||||
one
|
||||
#[|t]#wo
|
||||
three"
|
||||
}),
|
||||
"T<ret>gll2f<ret>",
|
||||
helpers::platform_line(indoc! {
|
||||
"\
|
||||
one
|
||||
two#[
|
||||
|]#three"
|
||||
}),
|
||||
))
|
||||
.await?;
|
||||
|
||||
test((
|
||||
helpers::platform_line(indoc! {
|
||||
"\
|
||||
#[|o]#ne
|
||||
two
|
||||
three"
|
||||
}),
|
||||
"f<ret>2t<ret>ghT<ret>F<ret>",
|
||||
helpers::platform_line(indoc! {
|
||||
"\
|
||||
one#[|
|
||||
t]#wo
|
||||
three"
|
||||
}),
|
||||
))
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue