[Ubuntuの] 崇高にテキストスニペットを作成します。

Vào Tools/ New snippet…
Tại file mở ra bạn sẽ thấy:

<snippet>
	<コンテンツ><![川を渡ってランプを運ぶ問題の後[
こんにちは, ${1:この} is a ${2:snippet}.
]]></コンテンツ>
	<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
	<!-- <tabTrigger>こんにちは</tabTrigger> -->
	<!-- Optional: Set a scope to limit where the snippet will trigger -->
	<!-- <scope>source.python</scope> -->
</snippet>

Lưu lại với tên filename.sublime-snippet
Bạn chú ý こんにちは, ${1:この} is a ${2:snippet} chính là đoạn code đầy đủ mà bạn ấn tab.
Thay <!– こんにちは –> bằng hello với hello là từ khóa tắt. sau khi bạn viết hello và ấn tab thì sẽ hiện ra こんにちは, this is a snippet
Các giá trị trong $ 含めて ${1:この} is a ${2:snippet} là các giá trị khi ấn tab thì sẽ nhảy đến và bạn có thể thay thế chúng bằng giá trị của mình.
VD tạo 1 ファイル while.sublime-snippet. Khi ấn while và tab thì sẽ hiện ra:

<snippet>
	<content><![CDATA[
while (${1:/* condition */})
{
	${2:/*code*/}
}
]]></content>
	<tabTrigger>while</tabTrigger> 
	<!-- Optional: Set a scope to limit where the snippet will trigger -->
	<!-- <scope>source.python</scope> -->
</snippet>