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 @@ -122,6 +122,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
122122 const js = provideCompletionItemsGenerator ( 'javascript' , jsxRegex )
123123 const jsReact = provideCompletionItemsGenerator ( 'javascriptreact' , jsxRegex ) ;
124124 const erb = provideCompletionItemsGenerator ( 'erb' , htmlRegex ) ;
125+ const hbs = provideCompletionItemsGenerator ( 'handlebars' , htmlRegex ) ;
125126
126127 context . subscriptions . push ( html ) ;
127128 context . subscriptions . push ( razor ) ;
@@ -133,6 +134,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
133134 context . subscriptions . push ( js ) ;
134135 context . subscriptions . push ( jsReact ) ;
135136 context . subscriptions . push ( erb ) ;
137+ context . subscriptions . push ( hbs ) ;
136138
137139 await cache ( ) ;
138140}
You can’t perform that action at this time.
0 commit comments