mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
feat(command): select_all_children
This commit is contained in:
parent
87c4161732
commit
fa67c5c474
4 changed files with 170 additions and 6 deletions
|
@ -601,3 +601,128 @@ async fn select_all_siblings() -> anyhow::Result<()> {
|
|||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn select_all_children() -> anyhow::Result<()> {
|
||||
let tests = vec![
|
||||
// basic tests
|
||||
(
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let foo = bar#[(a, b, c)|]#;
|
||||
"##}),
|
||||
"<A-I>",
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let foo = bar(#[a|]#, #(b|)#, #(c|)#);
|
||||
"##}),
|
||||
),
|
||||
(
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let a = #[[
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
]|]#;
|
||||
"##}),
|
||||
"<A-I>",
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let a = [
|
||||
#[1|]#,
|
||||
#(2|)#,
|
||||
#(3|)#,
|
||||
#(4|)#,
|
||||
#(5|)#,
|
||||
];
|
||||
"##}),
|
||||
),
|
||||
// direction is preserved
|
||||
(
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let a = #[|[
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
]]#;
|
||||
"##}),
|
||||
"<A-I>",
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let a = [
|
||||
#[|1]#,
|
||||
#(|2)#,
|
||||
#(|3)#,
|
||||
#(|4)#,
|
||||
#(|5)#,
|
||||
];
|
||||
"##}),
|
||||
),
|
||||
// can't pick any more children - selection stays the same
|
||||
(
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let a = [
|
||||
#[1|]#,
|
||||
#(2|)#,
|
||||
#(3|)#,
|
||||
#(4|)#,
|
||||
#(5|)#,
|
||||
];
|
||||
"##}),
|
||||
"<A-I>",
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let a = [
|
||||
#[1|]#,
|
||||
#(2|)#,
|
||||
#(3|)#,
|
||||
#(4|)#,
|
||||
#(5|)#,
|
||||
];
|
||||
"##}),
|
||||
),
|
||||
// each cursor does the sibling select independently
|
||||
(
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let a = #[|[
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
]]#;
|
||||
|
||||
let b = #([
|
||||
"one",
|
||||
"two",
|
||||
"three",
|
||||
"four",
|
||||
"five",
|
||||
]|)#;
|
||||
"##}),
|
||||
"<A-I>",
|
||||
helpers::platform_line(indoc! {r##"
|
||||
let a = [
|
||||
#[|1]#,
|
||||
#(|2)#,
|
||||
#(|3)#,
|
||||
#(|4)#,
|
||||
#(|5)#,
|
||||
];
|
||||
|
||||
let b = [
|
||||
#("one"|)#,
|
||||
#("two"|)#,
|
||||
#("three"|)#,
|
||||
#("four"|)#,
|
||||
#("five"|)#,
|
||||
];
|
||||
"##}),
|
||||
),
|
||||
];
|
||||
|
||||
for test in tests {
|
||||
test_with_config(AppBuilder::new().with_file("foo.rs", None), test).await?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue