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

really silent this time in case of write error in user directory

rationale: if a user's directory isn't writeable, then autojump is
probably his last concern :)
This commit is contained in:
Joël Schaerer 2010-01-20 17:47:52 +01:00
parent eddceb7e8f
commit c928c78aaa
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ _autojump()
return 0
}
complete -F _autojump j
AUTOJUMP='(autojump -a "$(pwd -P)"&)>/dev/null 2>>${HOME}/.autojump_errors'
AUTOJUMP='{ (autojump -a "$(pwd -P)"&)>/dev/null 2>>${HOME}/.autojump_errors;} 2>/dev/null'
if [[ ! $PROMPT_COMMAND =~ autojump ]]; then
export PROMPT_COMMAND="${PROMPT_COMMAND:-:} && $AUTOJUMP"
fi

View File

@ -15,7 +15,7 @@
#along with autojump. If not, see <http://www.gnu.org/licenses/>.
function autojump_preexec() {
(autojump -a "$(pwd -P)"&)>/dev/null 2>>|${HOME}/.autojump_errors
{ (autojump -a "$(pwd -P)"&)>/dev/null 2>>|${HOME}/.autojump_errors ; } 2>/dev/null
}
typeset -ga preexec_functions