The following commit has been merged in the master branch:
commit 9e04f3edc8e70c5aeef98866e400f772c0395e10
Author: Igor Murzov <[email protected]>
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

_______________________________________________
Bash-completion-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/bash-completion-commits

Reply via email to