mutian / Sublime-CSS-Format

CSS Formatting for Sublime Text
http://mutian.github.io/Sublime-CSS-Format/
MIT License
98 stars 27 forks source link

Blank line after each style block #36

Closed ylynfatt closed 9 years ago

ylynfatt commented 9 years ago

Would it be possible to have a blank line between each block of CSS? Perhaps it could be incorporated into the expanded-bs or have a new setting for this. E.g.

body {
    background: #fff;
    font: 12px/2em Arial, Helvetica, sans-serif;
}

a {
    color: rgba(65, 131, 196, 0.8);
}

ol,
ul,
li {
    margin: 0;
    padding: 0;
}

Note the blank line after the closing }.

mutian commented 9 years ago

Thank you for your advise, I have incorporated it to expanded-bs command

ylynfatt commented 9 years ago

Thanks! :)