mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Merge branch 'allow_strip_esc_key' of https://github.com/nh26223/tio into nh26223-allow_strip_esc_key
This commit is contained in:
commit
256d6b4fc2
6 changed files with 99 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue