Skip to content

Instantly share code, notes, and snippets.

@mitomex
Created February 3, 2013 10:53
Show Gist options
  • Save mitomex/4701266 to your computer and use it in GitHub Desktop.
Save mitomex/4701266 to your computer and use it in GitHub Desktop.
Sublime Text 2 - How to create snippets

Sublime Text 2 のスニペット作成

参照: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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment