I've been attempting to generate multiple divs with the same class using Shift command in Sublime Text, however, it's not functioning as expected.
My approach looks something like this:
div.3x col-sm-4
The desired output should be:
<div class="col-sm-4"></div>
<div class="col-sm-4"></div>
<div class="col-sm-4"></div>
Is there any way to achieve this?