mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 11:29:48 +08:00
34e27ff4c2
darcs-hash:20070116011828-ac50b-fb923dc877869ded4d506bbe0bc5364eea44092f.gz
13 lines
623 B
Fish
13 lines
623 B
Fish
# Completions for su
|
|
|
|
complete -x -c su -a "(__fish_complete_users)"
|
|
complete -c su -s l -l login --description "Make login shell"
|
|
complete -r -c su -s c -l command --description "Pass command to shell" -xa "(__fish_complete_command)"
|
|
complete -c su -s f -l fast --description "Pass -f to the shell"
|
|
complete -c su -s m -l preserve_environment --description "Preserve environment"
|
|
complete -c su -s p --description "Preserve environment"
|
|
complete -x -c su -s s -l shell -a "(cat /etc/shells)"
|
|
complete -c su -l help --description "Display help and exit"
|
|
complete -c su -l version --description "Display version and exit"
|
|
|