File tree Expand file tree Collapse file tree 1 file changed +1
-28
lines changed
extensions/typescript-basics Expand file tree Collapse file tree 1 file changed +1
-28
lines changed Original file line number Diff line number Diff line change 215
215
"action" : {
216
216
"indent" : " outdent"
217
217
}
218
- },
219
- // Indent when pressing enter from inside ()
220
- {
221
- "beforeText" : " ^.*\\ ([^\\ )]*$" ,
222
- "afterText" : " ^[^\\ (]*\\ ).*$" ,
223
- "action" : {
224
- "indent" : " indentOutdent" ,
225
- "appendText" : " \t " ,
226
- }
227
- },
228
- // Indent when pressing enter from inside {}
229
- {
230
- "beforeText" : " ^.*\\ {[^\\ }]*$" ,
231
- "afterText" : " ^[^\\ {]*\\ }.*$" ,
232
- "action" : {
233
- "indent" : " indentOutdent" ,
234
- "appendText" : " \t " ,
235
- }
236
- },
237
- // Indent when pressing enter from inside []
238
- {
239
- "beforeText" : " ^.*\\ [[^\\ ]]*$" ,
240
- "afterText" : " ^[^\\ []*\\ ].*$" ,
241
- "action" : {
242
- "indent" : " indentOutdent" ,
243
- "appendText" : " \t " ,
244
- }
245
- },
218
+ }
246
219
]
247
220
}
You can’t perform that action at this time.
0 commit comments