haidubogdan / netbeans-php-blade-plugin

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

Plugin Breaks how JS works #15

Closed angeljqv closed 2 years ago

angeljqv commented 2 years ago

Suppose you have

<script>
var myVar={key:[]};
myVar.key.length;
</script>

With this plugin when you double click on length, all the line gets selected image Without this plugin when you double click on length, only length gets selected image

haidubogdan commented 2 years ago

Hi, yes this was done to enable full highlight of blade views paths. As this is mainly a netbeans core library issue, I will either have to use a switch option or create some custom code to replace this core library functionality.

parallels999 commented 2 years ago

Also notice this, it's annoying, I am deleting variable names by mistake because of this

haidubogdan commented 2 years ago

Hi I've found a compromise for javascript properties and blade paths highlight in this release release 19 08 2022

angeljqv commented 2 years ago

It seems to work, thank you very much