diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-02 08:23:31 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-02 08:23:31 +0000 |
commit | 753cc6b22adb659e9c6bdcf854d99bfe4b731d26 (patch) | |
tree | 9e3e7f2f5bb5bd6756860ee5d735b8392c01b3ed /Completion/Builtins/_hash | |
parent | 3d088f16aab58abcedcad8720ffbbfadee38bdc3 (diff) | |
download | zsh-753cc6b22adb659e9c6bdcf854d99bfe4b731d26.tar.gz zsh-753cc6b22adb659e9c6bdcf854d99bfe4b731d26.tar.xz zsh-753cc6b22adb659e9c6bdcf854d99bfe4b731d26.zip |
completion cleanup, mostly _wanted and $expl (11049)
Diffstat (limited to 'Completion/Builtins/_hash')
-rw-r--r-- | Completion/Builtins/_hash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Builtins/_hash b/Completion/Builtins/_hash index c577fc4d7..0bda9df44 100644 --- a/Completion/Builtins/_hash +++ b/Completion/Builtins/_hash @@ -10,7 +10,7 @@ if [[ "$words[2]" = -*d* ]]; then compadd -q -S '=' - "${(@k)nameddirs}" fi elif compset -P 1 '*='; then - _wanted -C value values expl 'executable file' _files "$expl[@]" -g '*(-*)' + _wanted -C value values expl 'executable file' _files -g '*(-*)' else _wanted -C name commands expl command compadd -q -S '=' - "${(@k)commands}" fi |