You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is one of those bugs with huge impact, not sure why no one has reported it yet.
Basically, if I have this very simple structure in a .scss file, Prefixr doesn't work:
div {
columns:3;
column-gap:0;
p { color:#000; }
}
If I remove the p { color:#000; } rule then Prefixr works fine.
What I do for this to happen is either one of two things: either place my mouse anywhere between columns:3; column-gap:0; or select all those properties, and then press ctrl+alt+x
However if I select the entire declaration from the selector div to the closing bracket } it does work.
The problem is that selecting the entire declaration can be quite cumbersome, but mostly because if you're working with an .scss file you're going to have nested rules (and very likely quite complex in structure), so selecting the entire declaration just won't work either.
The ideal behaviors would be:
Place your mouse on the property you want "Prefixr-ed" o_O, press ctrl+alt+x and that's it.
Select the properties you want Prefixer-ed, press ctrl+alt+x and that's it.
Thanks.
The text was updated successfully, but these errors were encountered:
This is one of those bugs with huge impact, not sure why no one has reported it yet.
Basically, if I have this very simple structure in a .scss file, Prefixr doesn't work:
If I remove the
p { color:#000; }
rule then Prefixr works fine.What I do for this to happen is either one of two things: either place my mouse anywhere between
columns:3; column-gap:0;
or select all those properties, and then pressctrl+alt+x
However if I select the entire declaration from the selector
div
to the closing bracket}
it does work.The problem is that selecting the entire declaration can be quite cumbersome, but mostly because if you're working with an
.scss
file you're going to have nested rules (and very likely quite complex in structure), so selecting the entire declaration just won't work either.The ideal behaviors would be:
ctrl+alt+x
and that's it.ctrl+alt+x
and that's it.Thanks.
The text was updated successfully, but these errors were encountered: