1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 16:00:41 +01:00

Extracted angularjs to its own context for users who still use Angular <= 2

This commit is contained in:
div_bhasin
2019-05-05 22:17:45 -04:00
parent bcd4100625
commit b3498d110e
3 changed files with 11 additions and 5 deletions

View File

@@ -33,7 +33,8 @@ function _frontend() {
'unheap: Search in unheap website'
'bem: Search in BEM website'
'smacss: Search in SMACSS website'
'angularjs: Search in Angular website'
'angular: Search in Angular website for Angular 2.x'
'angularjs: Search in Angular website for Angular 1.x'
'reactjs: Search in React website'
'emberjs: Search in Ember website'
'stackoverflow: Search in StackOverflow website'
@@ -99,6 +100,9 @@ function _frontend() {
smacss)
_describe -t points "Warp points" frontend_points && ret=0
;;
angular)
_describe -t points "Warp points" frontend_points && ret=0
;;
angularjs)
_describe -t points "Warp points" frontend_points && ret=0
;;