<?xml version="1.0" encoding="UTF-8"?>
<snippet><entry><trigger id="rhtml">base</trigger><description>tm - Base</description><template>&lt;base href=&quot;${1}&quot;${target}&gt;</template></entry><entry><trigger id="rhtml">body</trigger><description>tm - Body</description><template>&lt;body id=&quot;${TM_FILENAME}&quot;${onload}&gt;
	${cursor}&lt;/body&gt;</template></entry><entry><trigger id="rhtml">div</trigger><description>tm - Div</description><template>&lt;div${name}&gt;
	${paste}
&lt;/div&gt;</template></entry><entry><trigger id="rhtml">divc</trigger><description>div with a class</description><template>&lt;div class=&quot;${alpha}&quot;&gt;
	${paste}
&lt;/div&gt; &lt;!-- end of div --&gt;
${cursor}</template></entry><entry><trigger id="rhtml">divid</trigger><description>div tag with an id</description><template>&lt;div id=&quot;${alpha}&quot;&gt;
	${paste}
&lt;/div&gt;
${cursor}</template></entry><entry><trigger id="rhtml">doc</trigger><description>doctype declaration</description><template>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot;
	&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;
	xml:lang=&quot;en&quot; lang=&quot;en&quot;&gt;

${cursor}
	</template></entry><entry><trigger id="rhtml">end</trigger><description>Inserts end inside erb tags</description><template>&lt;% end %&gt;</template></entry><entry><trigger id="rhtml">erb</trigger><description>tm - Insert ERb’s &lt;% .. %&gt; or &lt;%= .. %&gt;</description><template>&lt;%= ${code} %&gt;${cursor}
</template></entry><entry><trigger id="rhtml">flash</trigger><description>flash hash</description><template>flash[:${notice}] = &quot;${Successfully}&quot;${cursor}</template></entry><entry><trigger id="rhtml">forin</trigger><description>for .. in .. end</description><template>for ${element} in ${collection}
	${element}.${}
end
${cursor}</template></entry><entry><trigger id="rhtml">ft</trigger><description>tm - form_tag</description><template>&lt;%= form_tag :action =&gt; &quot;${update}&quot; %&gt;
${cursor}</template></entry><entry><trigger id="rhtml">h</trigger><description>Heading tag</description><template>&lt;h${1}&gt;${paste}&lt;/h${1}&gt;
${cursor}</template></entry><entry><trigger id="rhtml">head</trigger><description>tm - Head</description><template>&lt;head&gt;
	&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=utf-8&quot; /&gt;
	&lt;title&gt;${page_title}&lt;/title&gt;
&lt;/head&gt;

${cursor}</template></entry><entry><trigger id="rhtml">input</trigger><description>tm - Input</description><template>&lt;input type=&quot;${button}&quot; name=&quot;${some_name}&quot; value=&quot;${3}&quot;${id}&gt;</template></entry><entry><trigger id="rhtml">lia</trigger><description>tm - link_to (action)</description><template>&lt;%= link_to '${text}', :action =&gt; '${index}' %&gt;</template></entry><entry><trigger id="rhtml">liai</trigger><description>tm - link_to (action, id)</description><template>&lt;%= link_to '${text}', 
	:action =&gt; '${edit}',
	:id =&gt; ${item} %&gt;</template></entry><entry><trigger id="rhtml">lic</trigger><description>tm - link_to (controller)</description><template>&lt;%= link_to '${text}', :controller =&gt; '${items}' %&gt;</template></entry><entry><trigger id="rhtml">lica</trigger><description>tm - link_to (controller, action)</description><template>&lt;%= link_to '${text}', 
	:controller =&gt; '${items}', 
	:action =&gt; '${index}' %&gt;</template></entry><entry><trigger id="rhtml">licai</trigger><description>tm - link_to (controller, action, id)</description><template>&lt;%= link_to '${text}', 
	:controller =&gt; '${items}', 
	:action =&gt; '${edit}', 
	:id =&gt; ${item} %&gt;</template></entry><entry><trigger id="rhtml">link</trigger><description>tm - Link</description><template>&lt;link rel=&quot;${stylesheet}&quot; href=&quot;${master}&quot; type=&quot;text/css&quot; media=&quot;${screen}&quot; title=&quot;${title}&quot; charset=&quot;${utf}&quot;${TM_XHTML}&gt;</template></entry><entry><trigger id="rhtml">mailto</trigger><description>tm - Mail Anchor</description><template>&lt;a href=&quot;mailto:${example}?subject=${feedback}&quot;&gt;${email}&lt;/a&gt;</template></entry><entry><trigger id="rhtml">meta</trigger><description>Meta tag</description><template>&lt;meta name=&quot;${name}&quot; content=&quot;${content}&quot; /&gt;</template></entry><entry><trigger id="rhtml">movie</trigger><description>tm - Embed QT Movie</description><template>&lt;object width=&quot;${2}&quot; height=&quot;${3}&quot; classid=&quot;clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B&quot; codebase=&quot;http://www.apple.com/qtactivex/qtplugin.cab&quot;&gt;
	&lt;param name=&quot;src&quot; value=&quot;${1}&quot;${TM_XHTML}&gt;
	&lt;param name=&quot;controller&quot; value=&quot;${4}&quot;${TM_XHTML}&gt;
	&lt;param name=&quot;autoplay&quot; value=&quot;${5}&quot;${TM_XHTML}&gt;
	&lt;embed src=&quot;${movie}&quot;
		width=&quot;${320}&quot; height=&quot;${240}&quot;
		controller=&quot;${true}&quot; autoplay=&quot;${true}&quot;
		scale=&quot;tofit&quot; cache=&quot;true&quot;
		pluginspage=&quot;http://www.apple.com/quicktime/download/&quot;
	${TM_XHTML}&gt;
&lt;/object&gt;</template></entry><entry><trigger id="rhtml">p</trigger><description>Inserts paragraph tags</description><template>&lt;p&gt;
	${content}
&lt;/p&gt;
${cursor}</template></entry><entry><trigger id="rhtml">params</trigger><description>params hash</description><template>params[:${object}]${cursor}</template></entry><entry><trigger id="rhtml">ra</trigger><description>render action</description><template>render :action =&gt; &quot;${action}&quot;</template></entry><entry><trigger id="rhtml">ral</trigger><description>render action layout</description><template>render :action =&gt; &quot;${action}&quot;, :layout =&gt; &quot;${layoutname}&quot;</template></entry><entry><trigger id="rhtml">rb</trigger><description>ruby code withou =</description><template>&lt;% ${paste} %&gt;${cursor}</template></entry><entry><trigger id="rhtml">rea</trigger><description>redirect to action</description><template>redirect_to :action =&gt; &quot;${index}&quot;</template></entry><entry><trigger id="rhtml">reai</trigger><description>redirect_to action,id</description><template>redirect_to :action =&gt; &quot;${show}&quot;, :id =&gt; ${item}</template></entry><entry><trigger id="rhtml">rec</trigger><description>redirect_to controller</description><template>redirect_to :controller =&gt; &quot;${items}&quot;</template></entry><entry><trigger id="rhtml">reca</trigger><description>redirect_to controller,action</description><template>redirect_to :controller =&gt; &quot;${items}&quot;, :action =&gt; &quot;${list}&quot;</template></entry><entry><trigger id="rhtml">recai</trigger><description>redirect_to controller,action, id</description><template>redirect_to :controller =&gt; &quot;${items}&quot;, :action =&gt; &quot;${show}&quot;, :id =&gt; ${item}</template></entry><entry><trigger id="rhtml">rp</trigger><description>render partial</description><template>render :partial =&gt; '${item}'</template></entry><entry><trigger id="rhtml">rpc</trigger><description>render partial collection</description><template>render :partial =&gt; '${item}', :collection =&gt; ${items}</template></entry><entry><trigger id="rhtml">script</trigger><description>tm - Script</description><template>&lt;script type=&quot;text/javascript&quot; charset=&quot;utf-8&quot;&gt;
	${cursor}
&lt;/script&gt;</template></entry><entry><trigger id="rhtml">scriptsrc</trigger><description>tm - Script With External Source</description><template>&lt;script src=&quot;${1}&quot; type=&quot;text/javascript&quot; charset=&quot;${utf}&quot;&gt;&lt;/script&gt;</template></entry><entry><trigger id="rhtml">sess</trigger><description>session hash</description><template>session[:${object}]${cursor}</template></entry><entry><trigger id="rhtml">style</trigger><description>tm - Style</description><template>&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
	${cursor}
&lt;/style&gt;</template></entry><entry><trigger id="rhtml">table</trigger><description>tm - Table</description><template>&lt;table border=&quot;${0}&quot;${cellpadding}&gt;
	&lt;tr&gt;&lt;th&gt;${Header}&lt;/th&gt;&lt;/tr&gt;
	&lt;tr&gt;&lt;td&gt;${Data}&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;</template></entry><entry><trigger id="rhtml">textarea</trigger><description>tm - Text Area</description><template>&lt;textarea name=&quot;${Name}&quot; rows=&quot;${8}&quot; cols=&quot;${40}&quot;&gt;${cursor}&lt;/textarea&gt;</template></entry><entry><trigger id="rhtml">title</trigger><description>tm - Title</description><template>&lt;title&gt;${TM_FILENAME}&lt;/title&gt;</template></entry></snippet>