VundleVim / Vundle.vim

Vundle, the plug-in manager for Vim
http://github.com/VundleVim/Vundle.Vim
MIT License
23.92k stars 2.58k forks source link

Cannot see plugins listed in .vimrc #754

Open DadongZ opened 8 years ago

DadongZ commented 8 years ago

I was trying to install some plugins using vunble. Here is my .vimrc

set nocompatible
filetype off

"set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'vim-airline/vim-airline'
Plugin 'raimondi/delimitmate' 
call vundle#end()         

filetype plugin on
filetype indent on
syntax on
syntax enable

But when I run "vim :PluginInstall", I can only see:

" Installing plugins to /home/abc/.vim/bundle
Plugin 'gmarik/Vundle.vim'
Helptags

Why I can't find the other three plugins to install? My platform is a Linux server: Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-88-generic x86_64)

kylessnell commented 8 years ago

Having the same issue on OSX, vim 7.3

karnh commented 8 years ago

I was having same issue but on windows. Change from issue #752 resolved it for me.

ryanoasis commented 7 years ago

@DadongZ and/or @kylessnell do you still have any issue? I know it has been a while...