[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 3690fb51710e977dd4963085fcc0c9a73cf1ceee

Ville Skyttä ville.skytta at iki.fi
Tue Oct 20 18:51:50 UTC 2009


The following commit has been merged in the master branch:
commit 3690fb51710e977dd4963085fcc0c9a73cf1ceee
Author: Ville Skyttä <ville.skytta at iki.fi>
Date:   Tue Oct 20 21:51:47 2009 +0300

    Fix indentation.

diff --git a/contrib/cvs b/contrib/cvs
index 30f1d98..3645ad9 100644
--- a/contrib/cvs
+++ b/contrib/cvs
@@ -61,68 +61,68 @@ _cvs()
         fi
         if [ -z "$mode" ]; then
             case $i in
-            -H|--help)
-                COMPREPLY=( $( compgen -W "$( _cvs_commands )" -- "$cur" ) )
-                return 0
-                ;;
-            -d)
-                mode=cvsroot
-                cvsroot=${COMP_WORDS[((count+1))]}
-                ;;
-            @(ad?(d)|new))
-                mode=add
-                ;;
-            @(adm?(in)|rcs))
-                mode=admin
-                ;;
-            ann?(otate))
-                mode=annotate
-                ;;
-            @(checkout|co|get))
-                mode=checkout
-                ;;
-            @(com?(mit)|ci))
-                mode=commit
-                ;;
-            di?(f?(f)))
-                mode=diff
-                ;;
-            ex?(p?(ort)))
-                mode=export
-                ;;
-            ?(un)edit)
-                mode=$i
-                ;;
-            hi?(s?(tory)))
-                mode=history
-                ;;
-            im?(p?(ort)))
-                mode=import
-                ;;
-            re?(l?(ease)))
-                mode=release
-                ;;
-            ?(r)log)
-                mode=log
-                ;;
-            @(rdiff|patch))
-                mode=rdiff
-                ;;
-            @(remove|rm|delete))
-                mode=remove
-                ;;
-            @(rtag|rfreeze))
-                mode=rtag
-                ;;
-            st?(at?(us)))
-                mode=status
-                ;;
-            @(tag|freeze))
-                mode=tag
-                ;;
-            up?(d?(ate)))
-                mode=update
-                ;;
+                -H|--help)
+                    COMPREPLY=( $( compgen -W "$( _cvs_commands )" -- "$cur" ) )
+                    return 0
+                    ;;
+                -d)
+                    mode=cvsroot
+                    cvsroot=${COMP_WORDS[((count+1))]}
+                    ;;
+                @(ad?(d)|new))
+                    mode=add
+                    ;;
+                @(adm?(in)|rcs))
+                    mode=admin
+                    ;;
+                ann?(otate))
+                    mode=annotate
+                    ;;
+                @(checkout|co|get))
+                    mode=checkout
+                    ;;
+                @(com?(mit)|ci))
+                    mode=commit
+                    ;;
+                di?(f?(f)))
+                    mode=diff
+                    ;;
+                ex?(p?(ort)))
+                    mode=export
+                    ;;
+                ?(un)edit)
+                    mode=$i
+                    ;;
+                hi?(s?(tory)))
+                    mode=history
+                    ;;
+                im?(p?(ort)))
+                    mode=import
+                    ;;
+                re?(l?(ease)))
+                    mode=release
+                    ;;
+                ?(r)log)
+                    mode=log
+                    ;;
+                @(rdiff|patch))
+                    mode=rdiff
+                    ;;
+                @(remove|rm|delete))
+                    mode=remove
+                    ;;
+                @(rtag|rfreeze))
+                    mode=rtag
+                    ;;
+                st?(at?(us)))
+                    mode=status
+                    ;;
+                @(tag|freeze))
+                    mode=tag
+                    ;;
+                up?(d?(ate)))
+                    mode=update
+                    ;;
             esac
         elif [[ "$i" = -* ]]; then
             flags=( "${flags[@]}" $i )

-- 
bash-completion



More information about the Bash-completion-commits mailing list