mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-06 10:08:47 +00:00
11 lines
229 B
Fish
11 lines
229 B
Fish
|
#
|
||
|
# Completion for sudo
|
||
|
#
|
||
|
# Generate a list of commands
|
||
|
#
|
||
|
|
||
|
complete -c sudo -d (_ "Command to run") -x -a "(__fish_complete_commands)"
|
||
|
|
||
|
complete -c sudo -s h -d (_ "Display help and exit")
|
||
|
complete -c sudo -s v -d (_ "Validate")
|