如何让IntelliJ插入“ for”循环代码段?

时间:2019-09-26 19:30:35

标签: intellij-idea dart

如何在IntelliJ中获取标准飞镖编程构造的代码片段。

例如,如果我在VSCode中键入for,则可以按tab键,而VSCode可以通过为我提供默认实现来节省时间...例如:

for (var i = 0; i < count; i++) {
}

社区版,安装了dart和flutter插件

1 个答案:

答案 0 :(得分:3)

在IntelliJ中,它称为Live templates。 您可以在Preferences> Editor> Live Templates中找到它。

这里是创建fori模板的示例,该模板创建您的for循环。

live template example