/usr/share/fish/completions/seq.fish is in fish-common 2.4.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | if seq --version ^ /dev/null > /dev/null #GNU
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'
else #OS X
complete -c seq -s f -d 'Use printf style floating-point FORMAT'
complete -c seq -s s -d 'Use STRING to separate numbers'
complete -c seq -s w -d 'Equalize width with leading zeroes'
complete -c seq -s t -d 'Use STRING to terminate sequence of numbers'
end
|