Alphabetizes properties within your CSS/SASS files.
Usage
Defaults to alphabetizing the entire file's properties, but can also isolate to selections. If you want to alphabetize a selection, make sure you select an entire block. e.g.
div {
color: red;
background: blue;
}
Rather than:
color: red;
background: blue;
Configuration
You can adjust the brackets to use this plugin more generically. It defaults to curly braces { / } but could be adjusted to anything you want deemed as an opening / closing.
Key Bindings
shift+alt+a will alphabetize your file / selection
Release Notes
0.4.1
Keep cursor on same line when alphabetizing
0.4.0
Sort @include for SCSS
Ignore three types of comment blocks when sorting CSS