Merge branch 'allow_strip_esc_key' of https://github.com/nh26223/tio into nh26223-allow_strip_esc_key

This commit is contained in:
Martin Lund 2022-06-15 22:49:22 +02:00
commit 256d6b4fc2
6 changed files with 99 additions and 2 deletions

View file

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