Skip to content

Commit

Permalink
Fix PROMPT_COMMAND for compatibility with OS X Lion
Browse files Browse the repository at this point in the history
Instead of updating $PROMPT_COMMAND by appending $AUTOJUMP with a leading
semicolon, prepend $AUTOJUMP followed by a semicolon.

It is unlikely (and frankly wrong) for anything to set $PROMPT_COMMAND to
begin with a semicolon, so this modification should not cause conflicts
where the previous version does.
  • Loading branch information
shelhamer committed Jul 22, 2011
1 parent 3c67f84 commit eac27be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autojump.bash
Original file line number Diff line number Diff line change
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 eac27be

Please sign in to comment.