diff options
author | Oliver Kiddle <opk@zsh.org> | 2016-08-19 18:00:07 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2016-08-19 18:00:07 +0200 |
commit | 580698bc7136454941dd6bbc2ca70f240fabc6b7 (patch) | |
tree | 5f64057da3d5482c4e7f2c8242bfe2bc7de62299 /Completion/Unix/Command/_dbus | |
parent | 283357dcabb84d90825c3acb37e88dda45fd744d (diff) | |
download | zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.tar.gz zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.tar.xz zsh-580698bc7136454941dd6bbc2ca70f240fabc6b7.zip |
39067: update options to correspond to latest versions of software in various functions
Diffstat (limited to 'Completion/Unix/Command/_dbus')
-rw-r--r-- | Completion/Unix/Command/_dbus | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Completion/Unix/Command/_dbus b/Completion/Unix/Command/_dbus index bdd7613f0..b24a6e9a8 100644 --- a/Completion/Unix/Command/_dbus +++ b/Completion/Unix/Command/_dbus @@ -13,16 +13,19 @@ case $service in '--print-reply=-::format:(literal)' \ '--reply-timeout=-:timeout (ms)' \ '--type=-:type:(method_call signal)' \ + '(* -)--help' \ ':object path:->objectpaths' \ ':message name:->methods' \ ':content:->contents' && ret=0 ;; dbus-monitor) _arguments -A "--*" -C \ - '(--session)--system' '(--system)--session' \ + '*:watch expression:->expressions' \ + - '(bus)' \ + --system --session '--address=-:bus address:->addresses' \ - '(--profile)--monitor' '(--monitor)--profile' \ - '*:watch expression:->expressions' && ret=0 + - '(format)' \ + --monitor --profile --pcap --binary && ret=0 ;; esac @@ -30,7 +33,7 @@ case $state in addresses) compset -P '*;' if compset -P '*='; then - _files && ret=0 + _files && ret=0 else _message -e addresses address fi |