Intellij 通过插件将标准属性添加到 html 标签

Intellij add standard attributes to html tag via plugin

在 IntelliJ 中,

当我键入 <in 时,它会自动向我建议 <input> -字段。如果我按 tab/enter,我会得到建议的内容。
我来自 atom 前端的东西,如果你在那里按回车键, 您将获得具有基本属性的 input 字段,如下所示:

<input type="" name="" value="">

intellij 是否有插件/设置来做同样的事情?
我已经在使用 live template/edit,这似乎没有用。

不要输入左尖括号,只需输入in,点击Ctrl+Space,然后选择input Emmet live template from完成清单。默认情况下,它将扩展为 <input type="text">,但您可以在 设置中更改 input 实时模板 |编辑| Live Templates, Zen HTML 向其添加更多预定义属性,例如:

<input type="$VAR0$" name="$NAME$" value="$VALUE$">