Rename EOL delay to Output line delay

This commit is contained in:
Martin Lund 2022-07-11 14:08:12 +02:00
parent 8b8dd373a7
commit 39af74f263
7 changed files with 45 additions and 40 deletions

View file

@ -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
;;