Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Source:

.foo { line-height: 150px; font-size: 24px; clear: both;

vim magic here, probably something visual selection based

Result:

.foo { clear: both; font-size: 24px; line-height: 150px; }

What do you suggest for the vim magic part?

share|improve this question
2  
Good stuff everyone, this is why I love SO. Side note: stackoverflow.com/questions/3050797/… seems to be related for multi-line CSS. – lkraav May 21 '12 at 19:37

3 Answers

up vote 3 down vote accepted
:s/\([{;]\)\s*/\1\r/g | '[+1,']sort | '[,']join

Split the line on { or ; to get each rule into a separate line, :sort them (omitting the first line containing the CSS definition), then join them back together.

share|improve this answer
Better than mine on every count. – romainl May 21 '12 at 15:34
1  
You can make this a tiny bit shorter by using s/[{;]/&\r for your substitute. The whitespace gets stripped eventually anyway. – Randy Morris May 21 '12 at 16:19

Very quick answer:

:s/[{;] /\0\r
vi{
:!sort
va{
J
share|improve this answer
1  
This is how I learned that 'J' can operate on a selection. Neat! – Jim Davis May 21 '12 at 15:37

Another one-liner:

s/{\s*\zs.\{-}\ze\s*}/\=join(sort(split(submatch(0), '\s*;\s*')), '; ').';'

This time we use sub-replace-\=, and list manipulation functions (sort(), split(), and join())

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.