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
The finally function is highlighted like a language keyword.
I would expect "finally" to have the same highlighting as any other function
module Test where import Control.Exception (finally) something :: IO () something = finally (putStrLn "1") (putStrLn "2")
Example picture of highlighting in neovim:
The text was updated successfully, but these errors were encountered:
Neovim does not use the queries from this repo, but from nvim-treesitter.
You should be able to disable special highlighting for these keywords with:
highlight! link @keyword.exception Normal
or some other command (clear, concrete color).
Sorry, something went wrong.
No branches or pull requests
The finally function is highlighted like a language keyword.
I would expect "finally" to have the same highlighting as any other function
Example picture of highlighting in neovim:
The text was updated successfully, but these errors were encountered: