updated bash tab completion

This commit is contained in:
Carson McManus 2016-08-27 19:01:37 -04:00
parent 95126bbcf8
commit b2762a3979

View file

@ -4,7 +4,7 @@ _steamguard()
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
opts="--help --verbose --user --generate-code --encrypt --decrypt"
opts="--help --verbose --maFiles-path"
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
return 0