mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
8 lines
383 B
Fish
8 lines
383 B
Fish
# Completions for seq.
|
|
# Author: SanskritFritz (gmail)
|
|
|
|
complete -c seq -s f -l format -d 'Use printf style floating-point FORMAT'
|
|
complete -c seq -s s -l separator -d 'Use STRING to separate numbers'
|
|
complete -c seq -s w -l equal-width -d 'Equalize width with leading zeroes'
|
|
complete -c seq -l help -d 'Display this help'
|
|
complete -c seq -l version -d 'Output version information'
|