3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【SublimeText】stylusでコロンありを標準設定にしたい

Last updated at Posted at 2014-11-06

はじめに

Sublime Text3にstylusプラグインを入れています。
(https://github.com/billymoon/Stylus)
色々便利なプラグインですが、
元々のCSS文法を生かして書きたいとき(現在の案件がそうなんです)
自動でプロパティとの間にコロン・セミコロンを無くされるのは困るため、
設定を変えました。
CSSからstylusにスムーズに移行したいですね。

ここで設定します

preferences > Package Settings > Emmet >Settings -User

上記を開いて、以下を記入してください。

{

	"preferences": {
		"stylus.valueSeparator": ": ",
		"stylus.propertyEnd": ";"
	}
}

他にもカスタマイズできるので、見てみてください。
http://docs.emmet.io/customization/preferences/

参考:
https://github.com/sergeche/emmet-sublime/issues/210

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?