summaryrefslogtreecommitdiffstats
path: root/bash-completion/losetup
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/losetup')
-rw-r--r--bash-completion/losetup32
1 files changed, 16 insertions, 16 deletions
diff --git a/bash-completion/losetup b/bash-completion/losetup
index 4afcd3ff0..75240b8c9 100644
--- a/bash-completion/losetup
+++ b/bash-completion/losetup
@@ -40,22 +40,22 @@ _losetup_module()
esac
case $cur in
-*)
- OPTS="-a --all
- -d --detach
- -D --detach-all
- -f --find
- -c --set-capacity
- -j --associated
- -l --list
- -o --offset
- -O --output
- --sizelimit
- -P --partscan
- -r --read-only
- --show
- -v --verbose
- -h --help
- -V --version"
+ OPTS="--all
+ --detach
+ --detach-all
+ --find
+ --set-capacity
+ --associated
+ --list
+ --offset
+ --output
+ --sizelimit
+ --partscan
+ --read-only
+ --show
+ --verbose
+ --help
+ --version"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;