[Github-comments] [geany/geany] vala: dot-namespaced declarators not highlighted (#1707)
Matthew Brush
notifications at xxxxx
Mon Dec 4 12:24:51 UTC 2017
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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.geany.org/pipermail/github-comments/attachments/20171204/492ac6e2/attachment.html>
More information about the Github-comments
mailing list