Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main' into nvim-talon
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric Halbronn committed May 21, 2024
2 parents a9ad487 + 2b6475e commit 604bbda
Show file tree
Hide file tree
Showing 173 changed files with 866 additions and 567 deletions.
3 changes: 2 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"jrieken.vscode-tree-sitter-query",
"wenkokke.tree-sitter-talon"
"wenkokke.tree-sitter-talon",
"usernamehw.commands"
]
}
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.

23 changes: 23 additions & 0 deletions data/fixtures/recorded/languages/ruby/changeRound3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
languageId: ruby
command:
version: 7
spokenForm: change round
action:
name: clearAndSetSelection
target:
type: primitive
modifiers:
- type: containingScope
scopeType: {type: surroundingPair, delimiter: parentheses}
usePrePhraseSnapshot: true
initialState:
documentContents: "# (aaa)"
selections:
- anchor: {line: 0, character: 3}
active: {line: 0, character: 3}
marks: {}
finalState:
documentContents: "# "
selections:
- anchor: {line: 0, character: 2}
active: {line: 0, character: 2}
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.

23 changes: 0 additions & 23 deletions data/fixtures/recorded/languages/typescript/changeType.yml

This file was deleted.

23 changes: 0 additions & 23 deletions data/fixtures/recorded/languages/typescript/changeType5.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"
Loading

0 comments on commit 604bbda

Please sign in to comment.