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
In ilpars.fs, usage of empty directives such as # 3 "..\..\absil\ilpars.fsy" messes the colorization:
# 3 "..\..\absil\ilpars.fsy"
Are those directives equivalent to #line?
#line
It is worth enhancing the colorization code for it to complete on this file.
The text was updated successfully, but these errors were encountered:
attempt to adjust printing of #line directives.
7fb41bb
The way it was done breaks syntax coloring in VS: # 123 "file.name" // broken vs #line 123 "file.name" // fixed see dotnet/fsharp#6400
add --skip-line-directives optional flag to fslex and fsyacc.
--skip-line-directives
e9554f7
This is to work around colourization issue in VS in fsharp solution (dotnet/fsharp#6400)
This is actually the same problem from issue #7000 . Closing as it's resolved.
Sorry, something went wrong.
Finally!
No branches or pull requests
In ilpars.fs, usage of empty directives such as
# 3 "..\..\absil\ilpars.fsy"
messes the colorization:Are those directives equivalent to
#line
?It is worth enhancing the colorization code for it to complete on this file.
The text was updated successfully, but these errors were encountered: