Skip to content

Instantly share code, notes, and snippets.

@Initsogar
Created August 24, 2013 23:53
Show Gist options
  • Save Initsogar/6331069 to your computer and use it in GitHub Desktop.
Save Initsogar/6331069 to your computer and use it in GitHub Desktop.
Generate a Sencha Touch View boilerplate for Sublime Text 2 writing "sencha:view" and press "tab" key.
<snippet>
<content><![CDATA[
Ext.define('${1:AppName}.view.${2:ViewName}', {
extend: 'Ext.Panel',
xtype: '',
config: {
title: '',
defaults: {
},
scrollable: 'vertical',
items: [
{
}
]
}
});
]]></content>
<tabTrigger>sencha:view</tabTrigger>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment