mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-27 20:25:12 +00:00
de426323be
- reformat code - remove redundant functions
13 lines
301 B
Fish
13 lines
301 B
Fish
set -l command termux-call-log
|
|
|
|
complete -c $command -f
|
|
|
|
complete -c $command -s h -d 'Show help'
|
|
|
|
complete -c $command -s l -x \
|
|
-a '10\tdefault' \
|
|
-d 'Limit the amount of listed calls'
|
|
|
|
complete -c $command -s o -x \
|
|
-a '0\tdefault' \
|
|
-d 'Start listing calls with the specified one'
|