From f68b617e7c5dbce0a7a1b249a7f52405b027076b Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Mon, 22 May 2017 18:21:22 -0400 Subject: [PATCH] add --passkey to bash tab completion --- bash-tab-completion | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash-tab-completion b/bash-tab-completion index 830342d..1bdaf9b 100644 --- a/bash-tab-completion +++ b/bash-tab-completion @@ -4,8 +4,8 @@ _steamguard() COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" - opts="--help --verbose --maFiles-path" - + opts="--help --verbose --maFiles-path --passkey" + COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) return 0 }