mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 22:14:53 +00:00
22 lines
401 B
Fish
22 lines
401 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' \
|
|
-x
|
|
|
|
complete -c $command \
|
|
-s t \
|
|
-d 'Specify a [t]itle for a download notification' \
|
|
-x
|
|
|
|
complete -c $command \
|
|
-s p \
|
|
-d 'Specify a [p]ath for a download' \
|
|
-F -r
|