File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
121
121
const tsReact = provideCompletionItemsGenerator ( 'typescriptreact' , jsxRegex ) ;
122
122
const js = provideCompletionItemsGenerator ( 'javascript' , jsxRegex )
123
123
const jsReact = provideCompletionItemsGenerator ( 'javascriptreact' , jsxRegex ) ;
124
+ const erb = provideCompletionItemsGenerator ( 'erb' , htmlRegex ) ;
124
125
125
126
context . subscriptions . push ( html ) ;
126
127
context . subscriptions . push ( razor ) ;
@@ -131,6 +132,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
131
132
context . subscriptions . push ( tsReact ) ;
132
133
context . subscriptions . push ( js ) ;
133
134
context . subscriptions . push ( jsReact ) ;
135
+ context . subscriptions . push ( erb ) ;
134
136
135
137
await cache ( ) ;
136
138
}
You can’t perform that action at this time.
0 commit comments