Add --child support to shell scripts.

pull/374/head
Léo Peltier 9 years ago
parent 971303bcde
commit 9f0826dcf9

@ -79,10 +79,10 @@ j() {
# jump to child directory (subdirectory of current path) # jump to child directory (subdirectory of current path)
jc() { jc() {
if [[ ${1} == -* ]] && [[ ${1} != "--" ]]; then if [[ ${1} == -* ]] && [[ ${1} != "--" ]]; then
autojump ${@} autojump --child ${@}
return return
else else
j $(pwd) ${@} j ${@} --child
fi fi
} }
@ -122,9 +122,9 @@ jo() {
# open autojump results (child directory) in file browser # open autojump results (child directory) in file browser
jco() { jco() {
if [[ ${1} == -* ]] && [[ ${1} != "--" ]]; then if [[ ${1} == -* ]] && [[ ${1} != "--" ]]; then
autojump ${@} autojump --child ${@}
return return
else else
jo $(pwd) ${@} jo ${@} --child
fi fi
} }

@ -70,12 +70,7 @@ end
# jump to child directory (subdirectory of current path) # jump to child directory (subdirectory of current path)
function jc function jc
switch "$argv" j $argv --child
case '-*'
j $argv
case '*'
j (pwd) $argv
end
end end
@ -103,10 +98,5 @@ end
# open autojump results (child directory) in file browser # open autojump results (child directory) in file browser
function jco function jco
switch "$argv" jo $argv --child
case '-*'
j $argv
case '*'
jo (pwd) $argv
end
end end

@ -73,10 +73,10 @@ j() {
# jump to child directory (subdirectory of current path) # jump to child directory (subdirectory of current path)
jc() { jc() {
if [[ ${1} == -* ]] && [[ ${1} != "--" ]]; then if [[ ${1} == -* ]] && [[ ${1} != "--" ]]; then
autojump ${@} autojump --child ${@}
return return
else else
j $(pwd) ${@} j ${@} --child
fi fi
} }
@ -117,9 +117,9 @@ jo() {
# open autojump results (child directory) in file browser # open autojump results (child directory) in file browser
jco() { jco() {
if [[ ${1} == -* ]] && [[ ${1} != "--" ]]; then if [[ ${1} == -* ]] && [[ ${1} != "--" ]]; then
autojump ${@} autojump --child ${@}
return return
else else
jo $(pwd) ${@} jo ${@} --child
fi fi
} }

Loading…
Cancel
Save