GVimはWindows 10でプラグインを見つけることができません


0

Windows 10では、GVimをUsers \ myuser \ Vimにインストールしています。プラグインの処理にVundleを使用していますが、うまく機能しています。しかし、vimは他のプラグインファイルを見つけられません。それらは(Vundleを使用して)Users \ myuser \ Vim \ vimfiles \ bundleにインストールされます。それらを見つけるためにvimを取得するにはどうすればよいですか?

プラグインディレクトリを_vimrcのrtpに追加しようとしましたが、運はありません。これが関連しているかどうかはわかりませんが、vimを起動すると、Vimがインストールされているディレクトリではなく、常にC:\ WINDOWS \ System32としてpwdで起動します。

これが私の_vimrcの最初の部分です。

set nocompatible 
"source $VIMRUNTIME/vimrc_example.vim 
source $VIMRUNTIME/mswin.vim 

au! BufWritePost $MYVIMRC nested source $MYVIMRC 

filetype off                  " required 

set rtp+=%HOMEPATH%\Vim\vimfiles\bundle\Vundle.vim 
set rtp+=%HOMEPATH%\Vim\vimfiles 
call vundle#begin() 
let g:vundle#bundle_dir='vimfiles\bundle' 

Plugin 'VundleVim/Vundle.vim' 

" basic editing functions------------------------------------ 
Bundle 'tpope/vim-abolish' 
Bundle 'Lokaltog/vim-easymotion' 
Bundle 'camelcasemotion' 
Bundle 'rename' 
Bundle 'tpope/vim-repeat' 
Bundle 'scrooloose/nerdcommenter' 
Bundle 'surround.vim' 
Bundle 'gundo' 
Bundle 'YankRing.vim' 
Bundle 'vim-multiple-cursors' 
Bundle 'guifontpp.vim' 
" gui--------------------------------------------------------- 
Bundle 'vim-airline/vim-airline' 
Bundle 'vim-airline/vim-airline-themes' 
Bundle 'qpkorr/vim-bufkill' 
Bundle 'drmikehenry/vim-fontsize' 
" project management------------------------------------------ 
Bundle 'xolox/vim-session' 
Bundle 'TaskList.vim' 
" code completion and symbols--------------------------------- 
Bundle 'snipmate' 
Bundle 'supertab' 
Bundle 'scrooloose/syntastic' 
Bundle 'majutsushi/tagbar' 
Bundle 'Valloric/YouCompleteMe' 
"Bundle 'Shougo/neocomplete.vim' 
Bundle 'Shougo/context_filetype.vim' 
" utilities--------------------------------------------------- 
Bundle 'tlib' 
Bundle 'AnsiEsc.vim' 
Bundle 'vim-misc' 
Bundle 'WebAPI.vim' 
" search and navigation--------------------------------------- 
Bundle 'Shougo/unite.vim' 
Bundle 'ack.vim' 
Bundle 'kien/ctrlp.vim' 
Bundle 'scrooloose/nerdtree' 
Bundle 'voogle' 
" filetypes and code hilighting--------------------------------- 
Bundle 'SyntaxRange' 
" markdown-------------------------------------------------------- 
Bundle 'vim-pandoc/vim-pandoc' 
Bundle 'vim-pandoc/vim-pandoc-after' 
Bundle 'vim-pandoc/vim-markdownfootnotes' 
Bundle 'vim-pandoc/vim-pandoc-syntax' 
" latex---------------------------------------------------------- 
Bundle 'jcf/vim-latex' 
" python--------------------------------------------------------- 
Bundle 'pychimp' 
Bundle 'klen/python-mode' 
Bundle 'monotasker/vim_web2py_syntax' 
" javascript------------------------------------------------------ 
Bundle 'itspriddle/vim-jquery' 
" html/xml-------------------------------------------------------- 
Bundle 'closetag.vim' 
Bundle 'XML-Folding' 
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'} 
Bundle 'bonsaiben/bootstrap-snippets' 
" css--------------------------------------------------------------- 
Bundle 'vim-less' 
Bundle 'vim-lesscss' 
Bundle 'less-syntax' 
Bundle 'css_color.vim' 
" svg--------------------------------------------------------------- 
Bundle 'svg.vim' 
" colorschemes --------------------------------------------------- 
Bundle 'chriskempson/base16-vim' 
"Bundle 'solarized' 
Bundle 'flazz/vim-colorschemes' 
Bundle 'vividchalk.vim' 
Bundle 'Lokaltog/vim-distinguished' 
Bundle 'altercation/vim-colors-solarized' 
" color utilities --------------------------------------------------- 
Bundle 'colorv' 
Bundle 'galaxy.vim' 
Bundle 'guicolorscheme.vim' 
Bundle 'KabbAmine/vCoolor.vim' 
" version control --------------------------------------------------- 
Bundle 'tpope/vim-git' 
Bundle 'tpope/vim-fugitive' 
" snippets ---------------------------------------------------------- 
Bundle 'monotasker/web2py-snippets' 

" All of your Plugins must be added before the following line 
call vundle#end()            " required 
syntax on 
filetype plugin indent on    " required 
set nospell 

" UTILITY MAPPINGS 
" ========================================================================== 
let maplocalleader = '\' 
nnoremap ; : 
vnoremap ; :

それらは(Vundleを使用して)インストールされUsers\myuser\vimfiles\bundle%HOMEPATH%\Vim\vimfiles\bundle\Vundle.vim異なっています... 2番目のものはその\Vim\中にあります...
DavidPostill

@DavidPostillさん、すみません、それは私のタイプミスでした。私は今の質問でそれを修正しました。Vundleは確かUsers \ユーザーmyuserの\ Vimの\ vimfiles \バンドルにそれらをインストールしている
monotasker
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.