-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support interpolated string args, add assert condition/branch, fix if…
… branch
- Loading branch information
fidgetingbits
committed
Nov 1, 2023
1 parent
c9a7f97
commit df12b92
Showing
8 changed files
with
86 additions
and
168 deletions.
There are no files selected for viewing
39 changes: 0 additions & 39 deletions
39
packages/cursorless-vscode-e2e/src/suite/fixtures/recorded/languages/nix/changeArgBat.yml
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
...ages/cursorless-vscode-e2e/src/suite/fixtures/recorded/languages/nix/changeArgBlueDot.yml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 0 additions & 31 deletions
31
packages/cursorless-vscode-e2e/src/suite/fixtures/recorded/languages/nix/changeBranch2.yml
This file was deleted.
Oops, something went wrong.
41 changes: 0 additions & 41 deletions
41
packages/cursorless-vscode-e2e/src/suite/fixtures/recorded/languages/nix/changeEveryArg.yml
This file was deleted.
Oops, something went wrong.
29 changes: 29 additions & 0 deletions
29
packages/cursorless-vscode-e2e/src/suite/fixtures/recorded/languages/nix/chuckArg.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
languageId: nix | ||
command: | ||
version: 6 | ||
spokenForm: chuck arg | ||
action: | ||
name: remove | ||
target: | ||
type: primitive | ||
modifiers: | ||
- type: containingScope | ||
scopeType: {type: argumentOrParameter} | ||
usePrePhraseSnapshot: true | ||
initialState: | ||
documentContents: | | ||
{ | ||
d = "Interpolated ${value1} string ${value2}"; | ||
} | ||
selections: | ||
- anchor: {line: 1, character: 26} | ||
active: {line: 1, character: 26} | ||
marks: {} | ||
finalState: | ||
documentContents: | | ||
{ | ||
d = "Interpolated string ${value2}"; | ||
} | ||
selections: | ||
- anchor: {line: 1, character: 20} | ||
active: {line: 1, character: 20} |
29 changes: 29 additions & 0 deletions
29
packages/cursorless-vscode-e2e/src/suite/fixtures/recorded/languages/nix/chuckKey.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
languageId: nix | ||
command: | ||
version: 6 | ||
spokenForm: chuck key | ||
action: | ||
name: remove | ||
target: | ||
type: primitive | ||
modifiers: | ||
- type: containingScope | ||
scopeType: {type: collectionKey} | ||
usePrePhraseSnapshot: true | ||
initialState: | ||
documentContents: | | ||
{ | ||
d = "Interpolated ${value1} string ${value2}"; | ||
} | ||
selections: | ||
- anchor: {line: 1, character: 6} | ||
active: {line: 1, character: 6} | ||
marks: {} | ||
finalState: | ||
documentContents: | | ||
{ | ||
"Interpolated ${value1} string ${value2}"; | ||
} | ||
selections: | ||
- anchor: {line: 1, character: 2} | ||
active: {line: 1, character: 2} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters