2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-24 11:27:41 +00:00
fish-shell/share/functions/__fish_complete_command.fish

5 lines
156 B
Fish
Raw Normal View History

function __fish_complete_command --description "Complete using all available commands"
printf "%s\n" (commandline -ct)(complete -C (commandline -ct))
end