We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Here is a little example, where function name at the last line is not highlighted (its face is default instead of haskell-definition-face):
default
haskell-definition-face
isEmpty :: [Int] -> Bool isEmpty [] = True isEmpty _ = False
Best regards, Vladimir.
The text was updated successfully, but these errors were encountered:
@gracjan This is due to this commit ff84682
Another issue that commit causes is that the function name gets font-locked too soon:
is_empty$
When your cursor is where the $ is, then the is_ is font-locked, but the empty is not.
is_
empty
This also affects a function ending in an underscore. For example, mapM_ doesn't get font-locked anymore:
mapM_
mapM_ :: Monad m => (a -> m b) -> [a] -> m () mapM_ f= foldr ((>>) . f) (return ())
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Here is a little example, where function name at the last line is not highlighted (its face is
default
instead ofhaskell-definition-face
):Best regards,
Vladimir.
The text was updated successfully, but these errors were encountered: