diff options
Diffstat (limited to 'shell-completion/zsh/_busctl')
-rw-r--r-- | shell-completion/zsh/_busctl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/zsh/_busctl b/shell-completion/zsh/_busctl index 801ed48010..d66ff3e0ce 100644 --- a/shell-completion/zsh/_busctl +++ b/shell-completion/zsh/_busctl @@ -18,7 +18,7 @@ # You should have received a copy of the GNU Lesser General Public License # along with systemd; If not, see <http://www.gnu.org/licenses/>. -(( $+functions[_busctl_command] )) || _busctl_command() +(( $+functions[_busctl_commands] )) || _busctl_commands() { local -a _busctl_cmds _busctl_cmds=( @@ -68,4 +68,4 @@ _arguments \ '--allow-interactive-authorization=[Allow interactive authorization for operation]:boolean:(1 0)' \ '--timeout=[Maximum time to wait for method call completion]:timeout (seconds)' \ '--augment-creds=[Extend credential data with data read from /proc/$PID]:boolean:(1 0)' \ - '*::busctl command:_busctl_command' + '*::busctl command:_busctl_commands' |