vote up 1 vote down star

So emacs's auto-indentation for CSS is driving me batty. Here is what I like CSS to look like:

#foo ul.bar {
    ....
}

    #foo ul.bar li {
        ....
    }

        #foo ul.bar li a {
            ....
        }

This is what emacs gives me with its auto-indentation:

#foo ul.bar {
    ....
}

#foo ul.bar li {
    ....
}

#foo ul.bar li a {
    ....
}

I like to keep my styles progressively indented if they use the cascade. However, emacs will autoindent everything to the same level.

Anything I can do?

flag

1 Answer

vote up 2 vote down

I don't think any of the CSS modes I've used with Emacs are going to support that style of indentation out of the box -- they don't look at the content of the selectors, just whether or not something is a selector (don't indent) or is a rule inside a selector (indent one step).

If you wanted to change this, you'd need to override the function that does indentation for your CSS mode.

link|flag
Is there a way to do manual indentation then? If I can't use autoindent to indent the way I like, I'd live if I could indent manually. – thedz Aug 6 at 15:49
It looks like -- at least with the css-mode I'm using -- if you manually indent the initial selector line to where you want it, you just hit 'TAB' after that to correctly indent the following rules and the ending '}' -- and then you'll have to manually space out the next selector, etc. (The version of css-mode seems to come with Emacs since sometime in the Emacs 22 timeframe, so it's probably what you're using if you have a recent Emacs and haven't specifically loaded something else.) – genehack Aug 6 at 17:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.