[Ubuntu] Create text snippets to sublime

Go to Tools / New snippet…
In the file that opens you will see:

<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>

Lưu lại với tên filename.sublime-snippet
Bạn chú ý Hello, ${1:this} is a ${2:snippet} chính là đoạn code đầy đủ mà bạn ấn tab.
Instead <!– hello –> equal to hello where hello is the shortcut keyword. sau khi bạn viết hello và ấn tab thì sẽ hiện ra Hello, this is a snippet
Các giá trị trong $ including ${1:this} 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 file 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>