Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into neovim-test-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric Halbronn committed May 16, 2024
2 parents da2b00b + dbb5fb8 commit 414882f
Show file tree
Hide file tree
Showing 71 changed files with 598 additions and 341 deletions.
1 change: 1 addition & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"esbenp.prettier-vscode",
"jrieken.vscode-tree-sitter-query",
"wenkokke.talonfmt-vscode",
"usernamehw.commands",
"sumneko.lua",
"JohnnyMorganz.stylua"
]
Expand Down
19 changes: 0 additions & 19 deletions data/fixtures/recorded/languages/cpp/takeComment.yml

This file was deleted.

29 changes: 0 additions & 29 deletions data/fixtures/recorded/languages/cpp/takeIf.yml

This file was deleted.

29 changes: 0 additions & 29 deletions data/fixtures/recorded/languages/cpp/takeIf2.yml

This file was deleted.

24 changes: 0 additions & 24 deletions data/fixtures/recorded/languages/cpp/takeString.yml

This file was deleted.

23 changes: 0 additions & 23 deletions data/fixtures/recorded/languages/latex/changeComment.yml

This file was deleted.

21 changes: 0 additions & 21 deletions data/fixtures/recorded/languages/latex/changeComment2.yml

This file was deleted.

19 changes: 0 additions & 19 deletions data/fixtures/recorded/languages/markdown/clearComment.yml

This file was deleted.

19 changes: 0 additions & 19 deletions data/fixtures/recorded/languages/ruby/changeComment.yml

This file was deleted.

19 changes: 0 additions & 19 deletions data/fixtures/recorded/languages/ruby/changeComment2.yml

This file was deleted.

22 changes: 0 additions & 22 deletions data/fixtures/recorded/languages/ruby/changeComment3.yml

This file was deleted.

19 changes: 0 additions & 19 deletions data/fixtures/recorded/languages/scala/clearIfState.yml

This file was deleted.

24 changes: 0 additions & 24 deletions data/fixtures/recorded/languages/scala/clearIfState2.yml

This file was deleted.

17 changes: 17 additions & 0 deletions data/fixtures/scopes/c/comment.line.scope
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
int a; // the comment
---

[Content] =
[Domain] = 0:7-0:21
>--------------<
0| int a; // the comment

[Removal] = 0:6-0:21
>---------------<
0| int a; // the comment

[Leading delimiter] = 0:6-0:7
>-<
0| int a; // the comment

[Insertion delimiter] = "\n"
19 changes: 19 additions & 0 deletions data/fixtures/scopes/c/ifStatement.scope
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
void func() {
if (true) { }
}
---

[Content] =
[Domain] = 1:4-1:17
>-------------<
1| if (true) { }

[Removal] = 1:0-1:17
>-----------------<
1| if (true) { }

[Leading delimiter] = 1:0-1:4
>----<
1| if (true) { }

[Insertion delimiter] = "\n"
17 changes: 17 additions & 0 deletions data/fixtures/scopes/c/string.singleLine.scope
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
char* a = "hello world";
---

[Content] =
[Domain] = 0:10-0:23
>-------------<
0| char* a = "hello world";

[Removal] = 0:9-0:23
>--------------<
0| char* a = "hello world";

[Leading delimiter] = 0:9-0:10
>-<
0| char* a = "hello world";

[Insertion delimiter] = " "
10 changes: 10 additions & 0 deletions data/fixtures/scopes/clojure/comment.line.scope
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
;; foo
---

[Content] =
[Removal] =
[Domain] = 0:0-0:6
>------<
0| ;; foo

[Insertion delimiter] = "\n"
19 changes: 19 additions & 0 deletions data/fixtures/scopes/cpp/ifStatement.scope
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
void funk() {
if constexpr (true) {}
}
---

[Content] =
[Domain] = 1:4-1:26
>----------------------<
1| if constexpr (true) {}

[Removal] = 1:0-1:26
>--------------------------<
1| if constexpr (true) {}

[Leading delimiter] = 1:0-1:4
>----<
1| if constexpr (true) {}

[Insertion delimiter] = "\n"
10 changes: 10 additions & 0 deletions data/fixtures/scopes/csharp/class.scope
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
public class BankAccount {}
---

[Content] =
[Removal] =
[Domain] = 0:0-0:27
>---------------------------<
0| public class BankAccount {}

[Insertion delimiter] = "\n\n"
Loading

0 comments on commit 414882f

Please sign in to comment.