mjnoach
mjnoach

Reputation: 179

Comment parts highlighted (Atom)

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?

enter image description here

Upvotes: 1

Views: 65

Answers (1)

Dmytro Biletskyi
Dmytro Biletskyi

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

Related Questions