mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 22:14:53 +00:00
19 lines
382 B
Fish
19 lines
382 B
Fish
|
set command termux-sms-list
|
||
|
|
||
|
complete -c $command -f
|
||
|
|
||
|
complete -c $command \
|
||
|
-s h \
|
||
|
-d 'Show [h]elp'
|
||
|
|
||
|
complete -c $command \
|
||
|
-a '(__fish_complete_list , __fish_termux_api__complete_phone_numbers)' \
|
||
|
-s n \
|
||
|
-d 'Specify the recipient [n]umbers of a message' \
|
||
|
-x
|
||
|
|
||
|
complete -c $command \
|
||
|
-s s \
|
||
|
-d 'Specify the sim [s]lot to use for a message' \
|
||
|
-x
|