File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 22 "name" : " vscode-html-css" ,
33 "displayName" : " HTML CSS Support" ,
44 "description" : " CSS support in HTML documents" ,
5- "version" : " 0.0.19 " ,
5+ "version" : " 0.0.20 " ,
66 "publisher" : " ecmel" ,
77 "license" : " MIT" ,
88 "homepage" : " https://github.com/ecmel/vscode-html-css" ,
Original file line number Diff line number Diff line change @@ -215,6 +215,10 @@ export function activate(context: vsc.ExtensionContext) {
215215
216216 context . subscriptions . push ( vsc . languages . registerCompletionItemProvider (
217217 [ 'html' , 'laravel-blade' ] , classServer ) ) ;
218+
219+ context . subscriptions . push ( vsc . languages . setLanguageConfiguration ( 'laravel-blade' , {
220+ wordPattern : / ( - ? \d * \. \d \w * ) | ( [ ^ \` \~ \! \@ \# \% \^ \& \* \( \) \= \+ \[ \{ \] \} \\ \| \; \: \' \. \" \, \< \> \/ \? \s ] + ) / g
221+ } ) ) ;
218222}
219223
220224export function deactivate ( ) {
You can’t perform that action at this time.
0 commit comments