haidubogdan / netbeans-php-blade-plugin

Netbeans 18+ module plugin for php blade template files
Apache License 2.0
26 stars 4 forks source link

`@continue` blade directive has no highlight #67

Closed cesarreyes3 closed 1 month ago

cesarreyes3 commented 1 month ago
@foreach($tests as $test)  
  @continue(!$items->count() ? true : false)
@endforeach

image

haidubogdan commented 1 month ago

Hi, Thank you for your observation. A issue linked with directives which can also be without arguments. @break also had this issue.

Should be fixed with the latest prerelease 2.5.0.2 - https://github.com/haidubogdan/netbeans-php-blade-plugin/releases/tag/prenbpr1.0.9

cesarreyes3 commented 1 month ago

Hi, it's working now 🚀, thank you

cesarreyes3 commented 1 month ago

Another question, it is something minimal, if it complicates everything it would be better to ignore it,

On custom directives, if you click/select an opening directive, closing directive gets highlighted image

But if you click/select a closing directive, opening directive does nothing image

In large blocks it's difficult to find the opening directive from closing directive

@modal()
@card()
@card()
@card()
@endcard
@endcard
@endcard            
@endmodal