From 49249692686c01f5eb16a0c8b747107a6fa5c927 Mon Sep 17 00:00:00 2001 From: Attila Veghelyi Date: Thu, 29 Sep 2022 17:33:35 +0200 Subject: [PATCH] Complete bit reorder feature for release --- man/tio.1.in | 2 ++ man/tio.1.txt | 2 ++ src/bash-completion/tio.in | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/man/tio.1.in b/man/tio.1.in index ac03318..936ab5c 100644 --- a/man/tio.1.in +++ b/man/tio.1.in @@ -167,6 +167,8 @@ Map DEL to BS on output Map NL to CR-NL on output .IP "\fBOLTU" Map lowercase characters to uppercase on output +.IP "\fBMSB2LSB" +Map MSB bit order to LSB on output .P If defining more than one flag, the flags must be comma separated. .RE diff --git a/man/tio.1.txt b/man/tio.1.txt index 0399b63..3e03611 100644 --- a/man/tio.1.txt +++ b/man/tio.1.txt @@ -131,6 +131,8 @@ OPTIONS OLTU Map lowercase characters to uppercase on output + MSB2LSB Map MSB bit order to LSB on output + If defining more than one flag, the flags must be comma separated. -x, --hexadecimal diff --git a/src/bash-completion/tio.in b/src/bash-completion/tio.in index ca115e6..7e110f6 100644 --- a/src/bash-completion/tio.in +++ b/src/bash-completion/tio.in @@ -94,7 +94,7 @@ _tio() return 0 ;; -m | --map) - COMPREPLY=( $(compgen -W "ICRNL IGNCR INLCR INLCRNL OCRNL ODELBS ONLCRNL" -- ${cur}) ) + COMPREPLY=( $(compgen -W "ICRNL IGNCR INLCR INLCRNL OCRNL ODELBS ONLCRNL MSB2LSB" -- ${cur}) ) return 0 ;; -t | --timestamp)