diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:10:17 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:10:17 +0000 |
commit | 2f1832c5e140e72e5b5ae7431062489fd48796ef (patch) | |
tree | a713d273055d8d578c3102385eccb08c6a12e256 | |
parent | f0506139f81f551089273db191d087c4112b62a5 (diff) | |
download | zsh-2f1832c5e140e72e5b5ae7431062489fd48796ef.tar.gz zsh-2f1832c5e140e72e5b5ae7431062489fd48796ef.tar.xz zsh-2f1832c5e140e72e5b5ae7431062489fd48796ef.zip |
moved to Completion/Base/Utility/_contexts
-rw-r--r-- | Completion/Core/_compalso | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Completion/Core/_compalso b/Completion/Core/_compalso deleted file mode 100644 index 5307bf30c..000000000 --- a/Completion/Core/_compalso +++ /dev/null @@ -1,17 +0,0 @@ -#autoload - -# This searches $* in the array for normal completions and calls the result. -# It is used to include completions for another command or special context -# into the list generated by the calling function. -# For example the function for `-subscript-' could call this as in -# `_compalso -math-' to get the completions that would be generated for a -# mathematical context. - -local i tmp ret=1 service - -for i; do - tmp="$_comps[$i]" - [[ -z "$tmp" ]] || service="${_services[$i]:-$i}" && "$tmp" && ret=0 -done - -return ret |