Created
September 13, 2014 06:15
-
-
Save srph/38c96086f03b069c801a to your computer and use it in GitHub Desktop.
AngularUI's AngularJS Sublime Package - Remove inline annotation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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