diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-25 11:00:06 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-04-25 11:00:06 +0000 |
commit | 2f90974c38247cfcbcea034aaa861a3ed700bdc5 (patch) | |
tree | 2c196d70212d38399b13c79dd727e3777473c55f /Completion/Base | |
parent | 6623bb41b98142c24607790dc8311435d1c33257 (diff) | |
download | zsh-2f90974c38247cfcbcea034aaa861a3ed700bdc5.tar.gz zsh-2f90974c38247cfcbcea034aaa861a3ed700bdc5.tar.xz zsh-2f90974c38247cfcbcea034aaa861a3ed700bdc5.zip |
small fix for _requested to be able to use _all_labels from within it (10910)
Diffstat (limited to 'Completion/Base')
-rw-r--r-- | Completion/Base/_tilde | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Completion/Base/_tilde b/Completion/Base/_tilde index 7ab058e01..7d31185b7 100644 --- a/Completion/Base/_tilde +++ b/Completion/Base/_tilde @@ -18,6 +18,7 @@ _tags users named-directories directory-stack while _tags; do _requested users && _users "$suf[@]" "$@" && ret=0 + _requested named-directories expl 'named directory' \ compadd "$suf[@]" "$@" - "${(@k)nameddirs}" |