mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-30 06:03:49 +08:00
22cb03c236
Before:
* hand write arg parse
* only accepts one suffix
After:
* use `arg_parse` to parse args
* accepts multi suffixes
Closes #9611.
(cherry picked from commit aa65856ee0
)
10 lines
435 B
Fish
10 lines
435 B
Fish
#at
|
|
complete -f -c at -s V -d "Display version and exit"
|
|
complete -f -c at -s q -d "Use specified queue"
|
|
complete -f -c at -s m -d "Send mail to user"
|
|
complete -c at -s f -k -x -a "(__fish_complete_suffix --description='At job' '')" -d "Read job from file"
|
|
complete -f -c at -s l -d "Alias for atq"
|
|
complete -f -c at -s d -d "Alias for atrm"
|
|
complete -f -c at -s v -d "Show the time"
|
|
complete -f -c at -s c -d "Print the jobs listed"
|