summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2020-12-09 09:38:29 +0000
committerPhilip Withnall <philip@tecnocode.co.uk>2021-01-08 15:24:26 +0000
commitf6603047cb60cbee553c208b3cf4329c20335609 (patch)
tree8ccc1f9f7e6007cd7e000cfbcd29f0b36e0fcf04
parent6e19dec8d57174f3928171e102c24102f2b61ead (diff)
downloaddconf-f6603047cb60cbee553c208b3cf4329c20335609.tar.gz
completion: Drop nonexistent lock and unlock commands from completion
Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
-rw-r--r--bin/completion/dconf4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/completion/dconf b/bin/completion/dconf
index 6496397..aaaa1e7 100644
--- a/bin/completion/dconf
+++ b/bin/completion/dconf
@@ -9,13 +9,13 @@ __dconf() {
case "${COMP_CWORD}" in
1)
- choices=$'help \nread \nlist \nwrite \nreset \nupdate \nlock \nunlock \nwatch \ndump \nload \ncompile '
+ choices=$'help \nread \nlist \nwrite \nreset \nupdate \nwatch \ndump \nload \ncompile '
;;
2)
case "${COMP_WORDS[1]}" in
help)
- choices=$'help \nread \nlist \nwrite \nreset \nupdate \nlock \nunlock \nwatch \ndump \nload \ncompile '
+ choices=$'help \nread \nlist \nwrite \nreset \nupdate \nwatch \ndump \nload \ncompile '
;;
list|dump|load)
choices="$(dconf _complete / "${COMP_WORDS[2]}")"