summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Murzov <e-mail@date.by>2011-11-24 05:06:59 +0300
committerIgor Murzov <e-mail@date.by>2011-11-24 05:06:59 +0300
commit9a72c2f3e00e1cbbb1dbda6dc1f65e8276e35724 (patch)
treef141db9153ccdffb099820393184e60e6d88086c
parentdb8d3eeeebb78632cdfb23d37ff57bf4350912e1 (diff)
downloadbash-completion-9a72c2f3e00e1cbbb1dbda6dc1f65e8276e35724.tar.gz
mount: Don't suggest short options.
-rw-r--r--completions/mount.linux9
1 files changed, 4 insertions, 5 deletions
diff --git a/completions/mount.linux b/completions/mount.linux
index 9c47342f..91594449 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