diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:00:06 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-04-02 12:00:06 +0000 |
commit | 3ba95afe9cc76ae99ca3493b139209c67a31a304 (patch) | |
tree | 48133b6fb700c33107e2f9aa53ff7b3b65e66eb3 /Completion/User | |
parent | c352138cfa5e482110578331b3b53e9a46b72796 (diff) | |
download | zsh-3ba95afe9cc76ae99ca3493b139209c67a31a304.tar.gz zsh-3ba95afe9cc76ae99ca3493b139209c67a31a304.tar.xz zsh-3ba95afe9cc76ae99ca3493b139209c67a31a304.zip |
moved to Completion/Unix/Command/_perldoc
Diffstat (limited to 'Completion/User')
-rw-r--r-- | Completion/User/_perldoc | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Completion/User/_perldoc b/Completion/User/_perldoc deleted file mode 100644 index cd5383a45..000000000 --- a/Completion/User/_perldoc +++ /dev/null @@ -1,23 +0,0 @@ -#compdef perldoc -# -# -# _perldoc - zsh completion function for perldoc -# -# Adam Spiers <adam@spiers.net> -# -# Behaviour should be roughly equivalent to: -# compctl -k perl_modules -k perl_basepods -f -# -x 'c[-1,-f]' -k perl_funcs -- -# + -k man_pages -# perldoc - -if [[ $CURRENT -eq 3 && $words[2] == '-f' ]]; then - _perl_builtin_funcs -elif [[ $CURRENT -eq 3 && $words[2] == '-q' ]]; then - zle -R "I can't read your mind!" -else - _perl_modules - _perl_basepods - _path_files -/ -g '*.(pod|pm)' -fi - |