1、输入等号。
<snippet>
<content><![CDATA[
= ${1};${2}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>e</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
2、输入等号和双引号
<snippet>
<content><![CDATA[
= "${1}";
${2}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>es</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.python</scope> -->
</snippet>
3、我们知道在html文件中的<script>中写js代码,h5中的标签都必须以双引号括起来,所以建立了这些代码块以减少工作量。
3.1<br>标签
<snippet>
<content><![CDATA[
"<br>"
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>br</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
</snippet>
-- 实时更新中。。。。。