- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我按照此博客 http://web.archive.org/web/20120731003342/http://www.charlietanksley.net/philtex/sane-vim-plugin-management 中给出的说明安装了 Vundle
但是当尝试运行 :BundleInstall
时,我收到 VIM 错误
E492: Not an editor command: BundleInstall
这是我的树 ~/.vim
/home/max/.vim
└── bundle
└── vundle
├── autoload
│ ├── vundle
│ │ ├── config.vim
│ │ ├── installer.vim
│ │ └── scripts.vim
│ └── vundle.vim
├── doc
│ └── vundle.txt
├── LICENSE-MIT.txt
├── README.md
└── test
├── files
│ └── test.erl
├── minirc.vim
└── vimrc
此外,在启动 VIM 时,我会收到大量 E492
,如下所示
Error detected while processing /home/max/.vimrc:
line 6:
E117: Unknown function: vundle#rc
line 10:
E492: Not an editor command: Bundle 'gmarik/vundle'
line 15:
E492: Not an editor command: Bundle 'tpope/vim-fugitive'
line 16:
E492: Not an editor command: Bundle 'Lokaltog/vim-easymotion'
line 17:
E492: Not an editor command: Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
line 19:
E492: Not an editor command: Bundle 'surround.vim'
line 20:
E492: Not an editor command: Bundle 'snipMate'
line 21:
E492: Not an editor command: Bundle 'tComment'
line 22:
E492: Not an editor command: Bundle 'mru.vim'
line 23:
E492: Not an editor command: Bundle 'The NERD tree'
line 24:
E492: Not an editor command: Bundle 'matchit.zip'
line 25:
E492: Not an editor command: Bundle 'Vimball'
line 26:
E492: Not an editor command: Bundle 'ScrollColors'
line 27:
E492: Not an editor command: Bundle 'L9'
line 28:
E492: Not an editor command: Bundle 'FuzzyFinder'
line 30:
E492: Not an editor command: Bundle 'git://git.wincent.com/command-t.git'
这是我的 .vimrc
set nocompatible
filetype off " required!
set rtp+=~/.vim/vundle.git/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
" My Bundles here:
"
" original repos on github
Bundle 'tpope/vim-fugitive'
Bundle 'Lokaltog/vim-easymotion'
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
" vim-scripts repos
Bundle 'surround.vim'
Bundle 'snipMate'
Bundle 'tComment'
Bundle 'mru.vim'
Bundle 'The NERD tree'
Bundle 'matchit.zip'
Bundle 'Vimball'
Bundle 'ScrollColors'
Bundle 'L9'
Bundle 'FuzzyFinder'
" non github repos
Bundle 'git://git.wincent.com/command-t.git'
" Shortcuts
noremap <C-Up> <C-W>+
noremap <C-Down> <C-W>-
noremap <C-Left> <C-W>>
noremap <C-Right> <C-W><
nnoremap ,v <C-w>v
nnoremap ,h <C-w>s
nnoremap ,, <C-w>w
map <F11> <Esc>:call libcallnr("gvimfullscreen.dll", "ToggleFullScreen", 0)<CR>
nmap gf <S-g>
nmap f :FufFile <CR>
vmap c gc
nmap c gcc
nmap tt :tabnew <CR>
nmap tc :tabclose <CR>
nmap ml :MRU <CR>
nmap s :w <CR>
nmap q :q! <CR>
syntax on
set mouse=a "enables mouse
" Selecting different color schemes
map <silent> ,3 :NEXTCOLOR<cr>
map <silent> ,2 :PREVCOLOR<cr>
map <silent> ,1 :SCROLL<cr>
" Directory Set up
set backup "backs up files
set backupdir=$HOME/.vimbackup
set directory=$HOME/.vimswap
set viewdir=$HOME/.vimviews
"
" silent execute '!mkdir -p $HOME/.vimbackup'
" silent execute '!mkdir -p $HOME/.vimswap'
" silent execute '!mkdir -p $HOME/.vimviews'
" au BufWinLeave * silent! mkview "makes vim save view state
" au BufWinEnter * silent! loadview "makes vim load view state
" Appearance
set columns=60
set guifont=Monaco:h11
map <F11> <Esc>:call libcallnr("gvimfullscreen.dll", "ToggleFullScreen", 0)<CR>
map <silent> ,m :e ftp://mitemiu.com/public_html/wp-content/themes/Mitemiu/<CR>
" map <silent> ,c :e ftp://www.caeious.com/public_html/wp-content/themes/caeious/<CR>
map <silent> ,c :e ftp://www.caeious.com/public_html/<CR>
color jellybeans
set tabpagemax=10 "show only 10 tabs
set background=dark
set number
set scrolloff=3 "minimum lines to keep above/below cursor
set foldenable "auto fold code
" Behaviour
" set nowrap "wrap long lines
set linebreak
:filetype plugin indent on " lets filetype plugins be used
" if bufwinnr(1)
" map <kPlus><C-W>+
" map <kMinus><C-W>-
" map <kDivide><c-w><
" map <kMultiply><c-w>>
" endif
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set smarttab
set expandtab
set softtabstop=4
set spell
set showmatch "shows matching parens, brackets
set winminheight=0
set go-=T "eliminates tool bar in gVim
set go-=m "eliminates menu bar in gVim
set go-=r "eliminates right scroll bar
set lines=50 "50 lines of text instead of 24
set backspace=2 "makes backspace work like normally it does
:fixdel
set vb t_vb= "prevents vim from beeping when command is bad. instead it flashes screen.
set ruler "shows statusline, displays curor position
set incsearch "vim searches text as you enter it
" set hlsearch "hilights searched items
set ignorecase "case insensitive search
set smartcase "case sensetive when using captials
set wildmenu "shows list instead of completing
set wildmode=list:longest,full "command <TAB> completeiton, lists matches,
set virtualedit=all "lets cursor freely roam anywhere like in command mode
显然Vundle没有正确安装。 如何让 Vundle 工作?
最佳答案
Vundle 安装在
~/.vim/bundle/vundle
所以这一行
set rtp+=~/.vim/vundle.git/
应该是
set rtp+=~/.vim/bundle/vundle
<小时/>
~/.vim/vundle.git/
是包含使 Git 存储库成为 Git 存储库的所有内容的文件夹的路径。您不能真正指望 Vim 在那里找到可用的脚本。
关于plugins - Vundle for VIM 无法在 Ubuntu 上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12179655/
我是 Vim 的初学者,我正在尝试安装 Vundle 进行插件管理。但是,当我打开 gVim 时,我总是遇到同样的错误: Error detected while processing C:\User
我正在运行 Arch,我正在尝试使用 Vundle 安装插件。 这是我的 ~/.vimrc filetype off set nocompatible set rtp+=~/.vim/bundle/V
似乎并非所有插件都安装正确。我有以下日志文件: [2015-09-30 14:58:32] Plugin user/L9
我试图通过 Vundle 安装 gruvbox colourscheme,但是当我运行 vim 时。出现了这样的错误: Error detected while processing C:\Users
嗨,我一直在尝试在 ubuntu 上配置 vim。 所有的软件包似乎都安装得很好。但是,如果通过 vundle 安装颜色方案,然后使用颜色方案名称,则似乎找不到该方案。 我曾尝试安装 railscas
在 vundle 的主页上,它记录了它需要在 .vimrc 中关闭文件类型: filetype off " required! set rtp+=~/.vim/
您好,我正在尝试安装一些插件并使用 vundle 作为我的插件管理器。 当我打开 gvim 时,这是我得到的错误 Error detected while processing /home/user/
您好,我正在尝试安装一些插件并使用 vundle 作为我的插件管理器。 当我打开 gvim 时,这是我得到的错误 Error detected while processing /home/user/
我安装了旧的 vundle。我没有使用 git pull 来更新 vundle,而是从 ~/.vim 中删除了旧的 vundle,并按照 Github page of vundle 中的快速启动部分安
我已经安装了 vundle (git cloned) vim vundle 包管理器。似乎我什至无法安装单个插件。我想卸载它并重新开始使用 vim。有什么建议? 最佳答案 从你的 ~/.vimrc 中
我正在尝试使用 base16 之一Vim 中远程计算机上的配色方案,但每当我尝试加载任何配色方案时,它似乎都没有改变。 Vim 的默认配色方案工作正常。 关于我的设置的信息: 使用 iTerm2,构建
在开发插件同时使用 Vundle 时,我应该将自己的代码放在哪里?我尝试使用本地存储库,但我必须提交才能让 vim 看到我所做的更改......这样做的正确方法是什么? 最佳答案 一旦 Vundle
Mac OSX 10.7、Vim 7.3 我已经为 Vim 安装了 Vundle,并将这些行包含在我的 ~/.vimrc 中。 : Bundle "gmarik/vundle" Bundle "pan
我无法安装 Vundle 我已按照 GitHub 上的说明进行操作; git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/
使用 vundle 成功安装了 ultisnips,但它无法加载,所有代码片段都无法正常工作。 这是我的 vimrc https://bitbucket.org/panditaomesh/vimfil
我想要一种简单易用的方式来管理 vim 插件。我发现NeoBundle和 Vundle 。它们之间的主要区别是什么?我知道 NeoBundle 是 Vundle 的一个分支,但是它有什么不同呢? 你用
我试图安装 vim 插件,但它总是不起作用。这是我的 .vimrc: set nocompatible filetype off " set up Vundle " let Vundle manage
我试图安装 vim 插件,但它总是不起作用。这是我的 .vimrc: set nocompatible filetype off " set up Vundle " let Vundle manage
我开始使用 ftplugin。这基本上是有效的,除了 bundle 。如果我用一个没有特定文件类型的文件启动 gvim,我可以使用我所有的插件(:VundleInstall 列出了 .vimrc 中指
平台 - Mac OS- 10.8.5 这是我的 .vimrc 文件,后面是我得到的错误。*我的 git 存储库设置正确 -----* git config --global core.editor
我是一名优秀的程序员,十分优秀!