summaryrefslogtreecommitdiff
path: root/bin/dconf-bash-completion.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/dconf-bash-completion.sh')
-rw-r--r--bin/dconf-bash-completion.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/dconf-bash-completion.sh b/bin/dconf-bash-completion.sh
index 46d732d..37ab477 100644
--- a/bin/dconf-bash-completion.sh
+++ b/bin/dconf-bash-completion.sh
@@ -9,15 +9,15 @@ __dconf() {
case "${COMP_CWORD}" in
1)
- choices=$'help \nread \nlist \nwrite \nreset\n update \nlock \nunlock \nwatch '
+ choices=$'help \nread \nlist \nwrite \nreset\n update \nlock \nunlock \nwatch \ndump \nload '
;;
2)
case "${COMP_WORDS[1]}" in
help)
- choices=$'help \nread \nlist \nwrite \nreset\n update \nlock \nunlock \nwatch '
+ choices=$'help \nread \nlist \nwrite \nreset\n update \nlock \nunlock \nwatch \ndump \nload '
;;
- list)
+ list|dump|load)
choices="$(dconf _complete / "${COMP_WORDS[2]}")"
;;
read|list|write|lock|unlock|watch|reset)