mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Rename EOL delay to Output line delay
This commit is contained in:
parent
8b8dd373a7
commit
39af74f263
7 changed files with 45 additions and 40 deletions
|
|
@ -16,6 +16,7 @@ _tio()
|
|||
-s --stopbits \
|
||||
-p --parity \
|
||||
-o --output-delay \
|
||||
-o --output-line-delay \
|
||||
--dtr-pulse-duration \
|
||||
-n --no-autoconnect \
|
||||
-e --local-echo \
|
||||
|
|
@ -56,7 +57,11 @@ _tio()
|
|||
return 0
|
||||
;;
|
||||
-o | --output-delay)
|
||||
COMPREPLY=( $(compgen -W "0 1 10 100" -- ${cur}) )
|
||||
COMPREPLY=( $(compgen -W "1 10 100" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
-O | --output-line-delay)
|
||||
COMPREPLY=( $(compgen -W "1 10 100" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
--dtr-pulse-duration)
|
||||
|
|
@ -75,11 +80,11 @@ _tio()
|
|||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
-l | --log-file)
|
||||
--log-file)
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
-l | --log-strip)
|
||||
--log-strip)
|
||||
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
||||
return 0
|
||||
;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue