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

add an exit status to the j functions

This commit is contained in:
Joel Schaerer 2011-02-07 22:51:59 +01:00
parent 1bf91d1b25
commit 16da74b2ff
2 changed files with 2 additions and 2 deletions

View File

@ -47,4 +47,4 @@ if [[ ! $PROMPT_COMMAND =~ autojump ]]; then
export PROMPT_COMMAND="${PROMPT_COMMAND:-:} ; $AUTOJUMP" export PROMPT_COMMAND="${PROMPT_COMMAND:-:} ; $AUTOJUMP"
fi fi
alias jumpstat="autojump --stat" 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 } function j { new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";else false; fi }

View File

@ -39,4 +39,4 @@ preexec_functions+=autojump_preexec
alias jumpstat="autojump --stat" alias jumpstat="autojump --stat"
function j { local new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";fi } function j { local new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";else false; fi }