Little by little I turn from Sublime Text to Webstorm , trying to figure it out ...

Tell me how you can quickly deploy in it constructions like switch , if and others like in the Sublime - Java​Script Completions plugin Sublime - Java​Script Completions . For example, we write switch + enter as a result:

 switch (expression) { case label_1: // statements_1 break; default: // statements_def break; } 

or using another jQuery plugin, we write ready as a result:

 $(document).ready(function() { }); 

Maybe there is a plugin?

  • You can write live templates with templates and keywords as you like. For example, a loop is created by typing itar + TAB . You can see everything ready there - Vasily Barbashev
  • But there are no ready-made options, so as not to resort to manual input of all structures? - maksymdavydchuk
  • IDE is configured as they say под себя . You can configure it once, then export all settings and store anywhere. And in subsequent times, only insert your package of settings, and you will have everything as always. What kind of things are there, some are not. We'll have to do it yourself :) - Vasily Barbashev

0