A convenient Vala syntax sugar is like this:
```vala
class TheNameSpace.ASubNameSpace.SomeKindOfThing
{
// ...
}
```
It's equivalent to:
```vala
namespace TheNameSpace {
namespace ASubNameSpace {
class SomeKindOfThing {
// ...
}
}
}
```
But this seems to break type name highlighting. Presumably it's a bug in the
ctags/tagmanager parsing.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/1707