码迷,mamicode.com
首页 > 其他好文 > 详细

Sublime 快捷键制作

时间:2014-08-10 01:50:59      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:软件   pre   sublime快捷键制作   sublime软件   


流程:

打开Sublime软件---首选项----浏览程序包-----找见"php.sublime-snippet"---然后修改内容为自己所需要的.

bubuko.com,布布扣

bubuko.com,布布扣

bubuko.com,布布扣

<snippet>
    <content><![CDATA[
	这里面加自己所要设置的快捷键
	]]></content>
    <tabTrigger>pre</tabTrigger>
    <scope>text.html - source.php</scope>
    <description>pre</description>
</snippet>


在 <content><![CDATA[这里面加自己所要设置的快捷键 ]]></content>

   <tabTrigger>pre</tabTrigger>
    <scope>text.html - source.php</scope>
    <description>pre</description>

是一些描述性资源.


${1:\}表示最后光标停留的位置.


写好后的全部代码:

<snippet>
    <content><![CDATA[
	echo "<pre>";
	print_r(${1:\$arr});
	echo "</pre>";
	]]></content>
    <tabTrigger>pre</tabTrigger>
    <scope>text.html - source.php</scope>
    <description>pre</description>
</snippet>


bubuko.com,布布扣




Sublime 快捷键制作,布布扣,bubuko.com

Sublime 快捷键制作

标签:软件   pre   sublime快捷键制作   sublime软件   

原文地址:http://blog.csdn.net/junzaivip/article/details/38461841

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!