[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 1.3-445-g2a7db4d

Igor Murzov e-mail at date.by
Fri Sep 30 18:23:07 UTC 2011


The following commit has been merged in the master branch:
commit 2a7db4d988b82b308d5d00ad1474e097a8457b06
Author: Igor Murzov <e-mail at date.by>
Date:   Fri Sep 30 22:17:48 2011 +0400

    xrandr: Add more option completions.

diff --git a/completions/xrandr b/completions/xrandr
index 6c929a6..964b79f 100644
--- a/completions/xrandr
+++ b/completions/xrandr
@@ -10,7 +10,7 @@ _xrandr()
     local output modes
 
     case $prev in
-        --output)
+        --output|--left-of|--right-of|--above|--below|--same-as)
             local outputs=$(xrandr|awk '/connected/ {print $1}')
             COMPREPLY=( $(compgen -W "$outputs" -- "$cur"))
             return 0
@@ -27,21 +27,36 @@ _xrandr()
             COMPREPLY=( $( compgen -W "$modes" -- "$cur"))
             return 0
             ;;
+        -o|--orientation)
+            COMPREPLY=( $( compgen -W 'normal inverted left right 0 1 2 3' -- \
+                "$cur" ) )
+            return 0
+            ;;
+        --reflect)
+            COMPREPLY=( $( compgen -W 'normal x y xy' -- \
+                "$cur" ) )
+            return 0
+            ;;
+        --rotate)
+            COMPREPLY=( $( compgen -W 'normal inverted left right' -- \
+                "$cur" ) )
+            return 0
+            ;;
     esac
 
     case $cur in
         *)
             COMPREPLY=( $(compgen -W '-display -help --orientation --query \
                 --size --rate --version -x -y --screen --verbose --dryrun \
-                --prop --fb --fbmm --dpi --output --auto --mode --preferred \
-                --pos --reflect --rotate --left-of --right-of --above --below \
-                --same-as --set --off --crtc --newmode --rmmode --addmode \
-                --delmode' -- "$cur") )
+                --q1 --q12 --nograb --prop --properties --fb --fbmm --dpi \
+                --output --auto --mode --preferred --pos --rate --refresh \
+                --reflect --rotate --left-of --right-of --above --below \
+                --same-as --set --scale --transform --off --crtc --panning \
+                --gamma --brightness --primary --noprimary --newmode --rmmode \
+                --addmode --delmode' -- "$cur") )
             return 0
             ;;
     esac
-
-    return 0
 } &&
 complete -F _xrandr xrandr
 

-- 
bash-completion



More information about the Bash-completion-commits mailing list