Remove verbose option

Remove the command-line verbose option but let the ctrl-t c feature
print some of the verbose information (active config path/section).
This commit is contained in:
Martin Lund 2022-04-13 16:28:20 +02:00
parent 11df828f68
commit 28c880cdab
7 changed files with 13 additions and 29 deletions

View file

@ -23,8 +23,7 @@ _tio()
-t --timestamp \
-L --list-devices \
-c --color \
-h --help" \
-V --verbose \
-h --help"
# Complete the arguments to the options.
case "${prev}" in
@ -89,10 +88,6 @@ _tio()
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;
-V | --verbose)
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;
*)
;;
esac