Reputation: 1318
What are the shortcut tab commands, such as cw -> Console.Writeline() in VS and sout -> System.out.println() in InteliJ, for WebStorm?
Or where can I find them? Googling phrases such as "WebStorm shortcuts" and "WebStorm shortcut phrases" only give me the ordinary keyboard shortcuts, which is not what I am looking for.
Upvotes: 0
Views: 340
Reputation: 16649
It's called Live Templates.
You can find them under Settings > Editor > Live Templates
.
The template for System.out.print()
is sout
.
Upvotes: 2