for loop autocomplete shortcut On webstorm, in javascript
Hi All,
I'm using webstorm and write in javascript.
I want to know please if there is a way to define in "webstorm" that when I start to write "for" it will give me the option to autocomplete it to "regular for loop" like that one:
for (var i = 0; i < Things.length; i++) {
Things[i]
};
for example: In Sublime, when I start write "for" its give me several options and one of them is foor loop like I need.
It will help me a lot!
thanks!
Please sign in to leave a comment.
Hi there,
https://confluence.jetbrains.com/display/PhpStorm/Live+Templates+%28Snippets%29+in+PhpStorm
I watched the link you gave me and succeeded in defining the keayboard shortcut as siggested.
thanks!