Last active
November 12, 2018 10:36
-
-
Save Dv92/bc276511995aa541674b to your computer and use it in GitHub Desktop.
Atom: how to show invisibile characters on selected text like sublime text does
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
atom-text-editor::shadow { | |
.editor-contents--private { | |
.invisible-character { | |
visibility: hidden; | |
} | |
&.has-selection { | |
.invisible-character { | |
visibility: visible; | |
} | |
} | |
} | |
} |
You know what? I think I like it!
It didn't work out for me.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not perfect but a nice solution, maybe better than the original sublime version?