MyrionSC2
MyrionSC2

Reputation: 1318

WebStorm shortcut commands

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

Answers (1)

Darek Kay
Darek Kay

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

Related Questions