mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 20:38:17 +08:00
style: some code style fixes
This commit is contained in:
parent
7ae4f76f6d
commit
67cc59b425
|
@ -39,7 +39,7 @@ function frontend() {
|
||||||
emulate -L zsh
|
emulate -L zsh
|
||||||
|
|
||||||
# define search context URLS
|
# define search context URLS
|
||||||
typeset -A urls
|
local -A urls
|
||||||
urls=(
|
urls=(
|
||||||
angular 'https://angular.io/?search='
|
angular 'https://angular.io/?search='
|
||||||
angularjs $(_frontend_fallback 'angularjs.org')
|
angularjs $(_frontend_fallback 'angularjs.org')
|
||||||
|
@ -73,8 +73,7 @@ function frontend() {
|
||||||
)
|
)
|
||||||
|
|
||||||
# show help for command list
|
# show help for command list
|
||||||
if [[ $# -lt 2 ]]
|
if [[ $# -lt 2 ]]; then
|
||||||
then
|
|
||||||
print -P "Usage: frontend %Ucontext%u %Uterm%u [...%Umore%u] (or just: %Ucontext%u %Uterm%u [...%Umore%u])"
|
print -P "Usage: frontend %Ucontext%u %Uterm%u [...%Umore%u] (or just: %Ucontext%u %Uterm%u [...%Umore%u])"
|
||||||
print -P ""
|
print -P ""
|
||||||
print -P "%Uterm%u and what follows is what will be searched for in the %Ucontext%u website,"
|
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
|
fi
|
||||||
|
|
||||||
# check whether the search context is supported
|
# check whether the search context is supported
|
||||||
if [[ -z "$urls[$1]" ]]
|
if [[ -z "$urls[$1]" ]]; then
|
||||||
then
|
|
||||||
echo "Search context \"$1\" currently not supported."
|
echo "Search context \"$1\" currently not supported."
|
||||||
echo ""
|
echo ""
|
||||||
echo "Valid contexts are:"
|
echo "Valid contexts are:"
|
||||||
|
|
|
@ -1,10 +1,8 @@
|
||||||
alias pjo="pj open"
|
alias pjo="pj open"
|
||||||
|
|
||||||
pj () {
|
function pj() {
|
||||||
emulate -L zsh
|
local cmd="cd"
|
||||||
|
local project="$1"
|
||||||
cmd="cd"
|
|
||||||
project=$1
|
|
||||||
|
|
||||||
if [[ "open" == "$project" ]]; then
|
if [[ "open" == "$project" ]]; then
|
||||||
shift
|
shift
|
||||||
|
@ -25,13 +23,12 @@ pj () {
|
||||||
}
|
}
|
||||||
|
|
||||||
_pj () {
|
_pj () {
|
||||||
emulate -L zsh
|
local -a projects
|
||||||
|
|
||||||
typeset -a projects
|
|
||||||
for basedir ($PROJECT_PATHS); do
|
for basedir ($PROJECT_PATHS); do
|
||||||
projects+=(${basedir}/*(/N))
|
projects+=(${basedir}/*(/N))
|
||||||
done
|
done
|
||||||
|
|
||||||
compadd ${projects:t}
|
compadd ${projects:t}
|
||||||
}
|
}
|
||||||
|
|
||||||
compdef _pj pj
|
compdef _pj pj
|
||||||
|
|
Loading…
Reference in New Issue
Block a user