标签:
1.一套皮肤
https://github.com/equinusocio/material-theme
2.新建快捷代码
<snippet>
<content><![CDATA[
public function ${1:默认值}(){
${2}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>met</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.php</scope>
</snippet>
保存的后缀名一定是.sublime-snippet 就可以使用met+tab快速建立函数了。
3.两个重要的快捷键
command + p快速定位文件 comand+r 在当前类中快速定位到一个方法中。
command +k +b 隐藏导航栏
command+alt+n 新建文件
标签:
原文地址:http://www.cnblogs.com/webclz/p/5104222.html