mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Renamed --char-delay to --output-delay
Renaming to make the naming more specific for the feature.
This commit is contained in:
parent
ab54352b51
commit
4eaff1df9d
6 changed files with 23 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue