diff options
author | div_bhasin <divbest99@gmail.com> | 2019-05-05 22:17:45 -0400 |
---|---|---|
committer | div_bhasin <divbest99@gmail.com> | 2019-05-05 22:17:45 -0400 |
commit | b3498d110e4dca90f00ce325b4f48835b27ed5da (patch) | |
tree | d596c1581fd8fa96c1c06dc9f78e32a9c53fc67e /plugins/frontend-search/_frontend-search.sh | |
parent | bcd41006259d88b9785e2cc7740d95545c6e07e3 (diff) | |
download | zsh-b3498d110e4dca90f00ce325b4f48835b27ed5da.tar.gz zsh-b3498d110e4dca90f00ce325b4f48835b27ed5da.tar.bz2 zsh-b3498d110e4dca90f00ce325b4f48835b27ed5da.zip |
Extracted angularjs to its own context for users who still use Angular <= 2
Diffstat (limited to 'plugins/frontend-search/_frontend-search.sh')
-rw-r--r-- | plugins/frontend-search/_frontend-search.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/frontend-search/_frontend-search.sh b/plugins/frontend-search/_frontend-search.sh index 9aad76f76..573aa3aae 100644 --- a/plugins/frontend-search/_frontend-search.sh +++ b/plugins/frontend-search/_frontend-search.sh @@ -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 ;; |