From 7e74f8cbe009320146e6dd011ee87f620335d0ae Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Sat, 12 Feb 2022 03:26:39 +0100 Subject: [PATCH] Update completion script --- src/bash-completion/tio.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bash-completion/tio.in b/src/bash-completion/tio.in index ac8ec76..ffbf7fc 100644 --- a/src/bash-completion/tio.in +++ b/src/bash-completion/tio.in @@ -21,7 +21,7 @@ _tio() -m --map \ -v --version \ -t --timestamp \ - -i --list-devices \ + -L --list-devices \ -h --help" # Complete the arguments to the options. @@ -71,7 +71,7 @@ _tio() COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;; - -i | --list-devices) + -L | --list-devices) COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 ;;