summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordiv_bhasin <divbest99@gmail.com>2019-05-05 22:17:45 -0400
committerdiv_bhasin <divbest99@gmail.com>2019-05-05 22:17:45 -0400
commitb3498d110e4dca90f00ce325b4f48835b27ed5da (patch)
treed596c1581fd8fa96c1c06dc9f78e32a9c53fc67e
parentbcd41006259d88b9785e2cc7740d95545c6e07e3 (diff)
downloadzsh-b3498d110e4dca90f00ce325b4f48835b27ed5da.tar.gz
zsh-b3498d110e4dca90f00ce325b4f48835b27ed5da.tar.bz2
zsh-b3498d110e4dca90f00ce325b4f48835b27ed5da.zip
Extracted angularjs to its own context for users who still use Angular <= 2
-rw-r--r--plugins/frontend-search/README.md3
-rw-r--r--plugins/frontend-search/_frontend-search.sh6
-rw-r--r--plugins/frontend-search/frontend-search.plugin.zsh7
3 files changed, 11 insertions, 5 deletions
diff --git a/plugins/frontend-search/README.md b/plugins/frontend-search/README.md
index d77a4210d..24f82b262 100644
--- a/plugins/frontend-search/README.md
+++ b/plugins/frontend-search/README.md
@@ -32,7 +32,8 @@ Available search contexts are:
| context | URL |
|---------------|--------------------------------------------------------------------------|
-| angularjs | `https://angular.io/?search=` |
+| angular(>=2.0)| `https://angular.io/?search=` |
+| angularjs(1.x)| `https://google.com/search?as_sitesearch=angularjs.org&as_q=`
| aurajs | `http://aurajs.com/api/#stq=` |
| bem | `https://google.com/search?as_sitesearch=bem.info&as_q=` |
| bootsnipp | `https://bootsnipp.com/search?q=` |
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
;;
diff --git a/plugins/frontend-search/frontend-search.plugin.zsh b/plugins/frontend-search/frontend-search.plugin.zsh
index cad692ec4..c5f5ea7a9 100644
--- a/plugins/frontend-search/frontend-search.plugin.zsh
+++ b/plugins/frontend-search/frontend-search.plugin.zsh
@@ -26,7 +26,8 @@ function frontend() {
# define search context URLS
typeset -A urls
urls=(
- angularjs 'https://angular.io/?search='
+ angular 'https://angular.io/?search='
+ angularjs 'https://google.com/search?as_sitesearch=angularjs.org&as_q='
aurajs 'http://aurajs.com/api/#stq='
bem 'https://google.com/search?as_sitesearch=bem.info&as_q='
bootsnipp 'https://bootsnipp.com/search?q='
@@ -57,7 +58,7 @@ function frontend() {
print -P "%Uterm%u and what follows is what will be searched for in the %Ucontext%u website,"
print -P "and %Ucontext%u is one of the following:"
print -P ""
- print -P " angularjs, aurajs, bem, bootsnipp, caniuse, codepen, compassdoc, cssflow,"
+ print -P " angular (>= 2.0), angularjs (1.x), aurajs, bem, bootsnipp, caniuse, codepen, compassdoc, cssflow,"
print -P " dartlang, emberjs, fontello, html5please, jquery, lodash, mdn, npmjs,"
print -P " qunit, reactjs, smacss, stackoverflow, unheap"
print -P ""
@@ -73,7 +74,7 @@ function frontend() {
echo ""
echo "Valid contexts are:"
echo ""
- echo " angularjs, aurajs, bem, bootsnipp, caniuse, codepen, compassdoc, cssflow, "
+ echo " angular (>= 2.0), angularjs (1.x), aurajs, bem, bootsnipp, caniuse, codepen, compassdoc, cssflow, "
echo " dartlang, emberjs, fontello, html5please, jquery, lodash, mdn, npmjs, "
echo " qunit, reactjs, smacss, stackoverflow, unheap"
echo ""