Show invisible characters in Atom editor except EOL and CR
In Atom editor to show invisible characters (tab, space) except the EOL and CR:
>> Edit >> Open Your Config
add the following:
"*":
editor:
invisibles:
'cr': ''
'eol': ''
'space': '·'
'tab': '⇥'
showIndentGuide: true
showInvisibles: true
...
Save and enjoy!
>> Edit >> Open Your Config
add the following:
"*":
editor:
invisibles:
'cr': ''
'eol': ''
'space': '·'
'tab': '⇥'
showIndentGuide: true
showInvisibles: true
...
Save and enjoy!
Comments
Post a Comment