mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 05:50:04 -04:00
Few more minor fixes to c# highlighting to cover other cases of types being used
This commit is contained in:
parent
e6fe7cdab0
commit
d22e0dd865
1 changed files with 9 additions and 10 deletions
|
|
@ -45,10 +45,8 @@
|
|||
(using_directive
|
||||
(identifier) @type)
|
||||
|
||||
(using_directive
|
||||
(qualified_name
|
||||
(identifier) @type))
|
||||
|
||||
(qualified_name
|
||||
(identifier) @type)
|
||||
(property_declaration
|
||||
name: (identifier) @property)
|
||||
|
||||
|
|
@ -66,13 +64,14 @@
|
|||
(object_creation_expression
|
||||
(identifier) @type)
|
||||
|
||||
(variable_declaration
|
||||
(generic_name
|
||||
(identifier) @type))
|
||||
(object_creation_expression
|
||||
(generic_name
|
||||
(identifier) @type))
|
||||
(generic_name
|
||||
(identifier) @type)
|
||||
|
||||
(base_list
|
||||
(identifier) @type)
|
||||
|
||||
(type_argument_list
|
||||
(identifier) @type)
|
||||
|
||||
(attribute
|
||||
name: (identifier) @attribute)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue