Skip to content

Instantly share code, notes, and snippets.

@segilbert
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save segilbert/f6bcced916c1a9d0feec to your computer and use it in GitHub Desktop.
Save segilbert/f6bcced916c1a9d0feec to your computer and use it in GitHub Desktop.
Angular Controller Sublime Code Snippet
<snippet>
<content><![CDATA[
(function (){
'use strict';
angular.module('${1:AppName}')
.controller('${2:controllerName}', [${2:controllerName}]);
function ${2:controllerName}(){
var vm = this;
$3
};
})();
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>fb-ng-ctrl</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
<description>Frozenbytes AngularJS Controller Code Snippet</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment