如何使用 PhpStorm 在 smarty 模板中启用 zencoding 支持
如何在 Jetbrains PhpStorm 中的 .tpl smarty 模板中启用 ZenCoding“实时模板”?它可以在 .php 和 .html 文件中完美运行,但不能在 .tpl 文件中运行。
How do you enable the ZenCoding "live templates" in .tpl smarty templates in Jetbrains PhpStorm? It works flawlessly in .php and .html files but not in .tpl files.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在“添加实时模板”对话框中,选择“其他”单选按钮。
In 'Add Live Template' dialog , select 'other' radio button.
我知道这是一个非常古老的问题,但我最近偶然发现它也有同样的问题。我所做的是:
现有的 .tpl 文件)。
需要。
(如果需要包围一个,请使用 $SELECTION$ 变量
选择或 $END$(如果您需要将指针指向特定位置)
有关实时模板的更多信息,请参见此处:实时模板
&关于变量:变量
I know this is a very old question but I just kinda stumbled upon it having the same lately. What I did was:
existing .tpl file).
need.
(use the $SELECTION$ variable if you need to surround a
selection or $END$ if you need the pointer somewhere specific)
more info about Live Templates here: Live Templates
& about variables here: variables