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 ;;