Is it possible to autocomplete elements that contain dots in their name?
E.g., in WebStorm, if I type Grid
[tab] I get <Grid></Grid>
, as expected. However, if I type Grid.Column
[tab], I get <Grid className="Column"></Grid>
.
Is it possible to escape the .
, or, by any other means get Emmet to recognize it as part of the element name instead of a className property?