流程:
打开Sublime软件---首选项----浏览程序包-----找见"php.sublime-snippet"---然后修改内容为自己所需要的.
<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>
时间: 2024-10-14 22:24:50