mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
highlights(haskell): use @function.call
This commit is contained in:
parent
69d0e942a0
commit
600ac0f358
1 changed files with 4 additions and 4 deletions
|
|
@ -116,9 +116,9 @@
|
|||
|
||||
(exp_infix (variable) @operator) ; consider infix functions as operators
|
||||
|
||||
(exp_infix (exp_name) @function (#set! "priority" 101))
|
||||
(exp_apply . (exp_name (variable) @function))
|
||||
(exp_apply . (exp_name (qualified_variable (variable) @function)))
|
||||
(exp_infix (exp_name) @function.call (#set! "priority" 101))
|
||||
(exp_apply . (exp_name (variable) @function.call))
|
||||
(exp_apply . (exp_name (qualified_variable (variable) @function.call)))
|
||||
|
||||
|
||||
;; ----------------------------------------------------------------------------
|
||||
|
|
@ -136,7 +136,7 @@
|
|||
;; ----------------------------------------------------------------------------
|
||||
;; Quasi-quotes
|
||||
|
||||
(quoter) @function
|
||||
(quoter) @function.call
|
||||
; Highlighting of quasiquote_body is handled by injections.scm
|
||||
|
||||
;; ----------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue