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:
parent
f23727ed0f
commit
96456e24e6
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user