Skip to content

Commit

Permalink
Merge pull request #64 from shelhamer/osx_lion_fix
Browse files Browse the repository at this point in the history
Fix PROMPT_COMMAND for compatibility with OS X Lion
  • Loading branch information
Joel Schaerer committed Jul 28, 2011
2 parents 025fdab + eac27be commit 8069ebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autojump.bash
Expand Up @@ -44,7 +44,7 @@ fi

AUTOJUMP='{ [[ "$AUTOJUMP_HOME" == "$HOME" ]] && (autojump -a "$(pwd -P)"&)>/dev/null 2>>${AUTOJUMP_DATA_DIR}/autojump_errors;} 2>/dev/null'
if [[ ! $PROMPT_COMMAND =~ autojump ]]; then
export PROMPT_COMMAND="${PROMPT_COMMAND:-:} ; $AUTOJUMP"
export PROMPT_COMMAND="$AUTOJUMP ; ${PROMPT_COMMAND:-:}"
fi
alias jumpstat="autojump --stat"
function j { new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";else false; fi }

0 comments on commit 8069ebf

Please sign in to comment.