In addition, a message often pops up when opening gvim. I wonder if it has anything to do with this?
PHPz2017-05-16 16:36:56
Vundle.vim
Temporary file related errors do occasionally occur on Windows
I haven’t used Vundle
了,因为Vundle
不支持多线程
如果是刚接触Vim的包管理器,建议用 vim-plug
如果是vim 8.0 可以通过原生特色+job
实现多线程
vim 7.4 也可以通过 +python/+python3/+ruby
and other methods to implement multi-threading for a long time
According to your habit, vim configuration is placed in the program directory. I will introduce you to a simple configuration method
Run in command prompt:
cd /d E:\程序\vim
git clone https://github.com/junegunn/vim-plug.git
mkdir /p vimfiles\autoload
move vim-plug\plug.vim vimfiles\autoload\
del /s /q vim-plug
The following is the vimrc configuration
" 设置线程数量
let g:plug_threads = 8
call plug#begin(expand('$VIM/vimfiles/bundle'))
Plug 'mattn/emmet-vim'
call plug#end()
filetype indent plugin on
syntax enable
Here are the plugin commands:
Install plugin
:PlugInstall
更新插件:PlugUpdate
更新plug本身:PlugUpgrade
查看插件状态:PlugStatus
The lower right are the three bookmarks I specially added