@@ -129,6 +129,8 @@ export default class Blade implements vscode.CompletionItemProvider {
129
129
"@slot(...)" : "@slot(${1})" ,
130
130
"@stack(...)" : "@stack(${1})" ,
131
131
"@push(...)" : [ "@push(${1})" , indent ( "${2}" ) , "@endpush" ] ,
132
+ "@pushIf(...)" : [ "@pushIf(${1})" , indent ( "${2}" ) , "@endPushIf" ] ,
133
+ "@pushOnce(...)" : [ "@pushOnce(${1})" , indent ( "${2}" ) , "@endPushOnce" ] ,
132
134
"@prepend(...)" : [ "@prepend(${1})" , indent ( "${2}" ) , "@endprepend" ] ,
133
135
"@php" : [ "@php" , indent ( "${1}" ) , "@endphp" ] ,
134
136
"@component(...)" : [ "@component(${1})" , "${2}" , "@endcomponent" ] ,
@@ -139,6 +141,7 @@ export default class Blade implements vscode.CompletionItemProvider {
139
141
] ,
140
142
"@section(...)" : "@section(${1})" ,
141
143
"@props(...)" : "@props(${1})" ,
144
+ "@use(...)" : "@use(${1})" ,
142
145
"@show" : "@show" ,
143
146
"@stop" : "@stop" ,
144
147
"@parent" : "@parent" ,
@@ -165,6 +168,8 @@ export default class Blade implements vscode.CompletionItemProvider {
165
168
"@endenv" : "@endenv" ,
166
169
"@endonce" : "@endonce" ,
167
170
"@endpush" : "@endpush" ,
171
+ "@endpushIf" : "@endPushIf" ,
172
+ "@endpushOnce" : "@endPushOnce" ,
168
173
"@endprepend" : "@endprepend" ,
169
174
"@endphp" : "@endphp" ,
170
175
"@endcomponent" : "@endcomponent" ,
0 commit comments