diff options
author | duament <30264485+duament@users.noreply.github.com> | 2021-07-18 01:17:41 +0800 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2021-07-17 22:55:40 +0100 |
commit | 3f49d1faf59acaa85aa5ad502c39b1a601d58d26 (patch) | |
tree | 9f9bafc56a375404c3a5c84ed4e6b42ccee751a5 /shell-completion | |
parent | 942a69e3e3d82d41f3be7e8b5690244944f082be (diff) | |
download | systemd-3f49d1faf59acaa85aa5ad502c39b1a601d58d26.tar.gz |
shell-completion/zsh/_systemd-run: Fix completion of command names and arguments
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/zsh/_systemd-run | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell-completion/zsh/_systemd-run b/shell-completion/zsh/_systemd-run index cd0ad8245f..934834b94b 100644 --- a/shell-completion/zsh/_systemd-run +++ b/shell-completion/zsh/_systemd-run @@ -77,4 +77,5 @@ _arguments \ '--version[Show package version]' \ '--wait=[Wait until service stopped again]' \ '--working-directory=[Run with the specified working directory]' \ - '*::command:_command' + '(-):command: _command_names -e' \ + '*::arguments:_normal' |