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+
15### 1.9.0 (Ago 27, 2017)
26* Added support for Handlebars.
37
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments