[Bash-completion-commits] [SCM] bash-completion branch, mount, updated. 1.90-51-g9a72c2f

Igor Murzov e-mail at date.by
Thu Nov 24 01:11:03 UTC 2011


The following commit has been merged in the mount branch:
commit 9a72c2f3e00e1cbbb1dbda6dc1f65e8276e35724
Author: Igor Murzov <e-mail at date.by>
Date:   Thu Nov 24 05:06:59 2011 +0300

    mount: Don't suggest short options.

diff --git a/completions/mount.linux b/completions/mount.linux
index 9c47342..9159444 100644
--- a/completions/mount.linux
+++ b/completions/mount.linux
@@ -185,11 +185,10 @@ _mount()
     esac
 
     if [[ "$cur" == -* ]]; then
-        COMPREPLY=( $( compgen -W '-V --version -h --help -v --verbose -a --all
-            -F --fork -f --fake -i --internal-only -l -n --no-mtab
-            --no-canonicalize -p --pass-fd -s -r --read-only -w --rw -L -U
-            -t --types -O --test-opts -o --options -B --bind -R --rbind
-            -M --move' -- "$cur" ) )
+        COMPREPLY=( $( compgen -W '--version --help --verbose --all --fork
+            --fake --internal-only -l --no-mtab --no-canonicalize --pass-fd -s
+            --read-only --rw -L -U --types --test-opts --options --bind --rbind
+            --move' -- "$cur" ) )
         [[ $COMPREPLY ]] && return
     fi
 

-- 
bash-completion



More information about the Bash-completion-commits mailing list