summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2021-01-08 15:28:21 +0000
committerPhilip Withnall <philip@tecnocode.co.uk>2021-01-08 15:28:21 +0000
commit9f31030aaddb301ff94c6a0e4532e2f14e3b9798 (patch)
tree7a7ee2686025455019b427d32828d9020cb6319e
parent6e19dec8d57174f3928171e102c24102f2b61ead (diff)
parentcd85cec26645a01c971da5a4fdf5dc6b64a185a9 (diff)
downloaddconf-9f31030aaddb301ff94c6a0e4532e2f14e3b9798.tar.gz
Merge branch 'completion' into 'master'
Minor fixes to bash completion script See merge request GNOME/dconf!64
-rw-r--r--bin/completion/dconf6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/completion/dconf b/bin/completion/dconf
index 6496397..be46e2f 100644
--- a/bin/completion/dconf
+++ b/bin/completion/dconf
@@ -9,15 +9,15 @@ __dconf() {
case "${COMP_CWORD}" in
1)
- choices=$'help \nread \nlist \nwrite \nreset \nupdate \nlock \nunlock \nwatch \ndump \nload \ncompile '
+ choices=$'help \nread \nlist \nlist-locks \nwrite \nreset \ncompile \nupdate \nwatch \ndump \nload \nblame '
;;
2)
case "${COMP_WORDS[1]}" in
help)
- choices=$'help \nread \nlist \nwrite \nreset \nupdate \nlock \nunlock \nwatch \ndump \nload \ncompile '
+ choices=$'help \nread \nlist \nlist-locks \nwrite \nreset \ncompile \nupdate \nwatch \ndump \nload \nblame '
;;
- list|dump|load)
+ list|list-locks|dump|load)
choices="$(dconf _complete / "${COMP_WORDS[2]}")"
;;
read|list|write|lock|unlock|watch|reset)