branch: externals/csharp-mode
commit 57055a7cf764ef8b92c81dd320edc5d3670bef69
Author: Theodor Thornhill <[email protected]>
Commit: Theodor Thornhill <[email protected]>
Add qualified name to method_declaration
---
csharp-tree-sitter.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/csharp-tree-sitter.el b/csharp-tree-sitter.el
index 83a7ef7..0d93601 100644
--- a/csharp-tree-sitter.el
+++ b/csharp-tree-sitter.el
@@ -118,6 +118,7 @@
(method_declaration (nullable_type) @type (identifier) @function)
(method_declaration (void_keyword) @type (identifier) @function)
(method_declaration (generic_name) (identifier) @function)
+ (method_declaration (qualified_name (identifier) @type) (identifier)
@function)
;; Function
(local_function_statement (identifier) @type (identifier) @function)