diff --git a/src/bash-completion/tio.in b/src/bash-completion/tio.in index a0d062d..88e0084 100644 --- a/src/bash-completion/tio.in +++ b/src/bash-completion/tio.in @@ -20,6 +20,7 @@ _tio() -l --log \ -m --map \ -v --version \ + -t --timestamp \ -h --help" # Complete the arguments to the options. @@ -65,6 +66,10 @@ _tio() COMPREPLY=( $(compgen -W "ICRNL IGNCR INLCR INLCRNL OCRNL ODELBS ONLCRNL" -- ${cur}) ) return 0 ;; + -t | --timestamp) + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) + return 0 + ;; -v | --version) COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0