i'm just trying to make my sass a little more readable. I have some mixins with a lot of arguments and I would usually like to be able to white space them a little more. This is a very small example:
+color ("bg-" "txt-", "background-color" "color", $all_colors )
I would like to make into
+color (
"bg-" "txt-",
"background-color" "color",
$all_colors )
or somethine like that. any ideas?