File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed
Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ Missing CSS support for HTML documents.
2323- php
2424- twig
2525- md
26+ - javascript
2627- javascriptreact
2728
2829## Remote Style Sheets
Original file line number Diff line number Diff line change 5757 " onLanguage:php" ,
5858 " onLanguage:twig" ,
5959 " onLanguage:md" ,
60+ " onLanguage:javascript" ,
6061 " onLanguage:javascriptreact"
6162 ],
6263 "main" : " ./out/src/extension" ,
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ export function activate(context: vsc.ExtensionContext) {
185185 'php' ,
186186 'twig' ,
187187 'md' ,
188+ 'javascript' ,
188189 'javascriptreact' ,
189190 'erb'
190191 ] , classServer ) ) ;
@@ -201,6 +202,7 @@ export function activate(context: vsc.ExtensionContext) {
201202 context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'php' , { wordPattern : wp } ) ) ;
202203 context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'twig' , { wordPattern : wp } ) ) ;
203204 context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'md' , { wordPattern : wp } ) ) ;
205+ context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'javascript' , { wordPattern : wp } ) ) ;
204206 context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'javascriptreact' , { wordPattern : wp } ) ) ;
205207 context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'erb' , { wordPattern : wp } ) ) ;
206208
You can’t perform that action at this time.
0 commit comments