Everywhere I see people use Emmet abbreviations in VS Code the behavior of the code editor is the same. If someone puts the following code,
a:link*3
The result is the following
<a href="http://"></a>
<a href="http://"></a>
<a href="http://"></a>
Yet when I try it within my own copy of VS Code it seems to distribute them without a return on the same line.
<a href="http://"></a><a href="http://"></a><a href="http://"></a>
Is there any way to modify this behavior within the setting? I'm not sure if it matters but I'm on version 1.53.0-exploration on an Apple M1 MBA.