chiark / gitweb /
tg-push: new command pushing a tgish branch
[topgit.git] / contrib / tg-completion.bash
index 59fbc5065475bdb0241e73945f022196c9a0fc4f..de8a7b55d76bcf5059ed4b979e44efd4aaa9918c 100755 (executable)
@@ -191,7 +191,7 @@ __tg_complete_revlist ()
 
 __tg_topics ()
 {
-       tg summary | cut -f 2
+       tg summary -t
 }
 
 __tg_commands ()
@@ -359,6 +359,12 @@ _tg_patch ()
        local cur="${COMP_WORDS[COMP_CWORD]}"
 
        case "$cur" in
+       -*)
+               __tgcomp "
+                       -i
+                       -w
+               "
+               ;;
        *)
                __tgcomp "$(__tg_topics)"
        esac
@@ -369,6 +375,11 @@ _tg_remote ()
        local cur="${COMP_WORDS[COMP_CWORD]}"
 
        case "$cur" in
+       -*)
+               __tgcomp "
+                       --populate
+               "
+               ;;
        *)
                __tgcomp "$(__tg_remotes)"
        esac
@@ -376,7 +387,15 @@ _tg_remote ()
 
 _tg_summary ()
 {
-       COMPREPLY=()
+       local cur="${COMP_WORDS[COMP_CWORD]}"
+
+       case "$cur" in
+       *)
+               __tgcomp "
+                       --graphviz
+                       -t
+               "
+       esac
 }
 
 _tg_update ()