Sublime Text3 自定义快速生成代码

1.依次打开 Tools > Developer > new Snippet

<snippet>
    <content>
        <![CDATA[
         <!-- 这里写你要快速生成的代码 -->
        ]]>
    </content>

    <tabTrigger>
    <!-- 这里写生成这个代码要输入的指令 例子:cf-->
</tabTrigger>

    <scope>
    
<!--这里写你使用这个指令时的文件格式,多的用逗号隔开(切记要以source.开头) 例子:source.c++ -->
    
</scope>
</snippet>

最后保存成.sublime-snippet格式的文件

参考博客:https://blog.csdn.net/lihchweb/article/details/77883101

上一篇:让sublime text3支持Vue语法高亮显示


下一篇:sublime text3 安装package control 出现问题解决过程记录