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

bash: fixes slow prompt and not add dir upon return key

This fixes (#303) slow prompt issue, because every time one hits return
key, autojump_add_to_database python code is executed, which is very
noticeably slow.

Also autojump should not add current directory to a database if it has
not changed since last time return key was pressed, so this fixes that
as well.
This commit is contained in:
Vaidas Jablonskis 2014-08-04 15:36:02 +01:00
parent f23727ed0f
commit 96456e24e6

View File

@ -45,7 +45,7 @@ case $PROMPT_COMMAND in
*autojump*)
;;
*)
PROMPT_COMMAND="${PROMPT_COMMAND:+$(echo "${PROMPT_COMMAND}" | awk '{gsub(/; *$/,"")}1') ; }autojump_add_to_database"
PROMPT_COMMAND="${PROMPT_COMMAND:+$(echo "${PROMPT_COMMAND}" | awk '{gsub(/; *$/,"")}1') ; }[[ $OLDPWD == $PPWD ]] && autojump_add_to_database && PPWD=$PWD"
;;
esac