mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
f64364cced
darcs-hash:20061129140004-ac50b-485ff6bfd71e9459ba62461f6e093ca5c9ddd664.gz
43 lines
845 B
Fish
43 lines
845 B
Fish
function __fish_complete_cd -d "Completions for the cd command"
|
|
|
|
#
|
|
# We can't simply use __fish_complete_directory because of the CDPATH
|
|
#
|
|
|
|
set -l wd $PWD
|
|
set -l owd $OLDPWD
|
|
|
|
# Check if CDPATH is set
|
|
|
|
set -l mycdpath
|
|
|
|
if test -z $CDPATH[1]
|
|
set mycdpath .
|
|
else
|
|
set mycdpath $CDPATH
|
|
end
|
|
|
|
|
|
if echo (commandline -ct)|sgrep '^/\|^\./\|^\.\./' >/dev/null
|
|
# This is an absolute search path
|
|
eval printf '\%s\\tDirectory\\n' (commandline -ct)\*/
|
|
else
|
|
# This is a relative search path
|
|
# Iterate over every directory in CDPATH
|
|
# and check for possible completions
|
|
|
|
for i in $mycdpath
|
|
# Move to the initial directory first,
|
|
# in case the CDPATH directory is relative
|
|
|
|
builtin cd $wd
|
|
builtin cd $i
|
|
|
|
eval printf '"%s\tDirectory in "'$i'"\n"' (commandline -ct)\*/
|
|
end
|
|
end
|
|
|
|
builtin cd $wd
|
|
set OLDPWD $owd
|
|
end
|
|
|