mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Reimplement tree motions in terms of syntax::TreeCursor
This uses the new TreeCursor type from the parent commit to reimplement the tree-sitter motions (`A-p/o/i/n`). Other tree-sitter related features like textobjects are not touched with this change and will need a different, unrelated approach to solve.
This commit is contained in:
parent
b1222f0664
commit
68b21578ac
3 changed files with 107 additions and 50 deletions
|
@ -635,3 +635,60 @@ async fn test_surround_delete() -> anyhow::Result<()> {
|
|||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[tokio::test(flavor = "multi_thread")]
|
||||
async fn tree_sitter_motions_work_across_injections() -> anyhow::Result<()> {
|
||||
test_with_config(
|
||||
AppBuilder::new().with_file("foo.html", None),
|
||||
(
|
||||
"<script>let #[|x]# = 1;</script>",
|
||||
"<A-o>",
|
||||
"<script>let #[|x = 1]#;</script>",
|
||||
),
|
||||
)
|
||||
.await?;
|
||||
|
||||
// When the full injected layer is selected, expand_selection jumps to
|
||||
// a more shallow layer.
|
||||
test_with_config(
|
||||
AppBuilder::new().with_file("foo.html", None),
|
||||
(
|
||||
"<script>#[|let x = 1;]#</script>",
|
||||
"<A-o>",
|
||||
"#[|<script>let x = 1;</script>]#",
|
||||
),
|
||||
)
|
||||
.await?;
|
||||
|
||||
test_with_config(
|
||||
AppBuilder::new().with_file("foo.html", None),
|
||||
(
|
||||
"<script>let #[|x = 1]#;</script>",
|
||||
"<A-i>",
|
||||
"<script>let #[|x]# = 1;</script>",
|
||||
),
|
||||
)
|
||||
.await?;
|
||||
|
||||
test_with_config(
|
||||
AppBuilder::new().with_file("foo.html", None),
|
||||
(
|
||||
"<script>let #[|x]# = 1;</script>",
|
||||
"<A-n>",
|
||||
"<script>let x #[|=]# 1;</script>",
|
||||
),
|
||||
)
|
||||
.await?;
|
||||
|
||||
test_with_config(
|
||||
AppBuilder::new().with_file("foo.html", None),
|
||||
(
|
||||
"<script>let #[|x]# = 1;</script>",
|
||||
"<A-p>",
|
||||
"<script>#[|let]# x = 1;</script>",
|
||||
),
|
||||
)
|
||||
.await?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue