borela / naomi

Sublime Text enhanced syntax highlighting for JavaScript ES6/ES7/ES2015/ES2016/ES2017+, Babel, FlowType, React JSX, Styled Components, HTML5, SCSS3, PHP 7, phpDoc, PHPUnit, MQL4. Basic: Git config files.
Other
557 stars 20 forks source link

Disabling CSS vendor prefixes #235

Open essovius opened 4 years ago

essovius commented 4 years ago

When i type df it creates,


const Nav = styled.nav`
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
`

I don't need these prefixes, is there any way to disable it?

I know that we can disable it for default Emmet by adding these to settings but this doesn't affect to Naomi

{
    "preferences": {
        "css.autoInsertVendorPrefixes": false
    },
}