Rename --hex to --hex-mode

This commit is contained in:
Martin Lund 2022-06-17 10:56:12 +02:00
parent a826bf4fcb
commit 1b2f445ed9
3 changed files with 5 additions and 5 deletions

View file

@ -27,7 +27,7 @@ _tio()
-L --list-devices \
-c --color \
-S --socket \
-x --hex \
-x --hex-mode \
-v --version \
-h --help"
@ -102,7 +102,7 @@ _tio()
COMPREPLY=( $(compgen -W "unix: inet: inet6:" -- ${cur}) )
return 0
;;
-x | --hex)
-x | --hex-mode)
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;