Skip to content

Instantly share code, notes, and snippets.

@robertlyall
Created July 3, 2014 12:39
Show Gist options
  • Save robertlyall/135184b74ee5e099ec5f to your computer and use it in GitHub Desktop.
Save robertlyall/135184b74ee5e099ec5f to your computer and use it in GitHub Desktop.
Order CSS declarations macro for Sublime Text 2
// 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