diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Zsh/Type/_command_names | 6 | ||||
-rw-r--r-- | Completion/compaudit | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Zsh/Type/_command_names b/Completion/Zsh/Type/_command_names index 24933c234..d9fc62dfe 100644 --- a/Completion/Zsh/Type/_command_names +++ b/Completion/Zsh/Type/_command_names @@ -27,11 +27,11 @@ else [[ "$1" = - ]] && shift defs=( "$defs[@]" - 'builtins:builtin command:compadd -k builtins' + 'builtins:builtin command:compadd -Qk builtins' "functions:shell function:compadd -k 'functions$ffilt'" - 'aliases:alias:compadd -k aliases' + 'aliases:alias:compadd -Qk aliases' 'suffix-aliases:suffix alias:_suffix_alias_files' - 'reserved-words:reserved word:compadd -k reswords' + 'reserved-words:reserved word:compadd -Qk reswords' 'jobs:: _jobs -t' 'parameters:: _parameters -g "^*readonly*" -qS= -r "\n\t\- =["' ) diff --git a/Completion/compaudit b/Completion/compaudit index 75742a0fb..00125e4db 100644 --- a/Completion/compaudit +++ b/Completion/compaudit @@ -101,7 +101,7 @@ for _i_exe in $_i_exes; do if [[ -e $_i_exe ]] ;then if zmodload -F zsh/stat b:zstat 2>/dev/null; then local -A _i_stathash - if zstat -H _i_stathash /proc/$$/exe && + if zstat -H _i_stathash $_i_exe && [[ $_i_stathash[uid] -ne 0 ]]; then _i_owners+="u${_i_stathash[uid]}" fi |