Example bad:
#main {
padding:0;
margin: 10px auto;
}
Example good:
#main {padding:0;margin:10px auto;}
I have a ton of CSS rules that are taking up too many lines. And I cannot figure out the :%s/ commands to use.
|
5
|
Example bad:
Example good:
I have a ton of CSS rules that are taking up too many lines. And I cannot figure out the
|
|||
|
|
|
Here's a one-liner:
The The inverse (converting the one-line version to multi-line) can also be done as a one liner:
|
||||||||
|
|
|
I won't answer the question directly, but instead I suggest you to reconsider your needs. I think that your "bad" example is in fact the better one. It is more readable, easier to reason about and modify. Good indentation is very important not only when it comes to programming languages, but also in CSS and HTML. You mention that CSS rules are "taking up too many lines". If you are worried about file size you should consider using CSS/JS minifier like YUI Compressor instead of making the code less readable. |
||
|
|
|
|
If you want to change the file, go for rampion's solution. If you don't want (or can't) change the file, you can play with a custom folding as it permits to choose what and how to display the folded text. For instance:
I leave the sorting of the fields as exercise. Hint: get all the lines between v:foldstart+1 and v:voldend in a List, sort the list, build the string, and that's all. |
|||
|
|
|
|
Go to the first line of the file, and use the command |
||
|
|
|
|
If you are at the beginning or end of the rule,
|
||||||||||||
|
|
|
Try something like this:
:%s/{\n/{/g
:%s/;\n/;/g
:%s/{\s+/{/g
:%s/;\s+/;/g
This removes the newlines after opening braces and semicolons ('{' and ';') and then removes the extra whitespace between the concatenated lines. |
|||
|
|