2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-24 10:45:08 +00:00
fish-shell/share/completions/wg-quick.fish

13 lines
722 B
Fish
Raw Normal View History

set -l valid_subcmds up down strip save
function __fish_wg_complete_interfaces
wg show interfaces
end
complete -c wg-quick -f
complete -c wg-quick -n "__fish_seen_subcommand_from $valid_subcmds" -a '(__fish_wg_complete_interfaces)'
complete -c wg-quick -n "not __fish_seen_subcommand_from $valid_subcmds" -a up -d 'Add and set up an interface'
complete -c wg-quick -n "not __fish_seen_subcommand_from $valid_subcmds" -a down -d 'Tear down and remove an interface'
complete -c wg-quick -n "not __fish_seen_subcommand_from $valid_subcmds" -a strip -d 'Output config for use with wg'
complete -c wg-quick -n "not __fish_seen_subcommand_from $valid_subcmds" -a save -d 'Saves the configuration of an existing interface'