Skip to content

Commit 1b4ff48

Browse files
author
Dan Ferro
committed
Added support for EJS
1 parent 85feaed commit 1b4ff48

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.10.0 (Ago 27, 2017)
2+
* Added support for EJS.
3+
4+
15
### 1.9.0 (Ago 27, 2017)
26
* Added support for Handlebars.
37

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)