/usr/share/zsh/vendor-completions
NameSizeModeActions
_bootctl24500644editdlrm
_busctl95940644editdlrm
_curl152400644editdlrm
_docker77480644editdlrm
_dpkg-parsechangelog14100644editdlrm
_hostnamectl27930644editdlrm
_journalctl71940644editdlrm
_kernel-install7790644editdlrm
_localectl37730644editdlrm
_loginctl63970644editdlrm
_networkctl21590644editdlrm
_resolvectl37440644editdlrm
_sd_hosts_or_user_at_host1280644editdlrm
_sd_outputmodes3060644editdlrm
_sd_unit_files2630644editdlrm
_snap18240644editdlrm
_systemctl198890644editdlrm
_systemd38480644editdlrm
_systemd-analyze42270644editdlrm
_systemd-delta6330644editdlrm
_systemd-inhibit11790644editdlrm
_systemd-path2850644editdlrm
_systemd-run43460644editdlrm
_systemd-tmpfiles7440644editdlrm
_timedatectl20500644editdlrm
_udevadm65330644editdlrm
Edit: /usr/share/zsh/vendor-completions/_systemd-inhibit (1179B)
#compdef systemd-inhibit # SPDX-License-Identifier: LGPL-2.1-or-later (( $+functions[_systemd-inhibit_commands] )) || _systemd-inhibit_commands(){ if (( CURRENT == 1 )); then compset -q _normal else local n=${words[(b:2:i)[^-]*]} if (( n <= CURRENT )); then compset -n $n _alternative \ 'files:file:_files' \ 'commands:command:_normal' && return 0 fi _default fi } (( $+functions[_systemd-inhibit_what] )) || _systemd-inhibit_what() { local _inhibit _inhibit=(shutdown sleep idle handle-power-key handle-suspend-key handle-hibernate-key handle-lid-switch) _values -s : "${_inhibit[@]}" } _arguments \ {-h,--help}'[Show this help]' \ '--version[Show package version]' \ '--what=[Operations to inhibit]:options:_systemd-inhibit_what' \ '--who=[A descriptive string who is inhibiting]:who is inhibiting:' \ '--why=[A descriptive string why is being inhibited]:reason for the lock:' \ '--mode=[One of block or delay]:lock mode:( block delay )' \ '--list[List active inhibitors]' \ '*:commands:_systemd-inhibit_commands'