angular-ui / AngularJS-sublime-package

AngularJS code completion, snippets, go to definition, quick panel search, and more.
MIT License
1.42k stars 169 forks source link

using ng-annotate? #86

Open debuggerpk opened 9 years ago

debuggerpk commented 9 years ago

I am using ng-annotate so the annotation takes place automatically for me when i pass my scripts through gulp. It would be easier for me not to have verbose factory, service and providers. Is there a way i can do that with auto-complete? so that i can have

service('name', function(){

});

instead of

service('name', ['', function(){

}])