diff options
author | Clint Adams <clint@users.sourceforge.net> | 2009-11-20 23:01:17 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2009-11-20 23:01:17 +0000 |
commit | f1a8b0ca384983f183142d520fc497ae5bc36767 (patch) | |
tree | b51e8938c75bc6ff6c36d5cabb679922a4288dd5 | |
parent | 2746eec722920c9af31e9a5962887ac31d7a4b33 (diff) | |
download | zsh-f1a8b0ca384983f183142d520fc497ae5bc36767.tar.gz zsh-f1a8b0ca384983f183142d520fc497ae5bc36767.tar.xz zsh-f1a8b0ca384983f183142d520fc497ae5bc36767.zip |
27417: fix completion after gpg --verify-files.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_gpg | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index f63fbf2a7..f652753a4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2009-11-20 Clint Adams <clint@zsh.org> + * 27417: Completion/Unix/Command/_gpg: fix completion after + gpg --verify-files. + * unposted: Functions/Prompts/prompt_clint_setup: change bracket colors default to yellow when in an ssh session. @@ -12364,5 +12367,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4817 $ +* $Revision: 1.4818 $ ***************************************************** diff --git a/Completion/Unix/Command/_gpg b/Completion/Unix/Command/_gpg index 074cea700..368bfda2b 100644 --- a/Completion/Unix/Command/_gpg +++ b/Completion/Unix/Command/_gpg @@ -11,8 +11,8 @@ _arguments -C -s -S -A "-*" \ '(-c --symmetric)'{-c,--symmetric}'[encrypt with symmetric cypher only]' \ '--store[store only]' \ '--decrypt[decrypt file or stdin]' \ - '--verify[verify a signature]:file attachment:_files' \ - '--verify-files[verify a list of files]:_files attachment_files' \ + '--verify[verify a signature]' \ + '--verify-files[verify a list of files]' \ '(-f --encrypt-files)'{-f,--encrypt-files}'[encrypt files]' \ '--decrypt-files[decrypt files]' \ '--list-keys[list all keys]' \ |