mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
ceacfb83a8
darcs-hash:20061204115838-ac50b-f75e067b50ee2cbc8f735110c34892613c53c4d9.gz
38 lines
541 B
Fish
38 lines
541 B
Fish
function __fish_complete_subcommand -d "Complete subcommand"
|
|
|
|
set -l res ""
|
|
set -l had_cmd 0
|
|
set -l cmd (commandline -cop) (commandline -ct)
|
|
set -l skip_next 1
|
|
|
|
for i in $cmd
|
|
|
|
if test "$skip_next" = 1
|
|
set skip_next 0
|
|
continue
|
|
end
|
|
|
|
if test "$had_cmd" = 1
|
|
set res "$res $i"
|
|
else
|
|
|
|
if contains -- $i $argv
|
|
set skip_next 1
|
|
continue
|
|
end
|
|
|
|
switch $i
|
|
case '-*'
|
|
case '*=*'
|
|
|
|
case '*'
|
|
set had_cmd 1
|
|
set res $i
|
|
end
|
|
end
|
|
end
|
|
|
|
printf "%s\n" (commandline -ct)(complete -C$res)
|
|
|
|
end
|
|
|