|
|
|
|
@ -39,7 +39,7 @@ function frontend() { |
|
|
|
|
emulate -L zsh |
|
|
|
|
|
|
|
|
|
# define search context URLS |
|
|
|
|
typeset -A urls |
|
|
|
|
local -A urls |
|
|
|
|
urls=( |
|
|
|
|
angular 'https://angular.io/?search=' |
|
|
|
|
angularjs $(_frontend_fallback 'angularjs.org') |
|
|
|
|
@ -73,8 +73,7 @@ function frontend() { |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
# show help for command list |
|
|
|
|
if [[ $# -lt 2 ]] |
|
|
|
|
then |
|
|
|
|
if [[ $# -lt 2 ]]; then |
|
|
|
|
print -P "Usage: frontend %Ucontext%u %Uterm%u [...%Umore%u] (or just: %Ucontext%u %Uterm%u [...%Umore%u])" |
|
|
|
|
print -P "" |
|
|
|
|
print -P "%Uterm%u and what follows is what will be searched for in the %Ucontext%u website," |
|
|
|
|
@ -90,8 +89,7 @@ function frontend() { |
|
|
|
|
fi |
|
|
|
|
|
|
|
|
|
# check whether the search context is supported |
|
|
|
|
if [[ -z "$urls[$1]" ]] |
|
|
|
|
then |
|
|
|
|
if [[ -z "$urls[$1]" ]]; then |
|
|
|
|
echo "Search context \"$1\" currently not supported." |
|
|
|
|
echo "" |
|
|
|
|
echo "Valid contexts are:" |
|
|
|
|
|