diff --git a/CHANGELOG.md b/CHANGELOG.md index 144e4b3..2c266e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +### 1.10.0 (Ago 27, 2017) +* Added support for EJS. + ### 1.9.0 (Ago 27, 2017) * Added support for Handlebars. diff --git a/src/extension.ts b/src/extension.ts index 2106007..5a1c719 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -123,6 +123,7 @@ export async function activate(context: vscode.ExtensionContext): Promise const jsReact = provideCompletionItemsGenerator('javascriptreact', jsxRegex); const erb = provideCompletionItemsGenerator('erb', htmlRegex); const hbs = provideCompletionItemsGenerator('handlebars', htmlRegex); + const ejs = provideCompletionItemsGenerator('ejs', htmlRegex); context.subscriptions.push(html); context.subscriptions.push(razor); @@ -135,6 +136,7 @@ export async function activate(context: vscode.ExtensionContext): Promise context.subscriptions.push(jsReact); context.subscriptions.push(erb); context.subscriptions.push(hbs); + context.subscriptions.push(ejs); await cache(); }