Skip to content

Instantly share code, notes, and snippets.

@Dv92
Last active November 12, 2018 10:36
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Atom: how to show invisibile characters on selected text like sublime text does
atom-text-editor::shadow {
.editor-contents--private {
.invisible-character {
visibility: hidden;
}
&.has-selection {
.invisible-character {
visibility: visible;
}
}
}
}
@Ornataweaver
Copy link

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