Skip to content

Instantly share code, notes, and snippets.

@Dv92
Last active November 12, 2018 10:36
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Dv92/bc276511995aa541674b to your computer and use it in GitHub Desktop.
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
atom-text-editor::shadow {
.editor-contents--private {
.invisible-character {
visibility: hidden;
}
&.has-selection {
.invisible-character {
visibility: visible;
}
}
}
}
@cloud-walker
Copy link

Not perfect but a nice solution, maybe better than the original sublime version?

@alexrussell
Copy link

You know what? I think I like it!

@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