billymoon / Stylus

Stylus Package for Sublime Text 2 / 3
Other
129 stars 31 forks source link

Option to include semicolons and colons when using Emmet #53

Closed aaronbushnell closed 9 years ago

aaronbushnell commented 9 years ago

Is there a way to enable semicolons and colons when expanding with Emmet. For example, typing m0 and hitting tab to generate: margin: 0; not margin 0

grassator commented 9 years ago

You can create Emmet.sublime-settings file in your User folder in sublime packages.

{
    "preferences": {
        "stylus.propertyEnd": ";",
        "stylus.valueSeparator": ": "
    }
}
aaronbushnell commented 9 years ago

Ah, didn't realize this was an Emmet setting. Thanks for the quick reply!

Leolik commented 7 years ago

how do this, but for WebStorm?