fix(haskell): highlight exp_name as function in infix operations

This commit is contained in:
kiyan 2022-06-25 11:13:19 +02:00 committed by Christian Clason
parent 6284629a45
commit 74ec4e1d5c

View file

@ -116,6 +116,7 @@
(exp_infix (variable) @operator) ; consider infix functions as operators
(exp_infix (exp_name) @function)
(exp_apply . (exp_name (variable) @function))
(exp_apply . (exp_name (qualified_variable (variable) @function)))