summaryrefslogtreecommitdiff
path: root/completions/dpkg-source
diff options
context:
space:
mode:
Diffstat (limited to 'completions/dpkg-source')
-rw-r--r--completions/dpkg-source16
1 files changed, 8 insertions, 8 deletions
diff --git a/completions/dpkg-source b/completions/dpkg-source
index 54403851..ffc34c41 100644
--- a/completions/dpkg-source
+++ b/completions/dpkg-source
@@ -10,7 +10,7 @@ _dpkg_source()
packopts="-c -l -F -V -T -D -U -W -E -sa -i -I -sk -sr -ss -sA -sK -sP \
-sU -sR"
unpackopts="-sp -sn -su"
- options="-x -b $packopts $unpackopts"
+ options="-x -b --print-format --before-build --after-build --commit $packopts $unpackopts"
fields="Format Source Version Binary Maintainer Uploader Architecture \
Standards-Version Build-Depends Files"
@@ -33,7 +33,7 @@ _dpkg_source()
_filedir 'dsc'
;;
*)
- COMPREPLY=( $( compgen -W "$unpackopts" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$unpackopts" -- "$cur") )
_filedir -d
_filedir
;;
@@ -57,7 +57,7 @@ _dpkg_source()
;;
-F)
# -F: force change log format
- COMPREPLY=( $( command ls /usr/lib/dpkg/parsechangelog ) )
+ COMPREPLY=( $(command ls /usr/lib/dpkg/parsechangelog) )
;;
-V|-D)
# -V: set a substitution variable
@@ -72,23 +72,23 @@ _dpkg_source()
# $cur contains a "="
COMPREPLY=()
else
- COMPREPLY=( $( compgen -W "$fields" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$fields" -- "$cur") )
fi
;;
-U)
# -U: remove a field
# Suggest possible fieldnames
- COMPREPLY=( $( compgen -W "$fields" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$fields" -- "$cur") )
;;
*)
- COMPREPLY=( $( compgen -W "$packopts $unpackopts" \
- -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$packopts $unpackopts" \
+ -- "$cur") )
;;
esac
return
;;
*)
- COMPREPLY=( $( compgen -W "$options" -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "$options" -- "$cur") )
return
;;
esac