You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.
The following signalhandling breaks the plugin because of the underscore. onClicked: bridge.button_clicked(index+1)
This line works: onClicked: bridge.buttonclicked(index+1)
The text was updated successfully, but these errors were encountered:
tsheinen
added a commit
to tsheinen/intellij-qml
that referenced
this issue
Jun 13, 2020
i changed the lexer match regex for identifiers from [a-zA-Z0-9\.]+ to [$\p{L}\p{Nl}_][0-9\p{L}\p{Nl}\p{Mn}\p{Mc}\p{Nd}_$.]* to more closely match the QML/JavaScript identifier rules.
The following signalhandling breaks the plugin because of the underscore.
onClicked: bridge.button_clicked(index+1)
This line works:
onClicked: bridge.buttonclicked(index+1)
The text was updated successfully, but these errors were encountered: