mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-19 00:14:01 +00:00
29 lines
605 B
Fish
29 lines
605 B
Fish
set command termux-toast
|
|
|
|
complete -c $command -f
|
|
|
|
complete -c $command \
|
|
-s h \
|
|
-d 'Show [h]elp'
|
|
|
|
complete -c $command \
|
|
-a '(__fish_termux_api__complete_colors)' \
|
|
-s b \
|
|
-d 'Specify the [b]ackground color of a message' \
|
|
-x
|
|
|
|
complete -c $command \
|
|
-a '(__fish_termux_api__complete_colors)' \
|
|
-s c \
|
|
-d 'Specify the text [c]olor of a message' \
|
|
-x
|
|
|
|
complete -c $command \
|
|
-a 'middle\tdefault top bottom' \
|
|
-s g \
|
|
-d 'Specify the position of a message' \
|
|
-x
|
|
|
|
complete -c $command \
|
|
-s s \
|
|
-d 'Show a message for the [s]hort period of time'
|