2006-02-08 18:20:43 +08:00
|
|
|
#
|
2016-03-22 07:51:39 +08:00
|
|
|
# Wrap the builtin cd command to maintain directory history.
|
2006-02-08 18:20:43 +08:00
|
|
|
#
|
2016-08-25 13:56:19 +08:00
|
|
|
function cd --description "Change directory"
|
2016-03-22 07:51:39 +08:00
|
|
|
set -l MAX_DIR_HIST 25
|
|
|
|
|
|
|
|
if test (count $argv) -gt 1
|
|
|
|
printf "%s\n" (_ "Too many args for cd command")
|
|
|
|
return 1
|
|
|
|
end
|
|
|
|
|
|
|
|
# Skip history in subshells.
|
|
|
|
if status --is-command-substitution
|
|
|
|
builtin cd $argv
|
|
|
|
return $status
|
|
|
|
end
|
|
|
|
|
2016-05-09 07:27:15 +08:00
|
|
|
# Avoid set completions.
|
2016-03-22 07:51:39 +08:00
|
|
|
set -l previous $PWD
|
|
|
|
|
|
|
|
if test "$argv" = "-"
|
|
|
|
if test "$__fish_cd_direction" = "next"
|
|
|
|
nextd
|
|
|
|
else
|
|
|
|
prevd
|
|
|
|
end
|
|
|
|
return $status
|
|
|
|
end
|
|
|
|
|
2018-11-04 21:43:12 +08:00
|
|
|
# allow explicit "cd ." if the mount-point became stale in the meantime
|
|
|
|
if test "$argv" = "."
|
|
|
|
cd "$PWD"
|
|
|
|
return $status
|
|
|
|
end
|
|
|
|
|
2016-03-22 07:51:39 +08:00
|
|
|
builtin cd $argv
|
|
|
|
set -l cd_status $status
|
|
|
|
|
|
|
|
if test $cd_status -eq 0 -a "$PWD" != "$previous"
|
2017-07-04 01:16:31 +08:00
|
|
|
set -q dirprev
|
|
|
|
or set -l dirprev
|
2016-05-09 07:27:15 +08:00
|
|
|
set -q dirprev[$MAX_DIR_HIST]
|
|
|
|
and set -e dirprev[1]
|
2019-04-12 15:43:34 +08:00
|
|
|
|
|
|
|
# If dirprev, dirnext, __fish_cd_direction
|
2019-06-12 16:22:46 +08:00
|
|
|
# are set as universal variables, honor their scope.
|
2019-04-12 15:43:34 +08:00
|
|
|
|
|
|
|
set -U -q dirprev
|
|
|
|
and set -U -a dirprev $previous
|
|
|
|
or set -g -a dirprev $previous
|
|
|
|
|
|
|
|
set -U -q dirnext
|
|
|
|
and set -U -e dirnext
|
|
|
|
or set -e dirnext
|
|
|
|
|
|
|
|
set -U -q __fish_cd_direction
|
|
|
|
and set -U __fish_cd_direction prev
|
|
|
|
or set -g __fish_cd_direction prev
|
2016-03-22 07:51:39 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
return $cd_status
|
2006-02-08 18:20:43 +08:00
|
|
|
end
|