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

Ville Skyttä ville.skytta at iki.fi
Sat Oct 23 10:09:37 UTC 2010


The following commit has been merged in the master branch:
commit 562b8b3497559951d79c223bebe05f2baaf9107f
Author: Ville Skyttä <ville.skytta at iki.fi>
Date:   Sat Oct 23 11:22:18 2010 +0300

    Tweak line wrapping.

diff --git a/completions/wodim b/completions/wodim
index e08ffc6..480936a 100644
--- a/completions/wodim
+++ b/completions/wodim
@@ -18,34 +18,30 @@ _cdrecord()
                 return 0
                 ;;
             blank)
-                COMPREPLY=( $( compgen -W 'help all fast \
-                    track unreserve trtail unclose session' \
-                    -- "$cur" ) )
+                COMPREPLY=( $( compgen -W 'help all fast track unreserve trtail
+                    unclose session' -- "$cur" ) )
                 return 0
                 ;;
             driveropts)
-                COMPREPLY=( $( compgen -W 'burnfree noburnfree\
-                    varirec= gigarec= audiomaster forcespeed noforcespeed\
-                    speedread nospeedread singlesession \
-                    nosinglesession hidecdr nohidecdr tattooinfo\
-                    tattoofile=' -- "$cur" ) )
+                COMPREPLY=( $( compgen -W 'burnfree noburnfree varirec=
+                    gigarec= audiomaster forcespeed noforcespeed speedread
+                    nospeedread singlesession nosinglesession hidecdr nohidecdr
+                    tattooinfo tattoofile=' -- "$cur" ) )
                 return 0
                 ;;
         esac
     fi
 
-    generic_options=(-version -v -V -d -silent -force -immed -dummy \
-        -dao -raw -raw96r -raw96p -raw16 -multi -msinfo -toc \
-        -atip -fix -nofix -waiti -load -lock -eject -format \
-        -setdropts -checkdrive -prcap -inq -scanbus -reset \
-        -abort -overburn -ignsize -useinfo -packet -noclose \
-        -text debug= kdebug= kd= minbuf= speed= blank= fs= \
-        dev= gracetime= timeout= driver= driveropts= \
-        defpregap= pktsize= mcn= textfile= cuefile=)
-    track_options=(-audio -swab -data -mode2 -xa -xa1 -xa2 -xamix -cdi \
-        -isosize -pad padsize= -nopad -shorttrack -noshorttrack\
-        pregap= -preemp -nopreemp -copy -nocopy -scms tcsize= \
-        isrc= index=)
+    generic_options=( -version -v -V -d -silent -force -immed -dummy -dao \
+        -raw -raw96r -raw96p -raw16 -multi -msinfo -toc -atip -fix -nofix \
+        -waiti -load -lock -eject -format -setdropts -checkdrive -prcap -inq \
+        -scanbus -reset -abort -overburn -ignsize -useinfo -packet -noclose \
+        -text debug= kdebug= kd= minbuf= speed= blank= fs= dev= gracetime= \
+        timeout= driver= driveropts= defpregap= pktsize= mcn= textfile= \
+        cuefile= )
+    track_options=( -audio -swab -data -mode2 -xa -xa1 -xa2 -xamix -cdi \
+        -isosize -pad padsize= -nopad -shorttrack -noshorttrack pregap= \
+        -preemp -nopreemp -copy -nocopy -scms tcsize= isrc= index= )
     # look if previous was either a file or a track option
     track_mode=0
     if [ $COMP_CWORD -gt 1 ]; then

-- 
bash-completion



More information about the Bash-completion-commits mailing list