Parcourir la source

add an exit status to the j functions

pull/40/head
Joel Schaerer il y a 13 ans
Parent
révision
16da74b2ff
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +1
    -1
      autojump.bash
  2. +1
    -1
      autojump.zsh

+ 1
- 1
autojump.bash Voir le fichier

@ -47,4 +47,4 @@ 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 }
function j { new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";else false; fi }

+ 1
- 1
autojump.zsh Voir le fichier

@ -39,4 +39,4 @@ preexec_functions+=autojump_preexec
alias jumpstat="autojump --stat"
function j { local new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";fi }
function j { local new_path="$(autojump $@)";if [ -n "$new_path" ]; then echo -e "\\033[31m${new_path}\\033[0m"; cd "$new_path";else false; fi }

Chargement…
Annuler
Enregistrer