mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-04 17:23:52 +08:00
23 lines
403 B
Fish
23 lines
403 B
Fish
|
#
|
||
|
# Find directories that complete $argv[1], output them as completions
|
||
|
# with description $argv[2] if defined, otherwise use 'Directory'
|
||
|
#
|
||
|
|
||
|
function __fish_complete_directory -d "Complete using directories"
|
||
|
|
||
|
set -- comp $argv[1]
|
||
|
set -- desc (_ Directory)
|
||
|
|
||
|
if test (count $argv) -gt 1
|
||
|
set desc $argv[2]
|
||
|
end
|
||
|
|
||
|
eval "set -- dirs "$comp"*/"
|
||
|
|
||
|
if test $dirs[1]
|
||
|
printf "%s\t$desc\n" $dirs
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|