From eac27be032d7c2935f7e8e9a84a8973d9c4eaa5c Mon Sep 17 00:00:00 2001 From: Evan Shelhamer Date: Thu, 21 Jul 2011 20:18:34 -0400 Subject: [PATCH] Fix PROMPT_COMMAND for compatibility with OS X Lion 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. --- autojump.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autojump.bash b/autojump.bash index e512640a..28a0ebd1 100644 --- a/autojump.bash +++ b/autojump.bash @@ -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 }