1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 07:20:09 +00:00

Fixed jump pluging to display the right mark name on 'mark . '

This commit is contained in:
Octavian Neamtu 2015-05-09 19:12:14 -04:00 committed by ncanceill
parent 563e1052c7
commit fb5b83d10d

View file

@ -13,7 +13,7 @@ jump() {
}
mark() {
if (( $# == 0 )); then
if [[ ( $# == 0 ) || ( "$1" == "." ) ]]; then
MARK=$(basename "$PWD")
else
MARK="$1"