1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
amix-vimrc-mirror/sources_non_forked/vim-snippets/UltiSnips/javascript-angular.snippets

78 lines
1.6 KiB
Plaintext
Raw Normal View History

2014-07-02 19:18:18 +08:00
priority -50
snippet iti "it (js, inject)" b
it('${1:description}', inject(function($2) {
$0
}));
endsnippet
snippet befi "before each (js, inject)" b
beforeEach(inject(function($1) {
$0
}));
endsnippet
snippet aconf "angular config" i
config(function($1) {
$0
});
endsnippet
snippet acont "angular controller" i
2017-02-11 21:01:38 +08:00
controller('${1:name}', [$2function(${2/('|")([A-Z_$]+)?\1?((, ?)$)?/$2(?3::$4)/ig}) {
2014-07-02 19:18:18 +08:00
$0
}]);
endsnippet
snippet aconts "angular controller with scope" i
2015-01-18 20:58:28 +08:00
controller('${1:name}', [${2:'$scope', }function(${2/('|")([A-Z_$]+)?\1?((, ?)$)?/$2(?3::$4)/ig}) {
$0
}]);
endsnippet
snippet adir "angular directive" i
2017-02-11 21:01:38 +08:00
directive('$1', [$2function(${2/('|")([A-Z_$]+)?\1?((, ?)$)?/$2(?3::$4)/ig}) {
2015-01-18 20:58:28 +08:00
return {
restrict: '${3:EA}',
link: function(scope, element, attrs) {
2017-02-11 21:01:38 +08:00
$0
2015-01-18 20:58:28 +08:00
}
};
}]);
endsnippet
snippet adirs "angular directive with scope" i
2017-02-11 21:01:38 +08:00
directive('$1', [${2:'$scope', }function(${2/('|")([A-Z_$]+)?\1?((, ?)$)?/$2(?3::$4)/ig}) {
2015-01-18 20:58:28 +08:00
return {
restrict: '${3:EA}',
link: function(scope, element, attrs) {
2017-02-11 21:01:38 +08:00
$0
2015-01-18 20:58:28 +08:00
}
};
}]);
endsnippet
snippet afact "angular factory" i
2017-02-11 21:01:38 +08:00
factory('${1:name}', [$2function(${2/('|")([A-Z_$]+)?\1?((, ?)$)?/$2(?3::$4)/ig}) {
$0
}]);
endsnippet
snippet afacts "angular factory with scope" i
2015-01-18 20:58:28 +08:00
factory('${1:name}', [${2:'$scope', }function(${2/('|")([A-Z_$]+)?\1?((, ?)$)?/$2(?3::$4)/ig}) {
$0
}]);
endsnippet
snippet aserv "angular service" i
2017-02-11 21:01:38 +08:00
service('${1:name}', [$2function(${2/('|")([A-Z_$]+)?\1?((, ?)$)?/$2(?3::$4)/ig}) {
$0
}]);
endsnippet
snippet aservs "angular service" i
2015-01-18 20:58:28 +08:00
service('${1:name}', [${2:'$scope', }function(${2/('|")([A-Z_$]+)?\1?((, ?)$)?/$2(?3::$4)/ig}) {
$0
}]);
2014-07-02 19:18:18 +08:00
endsnippet