Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试安装这个插件。我安装了 libfile-find-rule-perl,但是当我运行 vim 时,它给了我一个错误提示,“错误:找不到 perl。” Perl 已安装!如何修复此错误?
你的 vim 安装不是用 perl 安装的。
如果您查看您找到的插件的前几行。
if !has('perl') echo 'Error: perl not found' finish else
has('perl')检查 vim 是否具有 perl 功能。由于您看到 if 语句的输出,因此您没有 perl 功能。
has('perl')
要修复此错误,请在启用 perl 的情况下重新编译 vim。