[Bash-completion-commits] [SCM] bash-completion branch, master, updated. 1.90-161-g4710d1b
Igor Murzov
e-mail at date.by
Sun Apr 8 14:39:04 UTC 2012
The following commit has been merged in the master branch:
commit d2a3db0b7a0cfc7e0da037a003873c19b8fc22a2
Author: Igor Murzov <e-mail at date.by>
Date: Sun Apr 8 17:13:05 2012 +0400
feh: Update option argument completions.
Some options were dropped in recent feh releases, and a couple of new
ones were added.
diff --git a/completions/feh b/completions/feh
index 0f34f94..4a4f607 100644
--- a/completions/feh
+++ b/completions/feh
@@ -10,10 +10,6 @@ _feh()
COMPREPLY=( $( compgen -W 'default white black' -- "$cur" ) )
return
;;
- --index-dim|--index-name|--index-size)
- COMPREPLY=( $( compgen -W '0 1' -- "$cur" ) )
- return
- ;;
-f|--filelist|-o|--output|-O|--output-only|-\||--start-at)
_filedir
return
@@ -61,7 +57,7 @@ _feh()
return
;;
-R|--reload|-H|--limit-height|-W|--limit-width|-E|--thumb-height|\
- -y|--thumb-width|-J|--thumb-redraw)
+ -y|--thumb-width|-J|--thumb-redraw|--magick-timeout)
# expect integer value
COMPREPLY+=( $( compgen -W '{0..9}' ) )
compopt -o nospace
@@ -76,11 +72,6 @@ _feh()
fi
return
;;
- -0|--reload-button|-1|--pan-button|-2|--zoom-button|-3|--menu-button|\
- -4|--prev-button|-5|--next-button|-8|--rotate-button|-9|--blur-button)
- COMPREPLY=( $( compgen -W '{0..9}' -- "$cur" ) )
- return
- ;;
-a|--alpha)
COMPREPLY=( $( compgen -W '{0..255}' -- "$cur" ) )
return
@@ -99,7 +90,8 @@ _feh()
compopt -o nospace
return
;;
- -L|--customlist|--info|-D|--slideshow-delay|-~|--thumb-title|-^|--title)
+ -L|--customlist|--index-info|--info|-D|--slideshow-delay|-~|\
+ --thumb-title|-^|--title)
# argument required but no completions available
return
;;
--
bash-completion
More information about the Bash-completion-commits
mailing list