Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatically adding vendor prefixes when "css.autoInsertVendorPrefixes" is "false" #486

Closed
medzhidov opened this issue Feb 12, 2017 · 3 comments

Comments

@medzhidov
Copy link

These prefixes were added when:

{
    "caniuse.enabled": true,
    "css.autoInsertVendorPrefixes": false
}

But they were added only from caniuse data base.

Example.
If i use df, when autoInsertVendorPrefixes is true:

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    display: flex;

And if i use df, when autoInsertVendorPrefixes is false:

    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;

I think it's a bug

@albrin
Copy link

albrin commented Jun 2, 2017

What kind of Code Editors or IDEs do you use?

@medzhidov
Copy link
Author

I use Visual Studio Code

@albrin
Copy link

albrin commented Jun 4, 2017

@dslpp056193, please, try — #499 (comment)
It works for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants