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
Using the extension I found a bug in the syntax highlight. It looks like it is broken after a ( character, see the screenshot:
Here is the plain code to copy and paste:
%option yylineno %option nounput %option noinput %option nodefault %{ #include "minako.h" %} %% {whitespace}+ { /* nothing */ } "," { return ','; } ";" { return ';'; } "(" { return '('; } ")" { return ')'; } "{" { return '{'; } "}" { return '}'; } <<EOF>> { return EOF; } %%
Unfortunately I was not able to fix the problem.
The text was updated successfully, but these errors were encountered:
Here a broken syntax highlight after a commented ". It's this line in scummvm: https://github.com/scummvm/scummvm/blob/master/engines/director/lingo/lingo-gr.y#L210
Sorry, something went wrong.
I am facing the same issue. Syntax highlighting broken at '('.
Hi @Koopakiller @AbhayVAshokan @rvanlaar Thank you for posting this issue, let me check if we can get a fix in the next releases 👍
No branches or pull requests
Using the extension I found a bug in the syntax highlight. It looks like it is broken after a ( character, see the screenshot:
Here is the plain code to copy and paste:
Unfortunately I was not able to fix the problem.
The text was updated successfully, but these errors were encountered: