Renamed --char-delay to --output-delay

Renaming to make the naming more specific for the feature.
This commit is contained in:
Martin Lund 2015-04-18 11:37:03 +03:00
parent ab54352b51
commit 4eaff1df9d
6 changed files with 23 additions and 13 deletions

View file

@ -15,6 +15,7 @@ _gotty()
-f --flow \
-s --stopbits \
-p --parity \
-o --output-delay \
-n --no-autoconnect \
-v --version \
-h --help"
@ -70,6 +71,10 @@ _gotty()
COMPREPLY=( $(compgen -W "even odd none" -- ${cur}) )
return 0
;;
-o | --output-delay)
COMPREPLY=( $(compgen -W "0 1 10 100" -- ${cur}) )
return 0
;;
-n | --no-autoconnect)
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0