Reputation: 1669
So, in Sublime I can type foreach
, hit tab, and get this:
<?php foreach ($variable as $key => $value): ?>
<?php endforeach ?>
How can I enable this for PhpStorm? I was convinced that in my Sublime installation, it was handled by Emmet, but after installing it I did not get this functionality in PhpStorm. Is it available somehow?
Upvotes: 1
Views: 285
Reputation: 654
Check "An introduction to Live Templates" out please https://confluence.jetbrains.com/plugins/servlet/mobile#content/view/54339108
Upvotes: 1