Vladimir Didenko

Results 2 comments of Vladimir Didenko

@joeveiga It happens because developer of a tree sitter parser decided to highlight all camel case words started from the capital letters as a type https://github.com/tree-sitter/tree-sitter-typescript/blob/fd08586b72f2ba8776d865b32aca561285c10cfd/queries/highlights.scm#L6

Is it possible to change the current implementation to at least cover cases like this ``` PROJECT_API some_type_t functionname(int param); ``` assuming that token closest to function name is a...