LoginSignup
2
0

More than 5 years have passed since last update.

Sublime Text3でEmmetのベンダープレフィックスが自動挿入されるのを無効にする

Posted at

「Sublime text」 → 「Preferences」 → 「Package Settings」 → 「Emmet」 → 「Setteings-User」で以下を貼り付ければOK

Emmet.sublime-settings
{
    "preferences": {
        "scss.autoInsertVendorPrefixes": false,
        "css.autoInsertVendorPrefixes": false
    },
}

他の記事では以下のようにすると書かれていたが、自分の場合はそれだとショートコードがおかしくなってしまった。

Emmet.sublime-settings
{
    "preferences": {
        "scss.autoInsertVendorPrefixes": false,
        "autoInsertCssPrefixedEnabled": false
    },
}
2
0
1

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
2
0