Skip to content

Commit 04e14ac

Browse files
authored
Merge pull request zignd#76 from WaqasIbrahim/master
added support for handlebars
2 parents b5160ed + 78af3ff commit 04e14ac

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/extension.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)