From: Karel Zak Date: Wed, 25 Jun 2014 11:44:08 +0000 (+0200) Subject: bash-completion: update cfdisk X-Git-Tag: v2.25-rc2~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=077698f5d6caaf93ef272efa57ba90555577576f;p=thirdparty%2Futil-linux.git bash-completion: update cfdisk Signed-off-by: Karel Zak --- diff --git a/bash-completion/cfdisk b/bash-completion/cfdisk index 6d900706a1..025b0440b2 100644 --- a/bash-completion/cfdisk +++ b/bash-completion/cfdisk @@ -5,35 +5,18 @@ _cfdisk_module() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case $prev in - '-c'|'--cylinders') - COMPREPLY=( $(compgen -W "cylinders" -- $cur) ) + '-L'|'--color') + COMPREPLY=( $(compgen -W "auto never always" -- $cur) ) return 0 ;; - '-h'|'--heads') - COMPREPLY=( $(compgen -W "heads" -- $cur) ) - return 0 - ;; - '-s'|'--sectors') - COMPREPLY=( $(compgen -W "sectors" -- $cur) ) - return 0 - ;; - '-P'|'--print') - COMPREPLY=( $(compgen -W "r s t" -- $cur) ) - return 0 - ;; - '-v'|'-V'|'--version'|'--help') + '-V'|'--version'|'h'|'--help') return 0 ;; esac case $cur in -*) - OPTS=" --cylinders - --heads - --sectors - --guess - --print + OPTS=" --color --zero - --arrow --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )