mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 07:57:22 +00:00
34e27ff4c2
darcs-hash:20070116011828-ac50b-fb923dc877869ded4d506bbe0bc5364eea44092f.gz
10 lines
481 B
Fish
10 lines
481 B
Fish
|
|
complete -c env -a "(set -n)=" -x --description "Redefine variable"
|
|
|
|
complete -c env -a "(__fish_complete_subcommand -- -u --unset)" --description "Command"
|
|
|
|
complete -c env -s i -l ignore-environment --description "Start with an empty environment"
|
|
complete -c env -s u -l unset --description "Remove variable from the environment" -x -a "(set -n)"
|
|
complete -c env -l help --description "Display help and exit"
|
|
complete -c env -l version --description "Display version and exit"
|
|
|