-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pointer declaration colouring seems weird #82
Comments
Managed to reproduce it (or a similar bug?) with: struct S
{
this(Object o) {}
this(Object* o) {}
}
|
Works for me (although fontification happens at different stages). |
Changing the second constructor in CyberShadow's comment to:
Break the fontification for me. |
This and some other issues should have been auto-closed when #93 was merged, but for whatever reason, they were not. I'm manually closing them now. |
It appears that:
SomeType* v;
gets coloured differently to:
SomeType * v;
and that the former is coloured correctly and the latter is not coloured at all.
The text was updated successfully, but these errors were encountered: