I have a regex puzzle for you all!
A week or so ago, I decided to change the formatting of my Sass file from this:
a {
color: red;
text-decoration: none;
&:hover: {
color: blue;
text-decoration: underline;
}
}
div { ... }
To this:
a {
color: red;
text-decoration: none;
&:hover: {
color: blue;
text-decoration: underline; } }
div { ... }
The second syntax seems nice -- it saves you lines and improves readability -- but it is actually a disaster for writing code. Imagine if I wanted to add another line after a:hover's text-decoration: I'd have to bring those two parentheses with me.
Anyway, I've been trying to find the perfect regex to change the formatting back but to no avail.
My thinking:
- Match and capture 2 spaces since all closing brackets are indented at least one level:
(\s{2}) - Match and capture all additional spaces:
(\s*) - Match and capture all other characters (my CSS code):
(.*) - Match space + closing bracket:
}
Replace that with two lines:
\1\2\3\n\2}
Doesn't exactly work quite yet. Appreciate any ideas.
{ }characters -- It's more like Python in that respect, and closer to what your new style resembles – Cameron Aug 5 '11 at 18:23