2006-02-08 10:20:43 +00:00
|
|
|
#
|
2016-03-21 23:51:39 +00:00
|
|
|
# Wrap the builtin cd command to maintain directory history.
|
2006-02-08 10:20:43 +00:00
|
|
|
#
|
2016-08-25 05:56:19 +00:00
|
|
|
function cd --description "Change directory"
|
2016-03-21 23:51:39 +00: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-08 23:27:15 +00:00
|
|
|
# Avoid set completions.
|
2016-03-21 23:51:39 +00:00
|
|
|
set -l previous $PWD
|
|
|
|
|
|
|
|
if test "$argv" = "-"
|
|
|
|
if test "$__fish_cd_direction" = "next"
|
|
|
|
nextd
|
|
|
|
else
|
|
|
|
prevd
|
|
|
|
end
|
|
|
|
return $status
|
|
|
|
end
|
|
|
|
|
|
|
|
builtin cd $argv
|
|
|
|
set -l cd_status $status
|
|
|
|
|
|
|
|
if test $cd_status -eq 0 -a "$PWD" != "$previous"
|
2016-05-08 23:27:15 +00:00
|
|
|
set -q dirprev[$MAX_DIR_HIST]
|
|
|
|
and set -e dirprev[1]
|
2016-03-21 23:51:39 +00:00
|
|
|
set -g dirprev $dirprev $previous
|
|
|
|
set -e dirnext
|
|
|
|
set -g __fish_cd_direction prev
|
|
|
|
end
|
|
|
|
|
|
|
|
return $cd_status
|
2006-02-08 10:20:43 +00:00
|
|
|
end
|