Skip to content

Commit 081a298

Browse files
authored
Merge pull request #80 from DanFerro/master
Added support for EJS
2 parents 85feaed + 7d3d5a4 commit 081a298

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.10.0 (Ago 27, 2017)
2+
* Added support for EJS.
3+
14
### 1.9.0 (Ago 27, 2017)
25
* Added support for Handlebars.
36

src/extension.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
123123
const jsReact = provideCompletionItemsGenerator('javascriptreact', jsxRegex);
124124
const erb = provideCompletionItemsGenerator('erb', htmlRegex);
125125
const hbs = provideCompletionItemsGenerator('handlebars', htmlRegex);
126+
const ejs = provideCompletionItemsGenerator('ejs', htmlRegex);
126127

127128
context.subscriptions.push(html);
128129
context.subscriptions.push(razor);
@@ -135,6 +136,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
135136
context.subscriptions.push(jsReact);
136137
context.subscriptions.push(erb);
137138
context.subscriptions.push(hbs);
139+
context.subscriptions.push(ejs);
138140

139141
await cache();
140142
}

0 commit comments

Comments
 (0)