diff options
author | llua <llua@users.noreply.github.com> | 2017-01-27 07:50:40 -0500 |
---|---|---|
committer | Felipe Sateler <fsateler@users.noreply.github.com> | 2017-01-27 09:50:40 -0300 |
commit | 644317741a1e19331d779bdccb3dae0c7f812607 (patch) | |
tree | a1d8038f8c442ab27c450dac23afe5a31e7fb124 /shell-completion | |
parent | 9cd7b1287b5c57f9a4d2e26cb6505908e494c88c (diff) |
zsh-completion: _journalctl fixes (#5165)
allow _journalctl to work when the rcquotes option is set, broken in ba89f80620d619867b4838973785d529c5a959f6.
allow the completion of --file multiple times, which ba89f80620d619867b4838973785d529c5a959f6 claims is true.
Fixes #4842
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/zsh/_journalctl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/zsh/_journalctl b/shell-completion/zsh/_journalctl index ef67fcf2a0..4a78a2e946 100644 --- a/shell-completion/zsh/_journalctl +++ b/shell-completion/zsh/_journalctl @@ -107,8 +107,8 @@ _arguments -s \ '--user[Show messages from user services]' \ '(--directory -D -M --machine --root --file)'{-M+,--machine=}'[Operate on local container]:machines:_sd_machines' \ '(--directory -D -M --machine --root --file)'{-D+,--directory=}'[Show journal files from directory]:directories:_directories' \ - '(--directory -D -M --machine --root --file)''--root=[Operate on catalog hierarchy under specified directory]:directories:_directories' \ - '(--directory -D -M --machine --root)--file=[Operate on specified journal files]:file:_files' \ + '(--directory -D -M --machine --root --file)--root=[Operate on catalog hierarchy under specified directory]:directories:_directories' \ + '(--directory -D -M --machine --root)*--file=[Operate on specified journal files]:file:_files' \ '--new-id128[Generate a new 128 Bit ID]' \ '--header[Show journal header information]' \ '--disk-usage[Show total disk usage]' \ |