Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions data/fixtures/recorded/modifiers/interior/changeInsideAir.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
languageId: javascript
command:
version: 7
spokenForm: change inside air
action:
name: clearAndSetSelection
target:
type: primitive
mark: {type: decoratedSymbol, symbolColor: default, character: a}
modifiers:
- {type: interiorOnly}
usePrePhraseSnapshot: false
initialState:
documentContents: "true ? 'aaa' : 'bbb'"
selections:
- anchor: {line: 0, character: 0}
active: {line: 0, character: 0}
marks:
default.a:
start: {line: 0, character: 8}
end: {line: 0, character: 11}
finalState:
documentContents: "true ? '' : 'bbb'"
selections:
- anchor: {line: 0, character: 8}
active: {line: 0, character: 8}
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export class InteriorScopeHandler extends BaseScopeHandler {
return SortedScopeHandler.createFromScopeHandlers(
this.scopeHandlerFactory,
this.languageId,
[languageScopeHandler, pairScopeHandler],
[pairScopeHandler, languageScopeHandler],
);
}

Expand Down
Loading