Skip to content

Instantly share code, notes, and snippets.

@srph
Created September 13, 2014 06:15
Show Gist options
  • Select an option

  • Save srph/38c96086f03b069c801a to your computer and use it in GitHub Desktop.

Select an option

Save srph/38c96086f03b069c801a to your computer and use it in GitHub Desktop.
AngularUI's AngularJS Sublime Package - Remove inline annotation
{
"js_completions": [
["config\tAngularJS", "config(function ($1) {\n\t$2\n});"],
["constant\tAngularJS", "constant('${1:name}', ${2:value});"],
["controller\tAngularJS", "controller('${1:name}', function ($2) {\n\t$3\n});"],
["factory\tAngularJS", "factory('${1:name}', function ($2) {\n\treturn ${3} {\n\t\t$4\n\t};\n});"],
["run\tAngularJS", "run('${1:name}', function ($2) {\n\t$3\n});"],
["service\tAngularJS", "service('${1:name}', function($2) {\n\t$3\n});"],
["value\tAngularJS", "value('${1:name}', ${2:value});"]
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment