LoginSignup
1
1

More than 5 years have passed since last update.

scss-modeで、カンマ列挙時のインデントを修正する

Posted at

問題点

scss-mode (scss-mode 20150107)では、インデントがおかしい。

&:link, &:hover {
  color: #333;
}

とか書いても、

&:link, &:hover {
          color: #333;
        }

こうなってしまう。

対策

カンマがおかしくなっている原因っぽいので、syntax-tableを弄って、カンマをスペースとして扱わせる。

;; scss-mode
(require 'scss-mode)
(add-hook 'scss-mode-hook
          '(lambda()
             (modify-syntax-entry ?, " " css-mode-syntax-table) ;; この行を追加
))

僕の環境ではいい感じになりました。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1