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

pull/180/head
Jui-Shan Liang 11 years ago
parent 833dcca408
commit 1d31f720f4

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

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

Loading…
Cancel
Save