Show only whitespaces in Atom (not EOL)

imkost picture imkost · Sep 14, 2015 · Viewed 9.8k times · Source

If I choose Show Invisibles in Atom settings, then all invisible characters become visible:

enter image description here

I would like to hide EOLs, because they pollute the view.

Is this achievable?

Answer

imkost picture imkost · Sep 14, 2015

There is no ui-option for this, but it is achievable via Atom config:

"*":
  editor:
    invisibles:
      eol: false

Also you can hide tabs and spaces if you want:

"*":
  editor:
    invisibles:
      eol: false
      tab: false
      space: false

UPDATE

Atom has been changed since the original answer, and now it has UI to config invisibles:

Invisibles menu block