nex3 / sass-mode

Emacs mode for Sass

Home Page:http://sass-lang.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Weird parenthess indentation

PythonNut opened this issue · comments

scss-mode indents parentheses like this:

a {
  background: linear-gradient(to bottom,
                              red,
                              blue
                             );
}

Which is very strange.

a {
  background: linear-gradient(to bottom,
    red,
    blue
  );
}

Is more inline with general SCSS style (and coding styles that I see in the wild).

I think you meant to file this report against scss-mode, not sass-mode: the code in this repo doesn't support the scss syntax. :-)

-Steve

I'm such a dope. Thanks. I'll do that.