diff options
Diffstat (limited to 'Completion/Zsh/Command/_autoload')
-rw-r--r-- | Completion/Zsh/Command/_autoload | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Zsh/Command/_autoload b/Completion/Zsh/Command/_autoload index 81ded019a..50423d51a 100644 --- a/Completion/Zsh/Command/_autoload +++ b/Completion/Zsh/Command/_autoload @@ -4,7 +4,7 @@ local expl if (( $words[(I)[-+]*w*] )); then _description files expl 'zwc file' - _files "$expl[@]" -g '*.zwc' + _files "$expl[@]" -g '*.zwc(-.)' else _wanted functions expl 'shell function' compadd - ${^fpath}/*(:t) fi |