summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2017-09-15 20:24:04 +0200
committerOliver Kiddle <opk@zsh.org>2017-09-15 20:24:04 +0200
commit8e9fe082be378f23d5802e231b2051da18f00f10 (patch)
treefa83834440505f0a0037a1a442780bd76e6909f2
parentc1f789d2aadb770a8195def524dc49519f47b0ca (diff)
downloadzsh-8e9fe082be378f23d5802e231b2051da18f00f10.tar.gz
zsh-8e9fe082be378f23d5802e231b2051da18f00f10.zip
41711: new dconf completion
-rw-r--r--ChangeLog2
-rw-r--r--Completion/Unix/Command/_dconf71
2 files changed, 73 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2c36b9461..9805dc82d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2017-09-15 Oliver Kiddle <opk@zsh.org>
+ * 41711: Completion/Unix/Command/_dconf: new dconf completion
+
* 41710: Completion/Unix/Command/_smartmontools:
new smartctl completion
diff --git a/Completion/Unix/Command/_dconf b/Completion/Unix/Command/_dconf
new file mode 100644
index 000000000..bfb314c72
--- /dev/null
+++ b/Completion/Unix/Command/_dconf
@@ -0,0 +1,71 @@
+#compdef dconf
+
+local curcontext="$curcontext" state line cmds ret=1
+local cmd=$words[1]
+
+cmds=(
+ 'help:display help information'
+ 'read:read the value of a key'
+ 'list:list the contents of a directory'
+ 'write:change the value of a key'
+ 'reset:reset the value of a key or directory'
+ 'compile:compile a binary database from keyfiles'
+ 'update:update the system databases'
+ 'watch:watch a path for changes'
+ 'dump:dump an entire subpath to stdout'
+ 'load:populate a subpath from stdin'
+)
+
+if (( CURRENT == 2 )); then
+ _describe -t commands command cmds
+ return
+fi
+
+curcontext="${curcontext%:*}-$words[2]:"
+shift words
+(( CURRENT-- ))
+
+case $words[1] in
+ dump|list|load) state=dirs ;;
+ watch) state=keys ;;
+ read)
+ _arguments -A "-*" '-d[read default values]' '1:key:->keys' && ret=0
+ ;;
+ write)
+ _arguments '1:key:->keys' '2:value' && ret=0
+ ;;
+ reset)
+ _arguments -A "-*" '-f[reset entire directory]' '1:key:->keys' && ret=0
+ [[ $+opt_args[-f] = 1 && state = keys ]] && state=dirs
+ ;;
+ compile)
+ _arguments '1:file:_files' '2:path:_directories' && ret=0
+ ;;
+ help)
+ _describe -t commands command cmds && ret=0
+ ;;
+ *) _default && ret=0 ;;
+esac
+
+case $state in
+ keys)
+ compset -P '*/'
+ dirs=( ${${${(f)"$(_call_program keys dconf _complete \'\' "${IPREFIX:-/}")"}#$IPREFIX}%% #} )
+ _tags keys
+ while _tags; do
+ if _requested keys; then
+ _description keys expl keu
+ compadd "$expl[@]" -qS ' ' ${dirs:#*/} && ret=0
+ compadd "$expl[@]" -S '' ${(M)dirs:#*/} && ret=0
+ fi
+ (( ret )) || break
+ done
+ ;;
+ dirs)
+ compset -P '*/'
+ _wanted keys expl directory compadd -S '' - \
+ ${${(f)"$(_call_program keys dconf _complete / "${IPREFIX:-/}")"}#$IPREFIX} && ret=0
+ ;;
+esac
+
+return ret