Last active
August 29, 2015 14:03
-
-
Save andrewdc/ac40b88a4676f9fee1a0 to your computer and use it in GitHub Desktop.
Sublime Select Dashed Property for CSS/SASS (Open .css or .scss THEN Preferences -> Settings-More -> Syntax Specific - User)
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
{ | |
"word_separators": "./\\()\"':,.;<>~!@#$%^&*|+=[]{}`~?" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This great article pointed me at this solution:
http://compscientist.com/post/28272180856/word-separators
..but I think the necessary extra escaped characters (e.g. ") were stripped out. Copy and Paste the above for fun on profit!
-adc