diff options
author | Levente Polyak <anthraxx@archlinux.org> | 2024-01-18 03:33:13 +0100 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2024-01-22 19:45:04 +0100 |
commit | b258bb3b7c55d06bad108400450acd32cff05366 (patch) | |
tree | 426d1e27c1b295998e088cb1e9cb72dee7ce1e6f /contrib/completion/zsh | |
parent | 08ece1640b360d741bd08dc6dc028a42682aa4ed (diff) | |
download | devtools-b258bb3b7c55d06bad108400450acd32cff05366.tar.xz |
feat(version): add verbose option to display up-to-date versions
Sometimes it can be desired to get a results for each entry even if the
current version is up-to-date. Add a --verbose option to print this
optional detail.
Component: pkgctl version check
Component: pkgctl version upgrade
Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
Diffstat (limited to 'contrib/completion/zsh')
-rw-r--r-- | contrib/completion/zsh/_devtools.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/completion/zsh/_devtools.in b/contrib/completion/zsh/_devtools.in index 38bf582..b427d20 100644 --- a/contrib/completion/zsh/_devtools.in +++ b/contrib/completion/zsh/_devtools.in @@ -292,11 +292,13 @@ _pkgctl_version_cmds=( ) _pkgctl_version_check_args=( + '(-v --verbose)'{-v,--verbose}'[Display results including up-to-date versions]' '(-h --help)'{-h,--help}'[Display usage]' '*:git_dir:_files -/' ) _pkgctl_version_upgrade_args=( + '(-v --verbose)'{-v,--verbose}'[Display results including up-to-date versions]' '(-h --help)'{-h,--help}'[Display usage]' '*:git_dir:_files -/' ) |