是否可以通过这样做:
如果我输入f.name.a.b {{tab press}}
=> WebStorm将生成
function fname(a, b)
{
}
如果我打字,则打字稿
c.Name.a.string {{tab press}}
=>它会产生:
class Name {
a: string;
}
我有可能在WebStorm中实现类似的东西吗?
答案 0 :(得分:1)
我可以在webstorm中使用类似的东西
您可以使用实时模板执行非常相似的操作:https://www.jetbrains.com/webstorm/help/creating-code-constructs-by-live-templates.html
其他各种IDE通常称之为代码段。