mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 22:14:53 +00:00
33 lines
657 B
Fish
33 lines
657 B
Fish
set command termux-sms-list
|
|
|
|
complete -c $command -f
|
|
|
|
complete -c $command \
|
|
-s h \
|
|
-d 'Show [h]elp'
|
|
|
|
complete -c $command \
|
|
-s d \
|
|
-d 'Show the creation [d]ates of listed messages'
|
|
|
|
complete -c $command \
|
|
-a '10\tdefault' \
|
|
-s l \
|
|
-d '[l]imit the amount of listed messages' \
|
|
-x
|
|
|
|
complete -c $command \
|
|
-s n \
|
|
-d 'Show the phone [n]umbers of listed messages'
|
|
|
|
complete -c $command \
|
|
-a '0\tdefault' \
|
|
-s o \
|
|
-d 'Start listing calls with the specificed one' \
|
|
-x
|
|
|
|
complete -c $command \
|
|
-a 'inbox\tdefault all sent draft outbox' \
|
|
-s t \
|
|
-d 'Filter listed messages by the [t]ype' \
|
|
-x
|