mager19
11/18/2018 - 3:34 PM

Snippets Sublime

Snippets Sublime

<snippet>
	<content><![CDATA[
@include media-breakpoint-down(${1:md}){
	$2
}
]]></content>
	<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
	<tabTrigger>ind</tabTrigger>
	<!-- Optional: Set a scope to limit where the snippet will trigger -->
	<!-- <scope>source.python</scope> -->
</snippet>
<snippet>
	<content><![CDATA[

//--------------------------------------------------------------
// ${1:Comment}
//--------------------------------------------------------------
]]></content>
	<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
	<tabTrigger>com</tabTrigger>
	<!-- Optional: Set a scope to limit where the snippet will trigger -->
	<scope>source.scss</scope> 
</snippet>
<snippet>
	<content><![CDATA[
<div class="container">
	<div class="row">
		$1
	</div>
</div>
]]></content>
	<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
	<tabTrigger>container</tabTrigger> 
	<!-- Optional: Set a scope to limit where the snippet will trigger -->
	<!-- <scope>source.python</scope> -->
</snippet>