1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

Fixed issue: Command "jc" doesn't jump correctly if sibling directories have same prefix

This commit is contained in:
Jui-Shan Liang 2013-02-12 03:16:13 +08:00
parent 833dcca408
commit 1d31f720f4
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ function jc {
if [[ ${@} == -* ]]; then
j ${@}
else
j $(pwd) ${@}
j $(pwd)/ ${@}
fi
}

View File

@ -57,7 +57,7 @@ function jc {
if [[ ${@} == -* ]]; then
j ${@}
else
j $(pwd) ${@}
j $(pwd)/ ${@}
fi
}