mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-28 12:45:13 +00:00
20 lines
383 B
Fish
20 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
|