Skip to content

Instantly share code, notes, and snippets.

@SebastianCarroll
Last active July 24, 2017 08:34
Show Gist options
  • Save SebastianCarroll/95e162fbb30278ab4d26ebe2d2285396 to your computer and use it in GitHub Desktop.
Save SebastianCarroll/95e162fbb30278ab4d26ebe2d2285396 to your computer and use it in GitHub Desktop.
Highlightine in Atom (change to make it easier to see)
The highlighting on Atom is pretty bad and hard to see when using find replace. Change it by 'Atom -> Styleshee' and adding:
atom-text-editor::shadow .highlight {
&.find-result .region,
&.current-result .region,
&.current-result ~ .highlight.selection .region {
z-index: -1;
}
&.find-result .region {
background: yellow;
}
&.current-result .region,
&.current-result ~ .highlight.selection .region {
background: orange;
}
}
@SebastianCarroll
Copy link
Author

SebastianCarroll commented Jul 24, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment