Reputation: 179
Why are some parts of the commented section highlighted? I haven't seen such editor behaviour in others code. It really distracts me. Can I dim it?
Upvotes: 1
Views: 65
Reputation: 1903
Yes, you can.
The quickest way is to edit .atom/styles.less
atom-text-editor::shadow {
.php {
.comment {
.keyword {
color: inherit;
}
}
}
}
More info here
Upvotes: 1