Rename --log-filename to --log-file

This commit is contained in:
Martin Lund 2022-06-13 23:04:30 +02:00
parent 01a58dd319
commit db45326d98
3 changed files with 10 additions and 6 deletions

View file

@ -18,7 +18,7 @@ _tio()
-o --output-delay \
-n --no-autoconnect \
-l --log \
--log-filename \
--log-file \
-m --map \
-t --timestamp \
--timestamp-format \
@ -68,6 +68,10 @@ _tio()
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;
-l | --log-file)
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0
;;
-m | --map)
COMPREPLY=( $(compgen -W "ICRNL IGNCR INLCR INLCRNL OCRNL ODELBS ONLCRNL" -- ${cur}) )
return 0