The plugin should be installed so that it looks like this when inside ~/.vim
(Generated by tree
)
~/.vim
├── README
├── autoload
│ ├── mmtemplates
│ │ └── core.vim
│ ├── mmtoolbox
│ │ ├── make.vim
│ │ └── tools.vim
│ ├── perlsupportprofiling.vim
│ └── perlsupportregex.vim
├── doc
│ ├── ChangeLog
│ ├── perl-hot-keys.pdf
│ ├── perl-hot-keys.tex
│ ├── perlsupport.txt
│ ├── pmdesc3.text
│ ├── templatesupport.txt
│ ├── toolbox.txt
│ └── toolboxmake.txt
├── ftplugin
│ ├── make.vim
│ ├── perl.vim
│ ├── pod.vim
│ └── qf.vim
├── perl-support
│ ├── README.perlsupport
│ ├── codesnippets
│ │ ├── RegularExpressions
│ │ │ ├── numeric-range-0-127
│ │ │ └── numeric-range-0-255
│ │ ├── SmallProf-variables.pl
│ │ ├── dot.SmallProf
│ │ ├── free-software-comment
│ │ ├── module-interface.pl
│ │ ├── new.pl
│ │ ├── pod-template-application.pl
│ │ ├── pod-template-module.pl
│ │ ├── print-data-structure-with-Dumper.pl
│ │ ├── print-hash-sorted.pl
│ │ ├── print-hash.pl
│ │ ├── process-all-files-in-a-directory-recursively.pl
│ │ └── slurp-file.pl
│ ├── modules
│ │ └── perl-modules.list
│ ├── rc
│ │ ├── customization.ctags
│ │ ├── customization.gvimrc
│ │ ├── customization.perltidyrc
│ │ ├── customization.smallprof
│ │ ├── customization.vimrc
│ │ └── sample_template_file
│ ├── scripts
│ │ ├── csv2err.pl
│ │ ├── pmdesc3.pl
│ │ └── wrapper.sh
│ ├── templates
│ │ ├── Templates
│ │ ├── comments.templates
│ │ ├── filetests.templates
│ │ ├── idioms.templates
│ │ ├── pod.templates
│ │ ├── regex.templates
│ │ ├── snippets.templates
│ │ ├── specvar.templates
│ │ └── statements.templates
│ └── wordlists
│ └── perl.list
├── plugin
│ └── perl-support.vim
└── syntax
└── template.vim
Then tun
:helptags ~/.vim/doc
This will generate the tags file so you have use the help documents.
It is most likely easier if you look at a vim plugin manager such as Pathogen or Vundle.
Note: If you use pathogen you will need to run :Helptags
before you can use help.