From c91c4efc9683c0ee5b40ec072cccb0ffe6f94ae0 Mon Sep 17 00:00:00 2001 From: Amir Mohammad Saied Date: Sun, 15 Feb 2009 10:18:17 +0330 Subject: [PATCH 1/1] action and values for bash completion --- bti-bashcompletion | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/bti-bashcompletion b/bti-bashcompletion index fa155bc..79e5cda 100644 --- a/bti-bashcompletion +++ b/bti-bashcompletion @@ -5,15 +5,19 @@ _bti() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" if [[ "${cur}" == -* ]] ; then - COMPREPLY=( $(compgen -W "-a -p -P -H -b -d -v -h --account \ - --password --proxy --host --bash --debug --version \ - --help" -- ${cur}) ) + COMPREPLY=( $(compgen -W "-a -A -p -P -H -b -d -v -h + --account --action --password --proxy --host --bash \ + --debug --version --help" -- ${cur}) ) fi if [[ "${prev}" == "--host" ]] ; then COMPREPLY=( $(compgen -W "twitter identica" -- ${cur} ) ) fi + if [[ "${prev}" == "--action" ]] ; then + COMPREPLY=( $(compgen -W "friends public update" -- ${cur} ) ) + fi + return 0 } -- 2.39.5