File tree 4 files changed +92
-0
lines changed
cursorless-engine/src/languages
cursorless-vscode-e2e/src/suite/fixtures/recorded/languages/typescript
4 files changed +92
-0
lines changed Original file line number Diff line number Diff line change @@ -166,6 +166,7 @@ const nodeMatchers: Partial<
166
166
[
167
167
"pair[key]" ,
168
168
"jsx_attribute.property_identifier!" ,
169
+ "object_type.property_signature[name]!" ,
169
170
"shorthand_property_identifier" ,
170
171
] ,
171
172
[ ":" ] ,
Original file line number Diff line number Diff line change
1
+ languageId : typescript
2
+ command :
3
+ version : 6
4
+ spokenForm : change key
5
+ action :
6
+ name : clearAndSetSelection
7
+ target :
8
+ type : primitive
9
+ modifiers :
10
+ - type : containingScope
11
+ scopeType : {type: collectionKey}
12
+ usePrePhraseSnapshot : true
13
+ initialState :
14
+ documentContents : |-
15
+ interface Hello {
16
+ value: number;
17
+ }
18
+ selections :
19
+ - anchor : {line: 1, character: 17}
20
+ active : {line: 1, character: 17}
21
+ marks : {}
22
+ finalState :
23
+ documentContents : |-
24
+ interface Hello {
25
+ : number;
26
+ }
27
+ selections :
28
+ - anchor : {line: 1, character: 4}
29
+ active : {line: 1, character: 4}
Original file line number Diff line number Diff line change
1
+ languageId : typescript
2
+ command :
3
+ version : 6
4
+ spokenForm : change key
5
+ action :
6
+ name : clearAndSetSelection
7
+ target :
8
+ type : primitive
9
+ modifiers :
10
+ - type : containingScope
11
+ scopeType : {type: collectionKey}
12
+ usePrePhraseSnapshot : true
13
+ initialState :
14
+ documentContents : |-
15
+ type Hello = {
16
+ value: number;
17
+ }
18
+ selections :
19
+ - anchor : {line: 1, character: 17}
20
+ active : {line: 1, character: 17}
21
+ marks : {}
22
+ finalState :
23
+ documentContents : |-
24
+ type Hello = {
25
+ : number;
26
+ }
27
+ selections :
28
+ - anchor : {line: 1, character: 4}
29
+ active : {line: 1, character: 4}
Original file line number Diff line number Diff line change
1
+ languageId : typescript
2
+ command :
3
+ version : 6
4
+ spokenForm : change key
5
+ action :
6
+ name : clearAndSetSelection
7
+ target :
8
+ type : primitive
9
+ modifiers :
10
+ - type : containingScope
11
+ scopeType : {type: collectionKey}
12
+ usePrePhraseSnapshot : true
13
+ initialState :
14
+ documentContents : |-
15
+ function funk(): {
16
+ value: number;
17
+ } {
18
+ return { value: 2 }
19
+ }
20
+ selections :
21
+ - anchor : {line: 1, character: 17}
22
+ active : {line: 1, character: 17}
23
+ marks : {}
24
+ finalState :
25
+ documentContents : |-
26
+ function funk(): {
27
+ : number;
28
+ } {
29
+ return { value: 2 }
30
+ }
31
+ selections :
32
+ - anchor : {line: 1, character: 4}
33
+ active : {line: 1, character: 4}
You can’t perform that action at this time.
0 commit comments