If I choose Show Invisibles
in Atom settings, then all invisible characters become visible:
I would like to hide EOLs, because they pollute the view.
Is this achievable?
Displaying Invisible Characters in Atom To display spaces, tabs and linebreaks in Atom, you'll need to go to “Settings” -> “Editor” and then scroll down until you find the “Show Invisibles” option.
The "Remove Trailing Whitespace" option is on by default. This means that every time you save any file opened in Atom, it will strip all trailing whitespace from the file. If you want to disable this, go to the whitespace package in your settings panel and uncheck that option.
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:
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With