diff options
author | Robby Russell <robby@planetargon.com> | 2015-08-29 20:43:46 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-08-29 20:43:46 -0700 |
commit | b1d57fad0da8f6029f0e4e512a61a9f4213941df (patch) | |
tree | e38b4afada1c4a0371fcb235edd00c1e4ea31404 /plugins/frontend-search/_frontend-search.sh | |
parent | 192de6bcffb0294e19f4203f6f7dc1a7f3e427be (diff) | |
parent | 0a80889848ccb3ada94dd2fdb793a01a268f7a16 (diff) | |
download | zsh-b1d57fad0da8f6029f0e4e512a61a9f4213941df.tar.gz zsh-b1d57fad0da8f6029f0e4e512a61a9f4213941df.tar.bz2 zsh-b1d57fad0da8f6029f0e4e512a61a9f4213941df.zip |
Merge pull request #4294 from willmendesneto/master
Frontend-search: add search in npm website
Diffstat (limited to 'plugins/frontend-search/_frontend-search.sh')
-rw-r--r-- | plugins/frontend-search/_frontend-search.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/frontend-search/_frontend-search.sh b/plugins/frontend-search/_frontend-search.sh index 252f21570..b12f829a1 100644 --- a/plugins/frontend-search/_frontend-search.sh +++ b/plugins/frontend-search/_frontend-search.sh @@ -37,6 +37,7 @@ function _frontend() { 'reactjs: Search in React website' 'emberjs: Search in Ember website' 'stackoverflow: Search in StackOverflow website' + 'npmjs: Search in NPMJS website' ) _arguments -C \ @@ -110,6 +111,9 @@ function _frontend() { stackoverflow) _describe -t points "Warp points" frontend_points && ret=0 ;; + npmjs) + _describe -t points "Warp points" frontend_points && ret=0 + ;; esac ;; esac |