diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:03:42 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 11:03:42 +0000 |
commit | fbb6ebd554c49517f49e6be8ca09dbd3c67c3f40 (patch) | |
tree | c44edd9b35922a81cc94bfb80484fff843c3aa83 /Completion | |
parent | b8fd517172b74e625fb6f9d9f0376e776bb0b429 (diff) | |
download | zsh-fbb6ebd554c49517f49e6be8ca09dbd3c67c3f40.tar.gz zsh-fbb6ebd554c49517f49e6be8ca09dbd3c67c3f40.tar.xz zsh-fbb6ebd554c49517f49e6be8ca09dbd3c67c3f40.zip |
moved to Completion/Base/Core/_next_label
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Core/_next_label | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/Completion/Core/_next_label b/Completion/Core/_next_label deleted file mode 100644 index 48845229a..000000000 --- a/Completion/Core/_next_label +++ /dev/null @@ -1,25 +0,0 @@ -#autoload - -local __gopt=-J __descr __spec - -if [[ "$1" = -([12]|)[VJ] ]]; then - __gopt="$1" - shift -fi - -if comptags -A "$1" curtag __spec; then - _comp_tags="$_comp_tags $__spec " - if [[ "$curtag" = *[^\\]:* ]]; then - zformat -f __descr "${curtag#*:}" "d:$3" - _description "$__gopt" "${curtag%:*}" "$2" "$__descr" - curtag="${curtag%:*}" - set -A $2 "${(P@)2}" "${(@)argv[4,-1]}" - else - _description "$__gopt" "$curtag" "$2" "$3" - set -A $2 "${(@)argv[4,-1]}" "${(P@)2}" - fi - - return 0 -fi - -return 1 |