Last active
November 14, 2018 17:41
-
-
Save rodrigograca31/2f2327851ea52d75603588fa81c2c365 to your computer and use it in GitHub Desktop.
apm list - Atom Editor
This file contains hidden or 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
This file contains hidden or 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
'body': | |
'ctrl-tab': 'pane:show-next-item' | |
'ctrl-tab ^ctrl': 'unset!' | |
'ctrl-shift-tab': 'pane:show-previous-item' | |
'ctrl-shift-tab ^ctrl': 'unset!' | |
'atom-pane atom-text-editor:not([mini])': | |
'ctrl-shift-c': 'editor:toggle-line-comments' |
This file contains hidden or 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
/* | |
* Your Stylesheet | |
* | |
* This stylesheet is loaded when Atom starts up and is reloaded automatically | |
* when it is changed. | |
* | |
* If you are unfamiliar with LESS, you can read more about it here: | |
* http://www.lesscss.org | |
*/ | |
// Added by Rodrigo in 01/06/2016 | |
// https://discuss.atom.io/t/how-to-change-find-and-replace-highlight-color/14750/11 | |
atom-text-editor .highlight { | |
&.find-result .region, | |
&.current-result .region, | |
&.current-result ~ .highlight.selection .region { | |
z-index: -1; | |
} | |
&.find-result .region { | |
border: 2px solid yellow; | |
} | |
&.current-result .region, | |
&.current-result ~ .highlight.selection .region { | |
border: 2px solid red; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated for my new machine