fish-shell/share/completions/timeout.fish
Fabian Homborg c0fc80cb59 completions/timeout: Stop spewing
GNU timeout prints the version to stdout. Just silence both.
2022-04-21 17:15:20 +02:00

13 lines
613 B
Fish

__fish_make_completion_signals
complete -c timeout -l foreground -d 'Run COMMAND in the foreground'
complete -c timeout -s k -l kill-after -d 'Send a KILL signal after DURATION' -x
complete -c timeout -s s -l signal -d 'Specify the signal to be sent' -xa "$__kill_signals"
complete -c timeout -l preserve-status -d 'Exit with same status as COMMAND'
# GNU coreutils ver
if timeout --version &>/dev/null
complete -c timeout -l help -d 'Display this help and exit'
complete -c timeout -l version -d 'Output version and exit'
complete -c timeout -s v -l verbose -d 'Send diagnostic info to stderr'
end