Explorar el Código

works in vc

pull/18/head
elcerdo hace 15 años
padre
commit
a119a4f177
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      autojump.bash

+ 2
- 2
autojump.bash Ver fichero

@ -10,8 +10,8 @@ _autojump()
}
complete -F _autojump j
AUTOJUMP='(autojump -a "$(pwd -P)"&)>/dev/null'
if ! [[ $PROMPT_COMMAND =~ autojump ]]; then
export PROMPT_COMMAND="$PROMPT_COMMAND && $AUTOJUMP"
if [[ ! $PROMPT_COMMAND =~ autojump ]]; then
export PROMPT_COMMAND="${PROMPT_COMMAND:-:} && $AUTOJUMP"
fi
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 }

Cargando…
Cancelar
Guardar