Heim  >  Fragen und Antworten  >  Hauptteil

vim – :PluginInstall ist kein Editor-Befehl?

Verwenden Sie vundle, um Plug-ins unter Windows zu installieren. Beim Ausführen von „PluginInstall“ wird angezeigt, dass es sich nicht um einen Editorbefehl handelt

set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/vimfiles/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'

" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo

" All of your Plugins must be added before the following line

Plugin 'git://github.com/scrooloose/nerdtree.git'
Plugin 'git://github.com/scrooloose/nerdtree.git'

call vundle#end()            " required
filetype plugin indent on    " required
世界只因有你世界只因有你2712 Tage vor2819

Antworte allen(2)Ich werde antworten

  • 天蓬老师

    天蓬老师2017-05-16 16:41:08

    set rtp+=~/vimfiles/bundle/Vundle.vim
    估计是这个目录不对。放到.vim(他文档里说的)下试试。

    Antwort
    0
  • 世界只因有你

    世界只因有你2017-05-16 16:41:08

    我也是一样的问题,我把路径都设成绝对路径就好了

    set rtp+=D://Programs/Vim/vimfiles/bundle/Vundle.vim/
    call vundle#begin('D://Programs/Vim/vimfiles/')

    Antwort
    0
  • StornierenAntwort