1
0
mirror of https://github.com/wting/autojump synced 2024-10-27 20:34:07 +00:00

works in vc

This commit is contained in:
elcerdo 2009-04-14 23:06:01 +02:00
parent 7c2148f198
commit a119a4f177

View File

@ -10,8 +10,8 @@ _autojump()
}
complete -F _autojump j
AUTOJUMP='(autojump -a "$(pwd -P)"&)>/dev/null'
if ! [[ $PROMPT_COMMAND =~ autojump ]]; then
export PROMPT_COMMAND="$PROMPT_COMMAND && $AUTOJUMP"
if [[ ! $PROMPT_COMMAND =~ autojump ]]; then
export PROMPT_COMMAND="${PROMPT_COMMAND:-:} && $AUTOJUMP"
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";fi }