参照:http://docs.sublimetext.info/en/latest/extensibility/snippets.html
メニューにある、「 Tools 」から「 New Snippet... 」を選択すると、 Snippet のテンプレートが表示される。
<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>
登録したいコードなどを
<snippet>
<content><![CDATA[
【登録したいコードなどをここに入力】
]]></content>
<content>
の中に入力する。
そして、<tabTrigger>
の中にきっかけとなる文言を入力する。
<tabTrigger>【ここに呼び出す時のきっかけとなる文言を入力】</tabTrigger>
例
<snippet>
<content><![CDATA[
<meta property="og:title" content="${1:title}"/>
<meta property="og:type" content="${2:website}"/>
<meta property="og:url" content="${3:url}"/>
<meta property="og:image" content="${4:.jpg}"/>
<meta property="og:site_name" content="${5:site name}"/>
<meta property="fb:admins" content="${6:USER_ID}"/>
<meta property="og:description" content="${7:description}"/>
]]></content>
<tabTrigger>Facebook meta</tabTrigger>
<discription>Facebook OGP Setting</discription>
</snippet>