我为自己的atom设置了模板语法的snippet(snippets.cson),例如:
'.text.html.basic':
'tp3_foreach':
'prefix': 'fore'
'body': """
<foreach name=\"${1:test1}\" item=\"vo\" key=\"k\" >
$2
</foreach>
"""
在 html文件 中输入 fore
即可得到 body 中的自动补全。
但是在emmet插件开启的时候,snippet无法被触发(原因是emmet被优先触发了)。
于是我只好关闭了emmet。
虽然autocomplete已经很强大,但是emmet的功能还是用的很习惯,如果哪位有了解决方案,期待分享一下,谢谢大家。