mirror of https://github.com/tqdm/tqdm.git
completion: add missin --delay
This commit is contained in:
parent
aa08afdd9e
commit
b65a286c85
|
@ -5,14 +5,14 @@ _tqdm(){
|
|||
prv="${COMP_WORDS[COMP_CWORD - 1]}"
|
||||
|
||||
case ${prv} in
|
||||
--bar_format|--buf_size|--colour|--comppath|--delim|--desc|--initial|--lock_args|--manpath|--maxinterval|--mininterval|--miniters|--ncols|--nrows|--position|--postfix|--smoothing|--total|--unit|--unit_divisor)
|
||||
--bar_format|--buf_size|--colour|--comppath|--delay|--delim|--desc|--initial|--lock_args|--manpath|--maxinterval|--mininterval|--miniters|--ncols|--nrows|--position|--postfix|--smoothing|--total|--unit|--unit_divisor)
|
||||
# await user input
|
||||
;;
|
||||
"--log")
|
||||
COMPREPLY=($(compgen -W 'CRITICAL FATAL ERROR WARN WARNING INFO DEBUG NOTSET' -- ${cur}))
|
||||
;;
|
||||
*)
|
||||
COMPREPLY=($(compgen -W '--ascii --bar_format --buf_size --bytes --colour --comppath --delim --desc --disable --dynamic_ncols --help --initial --leave --lock_args --log --manpath --maxinterval --mininterval --miniters --ncols --nrows --null --position --postfix --smoothing --tee --total --unit --unit_divisor --unit_scale --update --update_to --version --write_bytes -h -v' -- ${cur}))
|
||||
COMPREPLY=($(compgen -W '--ascii --bar_format --buf_size --bytes --colour --comppath --delay --delim --desc --disable --dynamic_ncols --help --initial --leave --lock_args --log --manpath --maxinterval --mininterval --miniters --ncols --nrows --null --position --postfix --smoothing --tee --total --unit --unit_divisor --unit_scale --update --update_to --version --write_bytes -h -v' -- ${cur}))
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
|
|
@ -234,6 +234,12 @@ Bar colour (e.g.
|
|||
.RS
|
||||
.RE
|
||||
.TP
|
||||
.B \-\-delay=\f[I]delay\f[]
|
||||
float, optional.
|
||||
Don\[aq]t display until [default: 0] seconds have elapsed.
|
||||
.RS
|
||||
.RE
|
||||
.TP
|
||||
.B \-\-delim=\f[I]delim\f[]
|
||||
chr, optional.
|
||||
Delimiting character [default: \[aq]\\n\[aq]].
|
||||
|
|
Loading…
Reference in New Issue