fish-shell/share/functions/__fish_complete_external_command.fish
Johannes Altmanninger aa304cbd3d Restore directory completions for subcommands
Fixes #6798

This re-adds some false positives: functions, builtins and abbreviations
are suggested after commands like sudo but I don't think anyone had
complained about that.
2020-03-24 20:18:07 +01:00

3 lines
73 B
Fish

function __fish_complete_external_command
complete -C "$argv[1]"
end