Created
July 3, 2014 12:39
-
-
Save robertlyall/135184b74ee5e099ec5f to your computer and use it in GitHub Desktop.
Order CSS declarations macro for Sublime Text 2
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
| // Default (OSX).sublime-keymap | |
| [ | |
| { "keys": ["super+shift+."], "command": "run_macro_file", "args": {"file": "Packages/User/order_css.sublime-macro"} } | |
| ] | |
| // Packages/User/order_css.sublime-macro | |
| [ | |
| { | |
| "args": | |
| { | |
| "to": "indentation" | |
| }, | |
| "command": "expand_selection" | |
| }, | |
| { | |
| "args": | |
| { | |
| "case_sensitive": false | |
| }, | |
| "command": "sort_lines" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment