nvim-treesitter/queries/cpp
Fabian Viöl 4990db79a8 highlights(cpp): Highlight method with nested qualified_identifier
so that methods like these are correctly highlighted

```cpp

class A {
    class B {
       void foo();
    };
};

void A::B::foo() {
//         ^^^
}
```

This only increases the nesting level by one.
AFAIK abritrary nesting is difficult to do with current queries.

But this nesting is a pretty common case
2022-02-09 21:35:00 +01:00
..
folds.scm folds(cpp): highlight scoped enums 2021-07-14 23:00:14 +02:00
highlights.scm highlights(cpp): Highlight method with nested qualified_identifier 2022-02-09 21:35:00 +01:00
indents.scm indents(cpp): indent at field_initializer_list 2022-02-05 18:54:55 +01:00
injections.scm Revert "Comment: use @combined to create just one tree per buffer (#1252)" 2021-05-07 16:51:57 +02:00
locals.scm locals(cpp): add support for concepts 2022-01-16 22:19:34 +01:00