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>
122
122
const js = provideCompletionItemsGenerator ( 'javascript' , jsxRegex )
123
123
const jsReact = provideCompletionItemsGenerator ( 'javascriptreact' , jsxRegex ) ;
124
124
const erb = provideCompletionItemsGenerator ( 'erb' , htmlRegex ) ;
125
+ const hbs = provideCompletionItemsGenerator ( 'handlebars' , htmlRegex ) ;
125
126
126
127
context . subscriptions . push ( html ) ;
127
128
context . subscriptions . push ( razor ) ;
@@ -133,6 +134,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
133
134
context . subscriptions . push ( js ) ;
134
135
context . subscriptions . push ( jsReact ) ;
135
136
context . subscriptions . push ( erb ) ;
137
+ context . subscriptions . push ( hbs ) ;
136
138
137
139
await cache ( ) ;
138
140
}
You can’t perform that action at this time.
0 commit comments