Closed MoritzKn closed 7 years ago
This PR will change the CSS autocomplete provider to add no semicolons after a CSS property if one is already present.
In this code
body { display: i; }
Pressing ctrl-shift-space after display: i and choosing inline-block previously added another semicolon and therefore resulted in something like this:
display: i
inline-block
body { display: inline-block;; }
None
Improves UX
Unknown
Awesome! Looks like you have a lint error in the spec file, but that's it.
Done. :) The lint error is fixed and the testes should pass CI too.
Thanks!
Description of the Change
This PR will change the CSS autocomplete provider to add no semicolons after a CSS property if one is already present.
Example:
In this code
Pressing ctrl-shift-space after
display: i
and choosinginline-block
previously added another semicolon and therefore resulted in something like this:Alternate Designs
None
Benefits
Improves UX
Possible Drawbacks
Unknown
Applicable Issues
None