emacs css-mode indent-buffer fix

Ive been using emacs for some years now, but I always noticed the css mode seemed to format it a little strange.

I found this article, it fixes all the issues in the css mode.

(setq cssm-indent-level 4)
(setq cssm-newline-before-closing-bracket t)
(setq cssm-indent-function #'cssm-c-style-indenter)
(setq cssm-mirror-mode nil)

Now when I auto indent the buffer it looks correctly. I have no idea why this is not the default for the css-mode.

FYI my auto indent key is F2.

(defun indent-buffer ()
    (interactive)
    (save-excursion (indent-region (point-min) (point-max) nil))
)
(global-set-key [f2] 'indent-buffer)

5 Responses to “emacs css-mode indent-buffer fix”

  1. Knusper Says:

    The CSS Mode has been improved in the new emacs 22.2 (came out on March 26th 2008). Now its really good!

  2. bread Says:

    That’s great helpful information. This is what I was looking for. Thank you for sharing and the “this” link was broken, BTW.

    Thanks,

  3. Chris Miller’s Blog » Blog Archive » Fix css-mode indention in emacs Says:

    [...] to stokebloke.com for saving my sanity. Leave a [...]

  4. kevin Says:

    Thanks!!

  5. Rob Searles » Emacs CSS-Mode Fix (adding to the chain!) Says:

    [...] and posted a fix, which he himself found on another blog post by Chris Miller, which Chris in turn found on StokeBloke.com which had been found originally on a now dead [...]

Leave a Reply