2006-07-09 23:55:18 +00:00
|
|
|
function __fish_complete_cd -d "Completions for the cd command"
|
|
|
|
|
|
|
|
#
|
2006-12-02 23:34:33 +00:00
|
|
|
# We can't simply use __fish_complete_directories because of the CDPATH
|
2006-07-09 23:55:18 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2010-09-18 02:18:26 +00:00
|
|
|
|
2011-06-24 00:45:05 +00:00
|
|
|
if echo '(commandline -ct)'|sgrep '^/\|^\./\|^\.\./' >/dev/null
|
2006-07-09 23:55:18 +00:00
|
|
|
# This is an absolute search path
|
2011-06-21 15:02:49 +00:00
|
|
|
eval printf '\%s\\tDirectory\\n' '(commandline -ct)'\*/
|
2006-07-09 23:55:18 +00:00
|
|
|
else
|
|
|
|
# This is a relative search path
|
2010-09-18 02:18:26 +00:00
|
|
|
# Iterate over every directory in CDPATH
|
2006-07-09 23:55:18 +00:00
|
|
|
# and check for possible completions
|
|
|
|
|
|
|
|
for i in $mycdpath
|
2010-09-18 02:18:26 +00:00
|
|
|
# Move to the initial directory first,
|
2006-07-09 23:55:18 +00:00
|
|
|
# in case the CDPATH directory is relative
|
|
|
|
|
|
|
|
builtin cd $wd
|
2010-09-17 08:01:44 +00:00
|
|
|
eval builtin cd $i
|
2006-07-09 23:55:18 +00:00
|
|
|
|
2011-06-21 21:17:03 +00:00
|
|
|
eval printf '"%s\tDirectory in "'$i'"\n"' '(commandline -ct)'\*/
|
2006-07-09 23:55:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
builtin cd $wd
|
|
|
|
set OLDPWD $owd
|
|
|
|
end
|
|
|
|
|