我正在尝试安装perlomni.vim,这样我就可以在gvim窗口中使用自动函数查找。
我已经尝试使用pathhogen和vundle来配置这个捆绑包。
我想我遇到的问题是如何安装perlomni.vim
我有一个目录设置为~/.vim/bundle/vundle和~/.vim/bundle
致病途径
cd ~/.vim/bundle
git clone https://github.com/c9s/perlomni.vim.git
cd perlomni.v
make install然后,因为我在tcsh shell中运行,所以将path变量设置为设置path=($path\:$home/.vim/bin)
如果我试图在.vim/ directory.....when包中安装它,我运行make install命令,它会尝试将它安装到.vim /目录中,并将它使用的所有.vim文件放到.vim/ftplugin.vim/plugin.vim/bin中。directory.......So可能我的.vimrc文件中没有其他正确的设置来包含以这种方式安装的包。
我已经安装了VUNDLE,这是我的.vimrc的一个片段
set nocompatible
filetype off
call pathogen#incubate()
execute pathogen#infect()
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
"Required Bundel Statement
Bundle 'gmarik/vundle'
"User Installed Bundles
Bundle 'neocomplcache/neocomplcache.vim'
Bundle 'perlomni/perlomni.vim'
" Non Git Hub Bundles
"Bundle 'git://git.wincent.com/command-t.git'
" Bundles on Local Machine
Bundle '/usr/share/vim/vim70/ftplugin/perl.vim'
filetype plugin indent on
filetype on
syntax on发布于 2013-07-23 02:32:57
使用捆绑包目录<C-X><C-O>中的vimrc、pathogen和perlomni.vim执行全补全。
set nocompatible
filetype plugin indent on
syntax on
call pathogen#infect()在没有看到你的实际vimrc的情况下,我不知道问题出在哪里,但这对我来说很有效。
https://stackoverflow.com/questions/17793115
复制相似问题