mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 06:24:01 +00:00
21 lines
383 B
Fish
21 lines
383 B
Fish
|
set command termux-download
|
||
|
|
||
|
complete -c $command -f
|
||
|
|
||
|
complete -c $command \
|
||
|
-s h \
|
||
|
-d 'Show [h]elp'
|
||
|
|
||
|
complete -c $command \
|
||
|
-s d \
|
||
|
-d 'Specify a [d]escription for a download notification'
|
||
|
|
||
|
complete -c $command \
|
||
|
-s t \
|
||
|
-d 'Specify a [t]itle for a download notification'
|
||
|
|
||
|
complete -c $command \
|
||
|
-s p \
|
||
|
-d 'Specify a [p]ath for a download' \
|
||
|
-F -r
|