tree-sitter-haskell icon indicating copy to clipboard operation
tree-sitter-haskell copied to clipboard

"finally" is highlighted like a language keyword

Open MaxiLambda opened this issue 11 months ago • 1 comments

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: image

MaxiLambda avatar Mar 08 '24 15:03 MaxiLambda