We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i found the number of { can't be identified correctly in below situation.
{
#!ifdef WITH_AUTH if (!ims_www_authenticate("$td")) { #!else if (($var(alg) == "MD5") && (!ims_www_authenticate("$td"))) { #!endif
whatsoever circumstances, There should be only one valid {, but it recognizes it as two, causing an error in bracket matching.
The text was updated successfully, but these errors were encountered:
I don't think this can be covered without a language server, which is not an easy task. The (not the nicest) variants for now would be:
#!ifdef WITH_AUTH if( ... ) #!else if( ... ) #!end {
#!ifdef WITH_AUTH } #!else } #!end
Not having the knowledge nor the time for it, I am going to close this issue soon if nobody else volunteers to develop it.
Sorry, something went wrong.
I have looked at building a language server for this project a couple of times and it makes my head swim. I haven't given up but it may be awhile.
No branches or pull requests
i found the number of
{
can't be identified correctly in below situation.whatsoever circumstances, There should be only one valid
{
, but it recognizes it as two, causing an error in bracket matching.The text was updated successfully, but these errors were encountered: