| Linux server27.hostingraja.org 2.6.32-954.3.5.lve1.4.93.el6.x86_64 #1 SMP Wed Oct 4 17:04:29 UTC 2023 x86_64 Path : /usr/share/zsh/4.3.11/functions/ |
| Current File : //usr/share/zsh/4.3.11/functions/_zattr |
#compdef zgetattr zsetattr zdelattr zlistattr local state line expl ret=1 REPLY local -a args privs case $service in zgetattr) _arguments \ '1:file:_files' \ '2:attribute:->attrs' \ '3:parameter' ;; zsetattr) _arguments \ '1:file:_files' \ '2:attribute:->attrs' \ '3:value' ;; zdelattr) _arguments \ '1:file:_files' \ '2:attribute:->attrs' ;; zlistattr) _arguments \ '1:file:_files' \ '2:parameter' ;; esac if [[ $state = attrs ]]; then zlistattr $~line[1] REPLY 2> /dev/null _wanted attrs expl 'attribute' compadd $REPLY fi