[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 2.0-79-g74a37e7

Igor Murzov e-mail at date.by
Tue Dec 4 16:21:43 UTC 2012


The following commit has been merged in the master branch:
commit 9e04f3edc8e70c5aeef98866e400f772c0395e10
Author: Igor Murzov <e-mail at date.by>
Date:   Tue Dec 4 18:48:31 2012 +0400

    feh: Fix list of background styles.
    
    It looks like I misinterpreted this string:
    "Accepted values: checks (default), white, black."

diff --git a/completions/feh b/completions/feh
index 05f1b86..e53ca2b 100644
--- a/completions/feh
+++ b/completions/feh
@@ -7,7 +7,7 @@ _feh()
 
     case "$prev" in
         -B|--image-bg)
-            COMPREPLY=( $( compgen -W 'default white black' -- "$cur" ) )
+            COMPREPLY=( $( compgen -W 'checks white black' -- "$cur" ) )
             return
             ;;
         -f|--filelist|-o|--output|-O|--output-only|-\||--start-at)

-- 
bash-completion



More information about the Bash-completion-commits mailing list