__fasd_run.fish 281 B

123456
  1. function __fasd_run -e fish_postexec -d "fasd takes record of the directories changed into"
  2. set -lx RETVAL $status
  3. if test $RETVAL -eq 0 # if there was no error
  4. command fasd --proc (command fasd --sanitize (eval echo "$argv") | tr -s " " \n) > "/dev/null" 2>&1 &
  5. end
  6. end