diff --git a/autojump.bash b/autojump.bash index 56f5c2b..a0f5359 100644 --- a/autojump.bash +++ b/autojump.bash @@ -25,7 +25,7 @@ _autojump() return 0 } complete -F _autojump j -AUTOJUMP='(autojump -a "$(pwd -P)"&)>/dev/null' +AUTOJUMP='(autojump -a "$(pwd -P)"&)>/dev/null 2>>${HOME}/.autojump_errors' if [[ ! $PROMPT_COMMAND =~ autojump ]]; then export PROMPT_COMMAND="${PROMPT_COMMAND:-:} && $AUTOJUMP" fi diff --git a/autojump.zsh b/autojump.zsh index 5d41d97..7dcd11a 100755 --- a/autojump.zsh +++ b/autojump.zsh @@ -15,7 +15,7 @@ #along with autojump. If not, see . function autojump_preexec() { - (autojump -a "$(pwd -P)"&)>/dev/null + (autojump -a "$(pwd -P)"&)>/dev/null 2>>${HOME}/.autojump_errors } typeset -ga preexec_functions