File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change
1
+ ### 1.10.0 (Ago 27, 2017)
2
+ * Added support for EJS.
3
+
4
+
1
5
### 1.9.0 (Ago 27, 2017)
2
6
* Added support for Handlebars.
3
7
Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
123
123
const jsReact = provideCompletionItemsGenerator ( 'javascriptreact' , jsxRegex ) ;
124
124
const erb = provideCompletionItemsGenerator ( 'erb' , htmlRegex ) ;
125
125
const hbs = provideCompletionItemsGenerator ( 'handlebars' , htmlRegex ) ;
126
+ const ejs = provideCompletionItemsGenerator ( 'ejs' , htmlRegex ) ;
126
127
127
128
context . subscriptions . push ( html ) ;
128
129
context . subscriptions . push ( razor ) ;
@@ -135,6 +136,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
135
136
context . subscriptions . push ( jsReact ) ;
136
137
context . subscriptions . push ( erb ) ;
137
138
context . subscriptions . push ( hbs ) ;
139
+ context . subscriptions . push ( ejs ) ;
138
140
139
141
await cache ( ) ;
140
142
}
You can’t perform that action at this time.
0 commit comments