jkaving / intellij-colors-solarized

Solarized Colorscheme for IntelliJ IDEA
3.26k stars 432 forks source link

Inconsistent comment styles #155

Closed metacubed closed 7 years ago

metacubed commented 7 years ago

I see two separate styles of comments in Java. Some comments show up in gray text, others in red(-ish) text. Is this intentional?

I prefer the gray style - it is unobtrusive and doesn't take away attention until I actually want to read the comments.

Also, in most languages, "Comment Styles" don't inherit from "Language Defaults". They override them, but then set them to the same exact values.

aik099 commented 7 years ago

Some time ago all comments were grey. Then Java guy came up and told, that comments should now be red, because they are bad thing. The change was made to base comment style and I've seen effects in Java and PHP. Probably not all language comment styles are inheriting from base red comment and that's why you're seeing inconsistencies.

jkaving commented 7 years ago

There is quite a bit of discussion about this in issue #67 and issue #127.

To summarise it:

metacubed commented 7 years ago

I see, thanks @aik099 and @jkaving.

We "document the why" using line comments, so our code turns into a patchy mess with these settings 😆. I'll fork and make changes for our own use.