Skip to content

Instantly share code, notes, and snippets.

@brunetton
Last active August 29, 2015 14:09
Show Gist options
  • Save brunetton/a55c6e8735eeee68067b to your computer and use it in GitHub Desktop.
Save brunetton/a55c6e8735eeee68067b to your computer and use it in GitHub Desktop.
Atom editor - emphasis trailing whitespaces
/* Red trailing whitespaces (https://gist.github.com/brunetton/a55c6e8735eeee68067b) */
atom-text-editor::shadow .lines .line {
.trailing-whitespace {
color: #ff2a2a;
background: #342022;
}
// Disable highlight for lines with a cursor on them
&.cursor-line .trailing-whitespace {
color: inherit;
background: inherit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment