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
|
|
|
|
|
2019-10-09 03:24:24 +08:00
|
|
|
if test (count $argv) -gt (test "$argv[1]" = "--" && echo 2 || echo 1)
|
2022-04-04 11:57:55 +08:00
|
|
|
printf "%s\n" (_ "Too many args for cd command") >&2
|
2016-03-22 07:51:39 +08:00
|
|
|
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
|
|
|
|
|
2020-03-10 02:36:12 +08:00
|
|
|
if test "$argv" = -
|
|
|
|
if test "$__fish_cd_direction" = next
|
2016-03-22 07:51:39 +08:00
|
|
|
nextd
|
|
|
|
else
|
|
|
|
prevd
|
|
|
|
end
|
|
|
|
return $status
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|