1
0
mirror of https://github.com/wting/autojump synced 2024-09-28 05:50:47 +00:00

zsh/jo: Defer -options to j

This commit is contained in:
Wieland Hoffmann 2013-11-24 23:26:23 +01:00
parent 0b25bef134
commit 26db68a8e8

View File

@ -59,6 +59,11 @@ function jc {
} }
function jo { function jo {
if [[ ${@} == -* ]]; then
j ${@}
return
fi
if [ -z $(autojump $@) ]; then if [ -z $(autojump $@) ]; then
echo "autojump: directory '${@}' not found" echo "autojump: directory '${@}' not found"
echo "Try \`autojump --help\` for more information." echo "Try \`autojump --help\` for more information."