diff options
author | Vadim Misbakh-Soloviov <msva@users.noreply.github.com> | 2025-02-19 17:20:14 +0700 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2025-02-27 16:07:36 +0100 |
commit | 1818323f451f426f20ca47c50e8fc63824578479 (patch) | |
tree | cc9742368eb8e3adf8d007daa681509b529804db /ChangeLog | |
parent | e160cf85f05c3106189edf2158146b9f522d1f1c (diff) | |
download | zsh-1818323f451f426f20ca47c50e8fc63824578479.tar.gz zsh-1818323f451f426f20ca47c50e8fc63824578479.zip |
github #129: fix _gpg completion
1) As for now, `--local-user` completion is irrelevant: it completes system users, while gpg expects private keys IDs
2) `secret-keys` completion was also broken and completed nothing.
The reason of that to happen was in that fact that it assumed `uid` token would be next after `fpr` (same as it do in public-keys completion), while in current gnupg versions there is at least `grp` token, and potentially can be others.
So, instead i+=2 I made `until "uid"` loop.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2025-02-27 Oliver Kiddle <opk@zsh.org> + * github #129: Vadim Misbakh-Soloviov: + Completion/Unix/Command/_gpg: fix _gpg completion + * 53378: Doc/Zsh/builtins.yo, Src/Builtins/rlimits.c, configure.ac: support new pipebuf resource limit on FreeBSD |