mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 23:24:39 +00:00
7659554dea
This removes the use of caret redirections from share/completions and share/functions, in preparation for dropping support in fish.
12 lines
650 B
Fish
12 lines
650 B
Fish
if seq --version 2>/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
|