summaryrefslogtreecommitdiffstats
path: root/bash-completion/losetup
diff options
context:
space:
mode:
Diffstat (limited to 'bash-completion/losetup')
-rw-r--r--bash-completion/losetup10
1 files changed, 7 insertions, 3 deletions
diff --git a/bash-completion/losetup b/bash-completion/losetup
index 629d34b78..7fee1d0ae 100644
--- a/bash-completion/losetup
+++ b/bash-completion/losetup
@@ -30,7 +30,7 @@ _losetup_module()
prefix="${cur%$realcur}"
OUTPUT_ALL="NAME AUTOCLEAR BACK-FILE BACK-INO
BACK-MAJ:MIN MAJ:MIN OFFSET PARTSCAN RO
- SIZELIMIT"
+ SIZELIMIT DIO"
for WORD in $OUTPUT_ALL; do
if ! [[ $prefix == *"$WORD"* ]]; then
OUTPUT="$WORD $OUTPUT"
@@ -52,14 +52,18 @@ _losetup_module()
--find
--set-capacity
--associated
- --list
+ --nooverlap
--offset
- --output
--sizelimit
--partscan
--read-only
--show
--verbose
+ --json
+ --list
+ --noheadings
+ --output
+ --raw
--help
--version"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )