Closed sro5h closed 5 years ago
The highlight group Float has the same color as regular text aswell, resulting in integral numbers being highlighted but not floating numbers.
Thank you for the feedback.
I use vim, e.g. editing a c++ file containing:
class SomeClass final {
public:
~SomeClass() = default;
};
Here the keyword default
is not highlighted
Or for the number issue:
int a = 3;
<- 3 is highlighted
float b = 3.4516f
<- 3.4516 has the normal text color
Made some changes. Here a couple of screenshots using Gaia Dark/Light. This is Vim running in the console.
Is this closer to the desired result? I shall push the changes later on today.
Yes :) that's perfect, thank you very much
I just updated this repo and the one specific to Vim. Thanks again for your feedback!
By the by, I realised that I have not touched this project in about a year. There are all sorts of things I learned from my more recent Tempus Themes project. I will incorporate all the improvements as soon as I can.
Sounds good :) i'll have a look at your tempus themes project
E.g. the keywords
case
anddefault
in c++ don't get highlighted.