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?
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?
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:
eol: ''
instead of eol: false
. With the latter value false
started appearing as EOL char. cr: ''
also worked for me by hiding the CR characters. Thanks for this blog post dangtrinh.com/2015/02/show-invisible-characters-in-atom.html for the tweak. –
Dulse © 2022 - 2024 — McMap. All rights reserved.