mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
36693e4391
If the command is empty, try to complete starting from the empty command instead of the whole commandline.
12 lines
423 B
Fish
12 lines
423 B
Fish
function __fish_complete_command --description 'Complete using all available commands'
|
|
set -l ctoken (commandline -ct)
|
|
switch $ctoken
|
|
case '*=*'
|
|
set ctoken (string split "=" -- $ctoken)
|
|
printf '%s\n' $ctoken[1]=(complete -C "$ctoken[2]")
|
|
case '-*' # do not try to complete options as commands
|
|
return
|
|
case '*'
|
|
complete -C "$ctoken"
|
|
end
|
|
end
|