mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-28 12:45:13 +00:00
18 lines
297 B
Fish
18 lines
297 B
Fish
|
set command termux-vibrate
|
||
|
|
||
|
complete -c $command -f
|
||
|
|
||
|
complete -c $command \
|
||
|
-s h \
|
||
|
-d 'Show [h]elp'
|
||
|
|
||
|
complete -c $command \
|
||
|
-a '1000\tdefault' \
|
||
|
-s d \
|
||
|
-d 'Specify the [d]uration of a vibration' \
|
||
|
-x
|
||
|
|
||
|
complete -c $command \
|
||
|
-s f \
|
||
|
-d 'Vibrate in a silent mode too'
|