-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
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
Incorrect Highlighting For Multiple Line Type Signatures #1
Comments
Yes, I know what you mean. I believe this is a shortcoming of the Haskell texmate bundle. I will open an issue there, perhaps we can fix this. |
@JustusAdam I see. Thanks for your excellent understanding! |
I took a closer look at the regexes myself and it almost seems to me to be not an issue of the regex itself, but it seems that the matching algorithm is designed to match line-by-line and the regex is written such that it matches the entire signature at once. I'll investigate this further and perhaps change the matchings to match partial signatures, which naturally should then allow multi line type signatures to be matched correctly, hopefully. |
Resolved as of 271fd41 |
@JustusAdam Thanks for your great works! |
Thanks for awesome plugin!
I wrote haskell codes such as:
Then, I noticed missing syntax.
I use GHC 7.10.3. Probably, because building is passed, this is legal syntax.
The text was updated successfully, but these errors were encountered: