I find the vim-perl
plugin here, but I can't enable it with:
filetype plugin indent on
(I changed the order of "plugin" and "indent" after seeing that link)
I can't disable plugin support, so I tried an alternative way,
if &filetype == 'perl'
filetype plugin on
else
filetype plugin indent on
endif
But that doesn't work either! When I do filetype
command in VIM, I see plugin, autodetection, indent
are all ON
Any thoughts?