diff options
author | William Giokas <1007380@gmail.com> | 2013-08-15 05:09:14 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-08-15 17:29:08 +0200 |
commit | 298b9e23a6e21161a7fe486aab94944a58d5e90c (patch) | |
tree | f6a92e5e86445f2c91241fc5fee02da93d3ceb3a /shell-completion/zsh/_systemd-inhibit | |
parent | systemd-cryptsetup: makes “discard” a synonym for “allow-discards” (diff) | |
download | systemd-298b9e23a6e21161a7fe486aab94944a58d5e90c.tar.xz systemd-298b9e23a6e21161a7fe486aab94944a58d5e90c.zip |
zsh_completion: Allow specifying multiple arguments
Some of the options in systemd can take multiple arguments, such as
systemctl's --type option. Previously, you would only be able to
complete a single type after the -t, but now zsh will continue to
complete the types, separating them by commas.
systemd-inhibit's --what command has colon (:), and that has been taken
into account.
Diffstat (limited to 'shell-completion/zsh/_systemd-inhibit')
-rw-r--r-- | shell-completion/zsh/_systemd-inhibit | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/shell-completion/zsh/_systemd-inhibit b/shell-completion/zsh/_systemd-inhibit index 7953455d40..1ecb6dc7ee 100644 --- a/shell-completion/zsh/_systemd-inhibit +++ b/shell-completion/zsh/_systemd-inhibit @@ -16,10 +16,16 @@ _systemd_inhibit_command(){ fi } +_inhibit_what() { + local _inhibit + _inhibit=(shutdown sleep idle handle-power-key handle-suspend-key handle-hibernate-key handle-lid-switch) + _values -s : "${_inhibit[@]}" +} + _arguments \ {-h,--help}'[Show this help]' \ '--version[Show package version]' \ - '--what=[Operations to inhibit]:options:(shutdown sleep idle handle-power-key handle-suspend-key handle-hibernate-key handle-lid-switch)' \ + '--what=[Operations to inhibit]:options:_inhibit_what' \ '--who=[A descriptive string who is inhibiting]' \ '--why=[A descriptive string why is being inhibited]' \ '--mode=[One of block or delay]' \ |