mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 10:51:20 +03:00
298b9e23a6
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.
16 lines
526 B
Plaintext
16 lines
526 B
Plaintext
#compdef systemd-delta
|
|
|
|
_delta_type() {
|
|
local -a _delta_types
|
|
_delta_types=(masked equivalent redirected overridden unchanged)
|
|
_values -s , "${_delta_types[@]}"
|
|
}
|
|
|
|
_arguments \
|
|
{-h,--help}'[Show this help]' \
|
|
'--version[Show package version]' \
|
|
'--no-pager[Do not pipe output into a pager]' \
|
|
'--diff=[Show a diff when overridden files differ]:boolean:(1 0)' \
|
|
{-t,--type=}'[Only display a selected set of override types]:types:_delta_type' \
|
|
':SUFFIX:(tmpfiles.d sysctl.d systemd/system)'
|