标签:style blog io color ar sp 文件 div on
Sublime Text支持自定义代码段,方法很简单,但是很有用,一个关键词,按一下tab,一大段代码就出来了。
1、菜单 Tools -> New Snippet...
2、这时会有一个模板文件,修改就可以了。
<snippet> <content><![CDATA[ Hello, ${1:this} is a ${2:snippet}. ]]></content> <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> <!-- <tabTrigger>hello</tabTrigger> --> <!-- Optional: Set a scope to limit where the snippet will trigger --> <!-- <scope>source.python</scope> --> </snippet>
<content><![CDATA[ 与 ]]></content>之间的代码就是要定义的代码块。
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>${1}</title> </head> <body> <h1>${1}</h1> </body> </html>
我们可以将上面的代码段放在块内。
3、上面的代码有${1},当你插入代码段的时候,光标会同时定位到${1}处,同时可以有${2}等,tab键切换到下一个。
也可以这样写${1:this},光标处默认是"this"字符串
4、tabTrigger内是触发代码块的关键词,比如我们可以写上html5。
5、scope内饰触发代码块的文件类型,那我们写上source.html,通常注释掉即可,想在那种触发就触发。
完整的大概就是这样:
<snippet> <content><![CDATA[ <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>${1}</title> </head> <body> <h1>${1}</h1> </body> </html> ]]></content> <!-- Optional: Set a tabTrigger to define how to trigger the snippet --> <tabTrigger>html5</tabTrigger> <!-- Optional: Set a scope to limit where the snippet will trigger --> <!-- <scope>source.html</scope> --> </snippet>
标签:style blog io color ar sp 文件 div on
原文地址:http://www.cnblogs.com/zjzhome/p/4057646.html