From 3cf289421ebbbb88e1486e57f0d7afc188044fd2 Mon Sep 17 00:00:00 2001 From: Sven Wischnowsky Date: Mon, 2 Apr 2001 11:40:07 +0000 Subject: moved to Completion/Unix/Type/_perl_builtin_funcs --- Completion/User/_perl_builtin_funcs | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Completion/User/_perl_builtin_funcs (limited to 'Completion') diff --git a/Completion/User/_perl_builtin_funcs b/Completion/User/_perl_builtin_funcs deleted file mode 100644 index 65eebf9b1..000000000 --- a/Completion/User/_perl_builtin_funcs +++ /dev/null @@ -1,31 +0,0 @@ -#autoload -# -# _perl_builtin_funcs - zsh completion function -# -# Adam Spiers -# -# Calculate all built-in Perl functions. The result is cached -# for future use. -# - -if [[ ${+_perl_builtin_funcs} -eq 0 ]]; then - typeset -agU _perl_builtin_funcs - local perlfunc - - if [[ -n "${perlfunc:=$(man -w perlfunc 2>/dev/null; print -l ${^manpath}/man1/perlfunc.1(N) {/usr/man,/usr/share/man,/usr/local/man}/man1/perlfunc.1(N))}" ]]; then - _perl_builtin_funcs=( `perl -lne ' - $in_funcs++, next if /Alphabetical/; \ - next unless $in_funcs; \ - if (/^\.Ip "(\w+)/) { \ - print $1 unless $func{$1}; $func{$1}++ \ - }' $=perlfunc` - ) - else - echo "Couldn't find perlfunc man page; giving up." - return 1 - fi -fi - -local expl - -_wanted functions expl 'Perl built-in functions' compadd -a _perl_builtin_funcs -- cgit 1.4.1